@aplus-frontend/ui 0.5.37 → 0.6.0-beta.0
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/index.mjs +74 -72
- package/es/src/ap-field/select/index.vue.d.ts +2 -2
- package/es/src/ap-field/tree-select/index.vue.d.ts +3 -3
- package/es/src/ap-form/drawer-form/index.vue.d.ts +10 -10
- package/es/src/ap-form/interface.d.ts +31 -1
- package/es/src/ap-form/item/index.vue.d.ts +22 -22
- package/es/src/ap-form/items/checkbox/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/date/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/date-range/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/number/index.vue.d.ts +13 -13
- package/es/src/ap-form/items/radio/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/select/index.vue.d.ts +31 -31
- package/es/src/ap-form/items/switch/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/text/index.vue.d.ts +15 -15
- package/es/src/ap-form/items/text/password.vue.d.ts +15 -15
- package/es/src/ap-form/items/text-area/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/tree-select/index.vue.d.ts +35 -35
- package/es/src/ap-form/modal-form/index.vue.d.ts +10 -10
- package/es/src/ap-form/render/item.vue.d.ts +2 -2
- package/es/src/ap-form/search-form/components/popover-filter.vue.d.ts +4 -0
- package/es/src/ap-form/search-form/components/popover-filter.vue.mjs +4 -0
- package/es/src/ap-form/search-form/components/popover-filter.vue2.mjs +102 -0
- package/es/src/ap-form/search-form/components/popover-sorter/index.vue.d.ts +4 -0
- package/es/src/ap-form/search-form/components/popover-sorter/index.vue.mjs +4 -0
- package/es/src/ap-form/search-form/components/popover-sorter/index.vue2.mjs +128 -0
- package/es/src/ap-form/search-form/components/popover-sorter/sortable-item.vue.d.ts +6 -0
- package/es/src/ap-form/search-form/components/popover-sorter/sortable-item.vue.mjs +4 -0
- package/es/src/ap-form/search-form/components/popover-sorter/sortable-item.vue2.mjs +39 -0
- package/es/src/ap-form/search-form/hooks/use-count-per-row.d.ts +3 -0
- package/es/src/ap-form/search-form/hooks/use-count-per-row.mjs +17 -0
- package/es/src/ap-form/search-form/index.vue.d.ts +14 -16
- package/es/src/ap-form/search-form/index.vue.mjs +127 -127
- package/es/src/ap-grid/index.vue.mjs +97 -93
- package/es/src/ap-info-layout/ApInfoLayout.vue.mjs +21 -16
- package/es/src/ap-table/ap-table.vue2.mjs +108 -104
- package/es/src/ap-table/constants.d.ts +161 -161
- package/es/src/ap-table/context.d.ts +5 -0
- package/es/src/ap-table/context.mjs +13 -5
- package/es/src/ap-table/utils.d.ts +147 -147
- package/es/src/ap-upload/apUpload.vue.d.ts +8 -8
- package/es/src/business/ap-batch-action-group/ApBatchActionGroup.vue.d.ts +14 -1
- package/es/src/business/ap-batch-action-group/ApBatchActionGroup.vue2.mjs +65 -51
- package/es/src/business/ap-batch-action-group/index.d.ts +3 -1
- package/es/src/business/ap-size-input/ApSizeInput.d.ts +1 -1
- package/es/src/business/ap-size-input/index.d.ts +3 -3
- package/es/src/business/ap-table-modal/index.d.ts +15 -15
- package/es/src/business/ap-table-modal/table-modal.vue.d.ts +5 -5
- package/es/src/business/ap-view/ap-view.vue.d.ts +6 -0
- package/es/src/business/ap-view/ap-view.vue.mjs +4 -0
- package/es/src/business/ap-view/ap-view.vue2.mjs +171 -0
- package/es/src/business/ap-view/components/main-button-content.vue.d.ts +831 -0
- package/es/src/business/ap-view/components/main-button-content.vue.mjs +4 -0
- package/es/src/business/ap-view/components/main-button-content.vue2.mjs +175 -0
- package/es/src/business/ap-view/components/menu-list-content.vue.d.ts +832 -0
- package/es/src/business/ap-view/components/menu-list-content.vue.mjs +4 -0
- package/es/src/business/ap-view/components/menu-list-content.vue2.mjs +156 -0
- package/es/src/business/ap-view/hooks/use-view-provide.d.ts +14 -0
- package/es/src/business/ap-view/hooks/use-view-provide.mjs +8 -0
- package/es/src/business/ap-view/icons/line-delete.vue.d.ts +3 -0
- package/es/src/business/ap-view/icons/line-delete.vue.mjs +29 -0
- package/es/src/business/ap-view/icons/line-down.vue.d.ts +3 -0
- package/es/src/business/ap-view/icons/line-down.vue.mjs +29 -0
- package/es/src/business/ap-view/icons/line-eye.vue.d.ts +3 -0
- package/es/src/business/ap-view/icons/line-eye.vue.mjs +29 -0
- package/es/src/business/ap-view/index.d.ts +27 -0
- package/es/src/business/ap-view/index.mjs +8 -0
- package/es/src/business/ap-view/interface.d.ts +54 -0
- package/es/src/business/ap-view/interface.mjs +1 -0
- package/es/src/business/ap-view/style/css.d.ts +0 -0
- package/es/src/business/ap-view/style/css.js +1 -0
- package/es/src/business/ap-view/style/index.d.ts +0 -0
- package/es/src/business/ap-view/style/index.js +1 -0
- package/es/src/business/ap-view/utils/enum.d.ts +1 -0
- package/es/src/business/ap-view/utils/enum.mjs +4 -0
- package/es/src/business/ap-view/utils/uuid.d.ts +5 -0
- package/es/src/business/ap-view/utils/uuid.mjs +22 -0
- package/es/src/business/batch-input-group/form-item.vue.d.ts +3 -3
- package/es/src/business/batch-input-group/index.vue.d.ts +6 -6
- package/es/src/business/index.d.ts +1 -0
- package/es/src/business/index.mjs +25 -23
- package/es/src/config-provider/config-provider-props.d.ts +5 -0
- package/es/src/config-provider/config-provider-props.mjs +4 -0
- package/es/src/config-provider/config-provider.d.ts +25 -1
- package/es/src/config-provider/config-provider.mjs +21 -20
- package/es/src/config-provider/css-var.d.ts +14 -0
- package/es/src/config-provider/css-var.mjs +40 -12
- package/es/src/config-provider/hooks/use-global-config.d.ts +5 -0
- package/es/src/config-provider/index.d.ts +89 -3
- package/es/src/full-screen/interface.d.ts +1 -1
- package/es/src/index.mjs +61 -59
- package/es/src/locale/lang/en.mjs +22 -1
- package/es/src/locale/lang/zh-cn.mjs +22 -1
- package/es/src/path-map.mjs +2 -1
- package/es/src/utils/config-provider-preset.d.ts +4 -4
- package/es/src/work-order-modal/work-order-modal.vue.d.ts +6 -6
- package/lib/index.js +1 -1
- package/lib/src/ap-field/select/index.vue.d.ts +2 -2
- package/lib/src/ap-field/tree-select/index.vue.d.ts +3 -3
- package/lib/src/ap-form/drawer-form/index.vue.d.ts +10 -10
- package/lib/src/ap-form/interface.d.ts +31 -1
- package/lib/src/ap-form/item/index.vue.d.ts +22 -22
- package/lib/src/ap-form/items/checkbox/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/date/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/date-range/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/number/index.vue.d.ts +13 -13
- package/lib/src/ap-form/items/radio/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/select/index.vue.d.ts +31 -31
- package/lib/src/ap-form/items/switch/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/text/index.vue.d.ts +15 -15
- package/lib/src/ap-form/items/text/password.vue.d.ts +15 -15
- package/lib/src/ap-form/items/text-area/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/tree-select/index.vue.d.ts +35 -35
- package/lib/src/ap-form/modal-form/index.vue.d.ts +10 -10
- package/lib/src/ap-form/render/item.vue.d.ts +2 -2
- package/lib/src/ap-form/search-form/components/popover-filter.vue.d.ts +4 -0
- package/lib/src/ap-form/search-form/components/popover-filter.vue.js +1 -0
- package/lib/src/ap-form/search-form/components/popover-filter.vue2.js +1 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/index.vue.d.ts +4 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/index.vue.js +1 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/index.vue2.js +1 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/sortable-item.vue.d.ts +6 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/sortable-item.vue.js +1 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/sortable-item.vue2.js +1 -0
- package/lib/src/ap-form/search-form/hooks/use-count-per-row.d.ts +3 -0
- package/lib/src/ap-form/search-form/hooks/use-count-per-row.js +1 -0
- package/lib/src/ap-form/search-form/index.vue.d.ts +14 -16
- package/lib/src/ap-form/search-form/index.vue.js +1 -1
- package/lib/src/ap-grid/index.vue.js +1 -1
- package/lib/src/ap-info-layout/ApInfoLayout.vue.js +1 -1
- package/lib/src/ap-table/ap-table.vue2.js +1 -1
- package/lib/src/ap-table/constants.d.ts +161 -161
- package/lib/src/ap-table/context.d.ts +5 -0
- package/lib/src/ap-table/context.js +1 -1
- package/lib/src/ap-table/utils.d.ts +147 -147
- package/lib/src/ap-upload/apUpload.vue.d.ts +8 -8
- package/lib/src/business/ap-batch-action-group/ApBatchActionGroup.vue.d.ts +14 -1
- package/lib/src/business/ap-batch-action-group/ApBatchActionGroup.vue2.js +1 -1
- package/lib/src/business/ap-batch-action-group/index.d.ts +3 -1
- package/lib/src/business/ap-size-input/ApSizeInput.d.ts +1 -1
- package/lib/src/business/ap-size-input/index.d.ts +3 -3
- package/lib/src/business/ap-table-modal/index.d.ts +15 -15
- package/lib/src/business/ap-table-modal/table-modal.vue.d.ts +5 -5
- package/lib/src/business/ap-view/ap-view.vue.d.ts +6 -0
- package/lib/src/business/ap-view/ap-view.vue.js +1 -0
- package/lib/src/business/ap-view/ap-view.vue2.js +1 -0
- package/lib/src/business/ap-view/components/main-button-content.vue.d.ts +831 -0
- package/lib/src/business/ap-view/components/main-button-content.vue.js +1 -0
- package/lib/src/business/ap-view/components/main-button-content.vue2.js +1 -0
- package/lib/src/business/ap-view/components/menu-list-content.vue.d.ts +832 -0
- package/lib/src/business/ap-view/components/menu-list-content.vue.js +1 -0
- package/lib/src/business/ap-view/components/menu-list-content.vue2.js +1 -0
- package/lib/src/business/ap-view/hooks/use-view-provide.d.ts +14 -0
- package/lib/src/business/ap-view/hooks/use-view-provide.js +1 -0
- package/lib/src/business/ap-view/icons/line-delete.vue.d.ts +3 -0
- package/lib/src/business/ap-view/icons/line-delete.vue.js +1 -0
- package/lib/src/business/ap-view/icons/line-down.vue.d.ts +3 -0
- package/lib/src/business/ap-view/icons/line-down.vue.js +1 -0
- package/lib/src/business/ap-view/icons/line-eye.vue.d.ts +3 -0
- package/lib/src/business/ap-view/icons/line-eye.vue.js +1 -0
- package/lib/src/business/ap-view/index.d.ts +27 -0
- package/lib/src/business/ap-view/index.js +1 -0
- package/lib/src/business/ap-view/interface.d.ts +54 -0
- package/lib/src/business/ap-view/interface.js +1 -0
- package/lib/src/business/ap-view/style/css.cjs +1 -0
- package/lib/src/business/ap-view/style/css.d.ts +0 -0
- package/lib/src/business/ap-view/style/index.cjs +1 -0
- package/lib/src/business/ap-view/style/index.d.ts +0 -0
- package/lib/src/business/ap-view/utils/enum.d.ts +1 -0
- package/lib/src/business/ap-view/utils/enum.js +1 -0
- package/lib/src/business/ap-view/utils/uuid.d.ts +5 -0
- package/lib/src/business/ap-view/utils/uuid.js +1 -0
- package/lib/src/business/batch-input-group/form-item.vue.d.ts +3 -3
- package/lib/src/business/batch-input-group/index.vue.d.ts +6 -6
- package/lib/src/business/index.d.ts +1 -0
- package/lib/src/business/index.js +1 -1
- package/lib/src/config-provider/config-provider-props.d.ts +5 -0
- package/lib/src/config-provider/config-provider-props.js +1 -1
- package/lib/src/config-provider/config-provider.d.ts +25 -1
- package/lib/src/config-provider/config-provider.js +1 -1
- package/lib/src/config-provider/css-var.d.ts +14 -0
- package/lib/src/config-provider/css-var.js +1 -1
- package/lib/src/config-provider/hooks/use-global-config.d.ts +5 -0
- package/lib/src/config-provider/index.d.ts +89 -3
- package/lib/src/full-screen/interface.d.ts +1 -1
- package/lib/src/index.js +1 -1
- package/lib/src/locale/lang/en.js +1 -1
- package/lib/src/locale/lang/zh-cn.js +1 -1
- package/lib/src/path-map.js +1 -1
- package/lib/src/utils/config-provider-preset.d.ts +4 -4
- package/lib/src/work-order-modal/work-order-modal.vue.d.ts +6 -6
- package/package.json +7 -7
- package/theme/ap-action/item-dropdown.css +28 -0
- package/theme/ap-action/item-dropdown.less +1 -1
- package/theme/ap-action/item.css +35 -1
- package/theme/ap-action/item.less +1 -2
- package/theme/ap-appendix/ap-appendix.css +28 -0
- package/theme/ap-attachment/ap-attachment.css +28 -0
- package/theme/ap-batch-action/ap-batch-action.css +28 -0
- package/theme/ap-button/ap-button.css +28 -0
- package/theme/ap-card/ap-card.css +28 -0
- package/theme/ap-descriptions/ap-descriptions.css +28 -0
- package/theme/ap-download/ap-download.css +28 -0
- package/theme/ap-expand-alert/ap-expand-alert.css +28 -0
- package/theme/ap-field/checkbox.css +28 -0
- package/theme/ap-field/index.css +28 -0
- package/theme/ap-field/number.css +28 -0
- package/theme/ap-field/radio.css +28 -0
- package/theme/ap-field/text-area.css +28 -0
- package/theme/ap-form/ap-form-item-group.css +28 -0
- package/theme/ap-form/ap-form-item.css +28 -0
- package/theme/ap-form/drawer-form.css +28 -0
- package/theme/ap-form/index.css +169 -0
- package/theme/ap-form/item-text-group.css +28 -0
- package/theme/ap-form/item-text.css +28 -0
- package/theme/ap-form/modal-form.css +28 -0
- package/theme/ap-form/search-form-sorter.css +120 -0
- package/theme/ap-form/search-form-sorter.less +71 -0
- package/theme/ap-form/search-form.css +169 -0
- package/theme/ap-form/search-form.less +56 -0
- package/theme/ap-grid/editable.css +28 -0
- package/theme/ap-grid/index.css +176 -1
- package/theme/ap-group-search/ap-extension-select.css +28 -0
- package/theme/ap-group-search/ap-group-search.css +28 -0
- package/theme/ap-group-search/ap-popover-select.css +28 -0
- package/theme/ap-image/ap-image.css +28 -0
- package/theme/ap-input-radio/ap-input-radio.css +28 -0
- package/theme/ap-label/ap-label.css +28 -0
- package/theme/ap-ladder/ap-ladder.css +28 -0
- package/theme/ap-layout/ap-info-layout.css +28 -0
- package/theme/ap-list/index.css +28 -0
- package/theme/ap-product-info/ap-product-info.css +28 -0
- package/theme/ap-select-layout/ap-select-layout.css +28 -0
- package/theme/ap-size-input/ap-size-input.css +28 -0
- package/theme/ap-status/ap-status.css +28 -0
- package/theme/ap-summary/index.css +28 -0
- package/theme/ap-table/ap-table-index.css +28 -0
- package/theme/ap-table/ap-table-paragraph-ellipsis.css +28 -0
- package/theme/ap-table/ap-table.css +190 -13
- package/theme/ap-table/ap-table.less +0 -1
- package/theme/ap-table/setting/index.css +42 -0
- package/theme/ap-table/setting/modal.css +36 -0
- package/theme/ap-table/setting/modal.less +1 -0
- package/theme/ap-table/setting/select-group.css +28 -0
- package/theme/ap-table/setting/sortable-item-meta.css +28 -0
- package/theme/ap-table/setting/sortable-item.css +28 -0
- package/theme/ap-table/setting/sorter.css +34 -0
- package/theme/ap-table/setting/sorter.less +1 -2
- package/theme/ap-table-modal/index.css +190 -13
- package/theme/ap-tag/ap-tag-group.css +28 -0
- package/theme/ap-tag/ap-tag.css +28 -0
- package/theme/ap-title/ap-title.css +28 -0
- package/theme/ap-upload/index.css +28 -0
- package/theme/ap-upload/multiple-file.css +28 -0
- package/theme/ap-upload/picture.css +28 -0
- package/theme/ap-upload/single-file.css +28 -0
- package/theme/ap-upload/upload.css +28 -0
- package/theme/ap-upload-single/index.css +28 -0
- package/theme/ap-view/ap-view.css +149 -0
- package/theme/ap-view/ap-view.less +128 -0
- package/theme/batch-input-group/index.css +28 -0
- package/theme/batch-input-group/popover-input.css +28 -0
- package/theme/check-card/index.css +49 -1
- package/theme/check-card/index.less +3 -4
- package/theme/editable-table/index.css +176 -1
- package/theme/full-screen/index.css +28 -0
- package/theme/index.css +340 -15
- package/theme/index.less +1 -0
- package/theme/mask/index.css +28 -0
- package/theme/mixins/config.less +1 -0
- package/theme/mixins/mixins.css +28 -0
- package/theme/mixins/mixins.less +35 -0
- package/theme/scroll-bar/index.css +28 -0
- package/theme/scroll-view/index.css +28 -0
- package/theme/splitter/index.css +28 -0
- package/theme/text/group.css +28 -0
- package/theme/text/index.css +36 -1
- package/theme/text/index.less +1 -1
- package/theme/work-order-modal/index.css +28 -0
|
@@ -37,12 +37,12 @@ export declare const apTableFormItemMap: {
|
|
|
37
37
|
date: {
|
|
38
38
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemDateProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
39
39
|
disabled: boolean;
|
|
40
|
-
field: Omit< ApFieldDateProps, "value" | "onUpdate:value">;
|
|
41
|
-
colon: boolean;
|
|
42
|
-
required: boolean;
|
|
43
40
|
hasFeedback: boolean;
|
|
41
|
+
colon: boolean;
|
|
44
42
|
autoLink: boolean;
|
|
43
|
+
required: boolean;
|
|
45
44
|
validateFirst: boolean;
|
|
45
|
+
field: Omit< ApFieldDateProps, "value" | "onUpdate:value">;
|
|
46
46
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
47
47
|
P: {};
|
|
48
48
|
B: {};
|
|
@@ -52,24 +52,24 @@ export declare const apTableFormItemMap: {
|
|
|
52
52
|
Defaults: {};
|
|
53
53
|
}, Readonly< ApFormItemDateProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
54
54
|
disabled: boolean;
|
|
55
|
-
field: Omit< ApFieldDateProps, "value" | "onUpdate:value">;
|
|
56
|
-
colon: boolean;
|
|
57
|
-
required: boolean;
|
|
58
55
|
hasFeedback: boolean;
|
|
56
|
+
colon: boolean;
|
|
59
57
|
autoLink: boolean;
|
|
58
|
+
required: boolean;
|
|
60
59
|
validateFirst: boolean;
|
|
60
|
+
field: Omit< ApFieldDateProps, "value" | "onUpdate:value">;
|
|
61
61
|
}>;
|
|
62
62
|
__isFragment?: never;
|
|
63
63
|
__isTeleport?: never;
|
|
64
64
|
__isSuspense?: never;
|
|
65
65
|
} & ComponentOptionsBase<Readonly< ApFormItemDateProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
66
66
|
disabled: boolean;
|
|
67
|
-
field: Omit< ApFieldDateProps, "value" | "onUpdate:value">;
|
|
68
|
-
colon: boolean;
|
|
69
|
-
required: boolean;
|
|
70
67
|
hasFeedback: boolean;
|
|
68
|
+
colon: boolean;
|
|
71
69
|
autoLink: boolean;
|
|
70
|
+
required: boolean;
|
|
72
71
|
validateFirst: boolean;
|
|
72
|
+
field: Omit< ApFieldDateProps, "value" | "onUpdate:value">;
|
|
73
73
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
74
74
|
$slots: Readonly<{
|
|
75
75
|
dateRender: any;
|
|
@@ -100,12 +100,12 @@ export declare const apTableFormItemMap: {
|
|
|
100
100
|
dateRange: {
|
|
101
101
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemDateRangeProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
102
102
|
disabled: boolean;
|
|
103
|
-
field: Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">;
|
|
104
|
-
colon: boolean;
|
|
105
|
-
required: boolean;
|
|
106
103
|
hasFeedback: boolean;
|
|
104
|
+
colon: boolean;
|
|
107
105
|
autoLink: boolean;
|
|
106
|
+
required: boolean;
|
|
108
107
|
validateFirst: boolean;
|
|
108
|
+
field: Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">;
|
|
109
109
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
110
110
|
P: {};
|
|
111
111
|
B: {};
|
|
@@ -115,24 +115,24 @@ export declare const apTableFormItemMap: {
|
|
|
115
115
|
Defaults: {};
|
|
116
116
|
}, Readonly< ApFormItemDateRangeProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
117
117
|
disabled: boolean;
|
|
118
|
-
field: Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">;
|
|
119
|
-
colon: boolean;
|
|
120
|
-
required: boolean;
|
|
121
118
|
hasFeedback: boolean;
|
|
119
|
+
colon: boolean;
|
|
122
120
|
autoLink: boolean;
|
|
121
|
+
required: boolean;
|
|
123
122
|
validateFirst: boolean;
|
|
123
|
+
field: Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">;
|
|
124
124
|
}>;
|
|
125
125
|
__isFragment?: never;
|
|
126
126
|
__isTeleport?: never;
|
|
127
127
|
__isSuspense?: never;
|
|
128
128
|
} & ComponentOptionsBase<Readonly< ApFormItemDateRangeProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
129
129
|
disabled: boolean;
|
|
130
|
-
field: Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">;
|
|
131
|
-
colon: boolean;
|
|
132
|
-
required: boolean;
|
|
133
130
|
hasFeedback: boolean;
|
|
131
|
+
colon: boolean;
|
|
134
132
|
autoLink: boolean;
|
|
133
|
+
required: boolean;
|
|
135
134
|
validateFirst: boolean;
|
|
135
|
+
field: Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">;
|
|
136
136
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
137
137
|
$slots: Readonly<{
|
|
138
138
|
suffixIcon?: any;
|
|
@@ -164,12 +164,12 @@ export declare const apTableFormItemMap: {
|
|
|
164
164
|
blur: () => void;
|
|
165
165
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
166
166
|
disabled: boolean;
|
|
167
|
-
field: Omit< ApFieldNumberProps, "value" | "onUpdate:value">;
|
|
168
|
-
colon: boolean;
|
|
169
|
-
required: boolean;
|
|
170
167
|
hasFeedback: boolean;
|
|
168
|
+
colon: boolean;
|
|
171
169
|
autoLink: boolean;
|
|
170
|
+
required: boolean;
|
|
172
171
|
validateFirst: boolean;
|
|
172
|
+
field: Omit< ApFieldNumberProps, "value" | "onUpdate:value">;
|
|
173
173
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
174
174
|
inputNumberRef: ({
|
|
175
175
|
$: ComponentInternalInstance;
|
|
@@ -188,7 +188,6 @@ export declare const apTableFormItemMap: {
|
|
|
188
188
|
readonly disabled?: boolean | undefined;
|
|
189
189
|
readonly bordered?: boolean | undefined;
|
|
190
190
|
readonly prefixCls?: string | undefined;
|
|
191
|
-
readonly status?: "" | "error" | "warning" | undefined;
|
|
192
191
|
readonly keyboard?: boolean | undefined;
|
|
193
192
|
readonly autofocus?: boolean | undefined;
|
|
194
193
|
readonly 'onUpdate:value'?: (((value: ValueType) => void) & ((...args: any[]) => any)) | undefined;
|
|
@@ -196,6 +195,7 @@ export declare const apTableFormItemMap: {
|
|
|
196
195
|
readonly min?: ValueType | undefined;
|
|
197
196
|
readonly defaultValue?: ValueType | undefined;
|
|
198
197
|
readonly onPressEnter?: KeyboardEventHandler | undefined;
|
|
198
|
+
readonly status?: "" | "error" | "warning" | undefined;
|
|
199
199
|
readonly readonly?: boolean | undefined;
|
|
200
200
|
readonly stringMode?: boolean | undefined;
|
|
201
201
|
readonly controls?: boolean | undefined;
|
|
@@ -210,14 +210,14 @@ export declare const apTableFormItemMap: {
|
|
|
210
210
|
}) => void) | undefined;
|
|
211
211
|
readonly type?: string | undefined;
|
|
212
212
|
readonly name?: string | undefined;
|
|
213
|
-
readonly id?: string | undefined;
|
|
214
|
-
readonly placeholder?: string | undefined;
|
|
215
|
-
readonly tabindex?: number | undefined;
|
|
216
|
-
readonly prefix?: any;
|
|
217
213
|
readonly suffix?: any;
|
|
214
|
+
readonly placeholder?: string | undefined;
|
|
215
|
+
readonly id?: string | undefined;
|
|
218
216
|
readonly valueModifiers?: Record<string, any> | undefined;
|
|
219
217
|
readonly addonBefore?: any;
|
|
220
218
|
readonly addonAfter?: any;
|
|
219
|
+
readonly prefix?: any;
|
|
220
|
+
readonly tabindex?: number | undefined;
|
|
221
221
|
readonly precision?: number | undefined;
|
|
222
222
|
readonly decimalSeparator?: string | undefined;
|
|
223
223
|
readonly emptyText?: string | undefined;
|
|
@@ -640,12 +640,12 @@ export declare const apTableFormItemMap: {
|
|
|
640
640
|
blur: () => void;
|
|
641
641
|
}, {}, {}, {}, {
|
|
642
642
|
disabled: boolean;
|
|
643
|
-
field: Omit< ApFieldNumberProps, "value" | "onUpdate:value">;
|
|
644
|
-
colon: boolean;
|
|
645
|
-
required: boolean;
|
|
646
643
|
hasFeedback: boolean;
|
|
644
|
+
colon: boolean;
|
|
647
645
|
autoLink: boolean;
|
|
646
|
+
required: boolean;
|
|
648
647
|
validateFirst: boolean;
|
|
648
|
+
field: Omit< ApFieldNumberProps, "value" | "onUpdate:value">;
|
|
649
649
|
}>;
|
|
650
650
|
__isFragment?: never;
|
|
651
651
|
__isTeleport?: never;
|
|
@@ -655,12 +655,12 @@ export declare const apTableFormItemMap: {
|
|
|
655
655
|
blur: () => void;
|
|
656
656
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
657
657
|
disabled: boolean;
|
|
658
|
-
field: Omit< ApFieldNumberProps, "value" | "onUpdate:value">;
|
|
659
|
-
colon: boolean;
|
|
660
|
-
required: boolean;
|
|
661
658
|
hasFeedback: boolean;
|
|
659
|
+
colon: boolean;
|
|
662
660
|
autoLink: boolean;
|
|
661
|
+
required: boolean;
|
|
663
662
|
validateFirst: boolean;
|
|
663
|
+
field: Omit< ApFieldNumberProps, "value" | "onUpdate:value">;
|
|
664
664
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
665
665
|
$slots: Readonly<{
|
|
666
666
|
addonBefore?: any;
|
|
@@ -684,12 +684,12 @@ export declare const apTableFormItemMap: {
|
|
|
684
684
|
blur: () => void;
|
|
685
685
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
686
686
|
disabled: boolean;
|
|
687
|
-
field: Omit< ApFieldRadioProps, "value" | "onUpdate:value">;
|
|
688
|
-
colon: boolean;
|
|
689
|
-
required: boolean;
|
|
690
687
|
hasFeedback: boolean;
|
|
688
|
+
colon: boolean;
|
|
691
689
|
autoLink: boolean;
|
|
690
|
+
required: boolean;
|
|
692
691
|
validateFirst: boolean;
|
|
692
|
+
field: Omit< ApFieldRadioProps, "value" | "onUpdate:value">;
|
|
693
693
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
694
694
|
radioRef: CreateComponentPublicInstanceWithMixins<Readonly< ApFieldRadioProps> & Readonly<{
|
|
695
695
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
@@ -824,12 +824,12 @@ export declare const apTableFormItemMap: {
|
|
|
824
824
|
blur: () => void;
|
|
825
825
|
}, {}, {}, {}, {
|
|
826
826
|
disabled: boolean;
|
|
827
|
-
field: Omit< ApFieldRadioProps, "value" | "onUpdate:value">;
|
|
828
|
-
colon: boolean;
|
|
829
|
-
required: boolean;
|
|
830
827
|
hasFeedback: boolean;
|
|
828
|
+
colon: boolean;
|
|
831
829
|
autoLink: boolean;
|
|
830
|
+
required: boolean;
|
|
832
831
|
validateFirst: boolean;
|
|
832
|
+
field: Omit< ApFieldRadioProps, "value" | "onUpdate:value">;
|
|
833
833
|
}>;
|
|
834
834
|
__isFragment?: never;
|
|
835
835
|
__isTeleport?: never;
|
|
@@ -839,12 +839,12 @@ export declare const apTableFormItemMap: {
|
|
|
839
839
|
blur: () => void;
|
|
840
840
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
841
841
|
disabled: boolean;
|
|
842
|
-
field: Omit< ApFieldRadioProps, "value" | "onUpdate:value">;
|
|
843
|
-
colon: boolean;
|
|
844
|
-
required: boolean;
|
|
845
842
|
hasFeedback: boolean;
|
|
843
|
+
colon: boolean;
|
|
846
844
|
autoLink: boolean;
|
|
845
|
+
required: boolean;
|
|
847
846
|
validateFirst: boolean;
|
|
847
|
+
field: Omit< ApFieldRadioProps, "value" | "onUpdate:value">;
|
|
848
848
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
849
849
|
$slots: Readonly<{
|
|
850
850
|
label: any;
|
|
@@ -863,12 +863,12 @@ export declare const apTableFormItemMap: {
|
|
|
863
863
|
request: () => void;
|
|
864
864
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
865
865
|
disabled: boolean;
|
|
866
|
-
field: Omit< ApFieldSelectProps, "value" | "onUpdate:value">;
|
|
867
|
-
colon: boolean;
|
|
868
|
-
required: boolean;
|
|
869
866
|
hasFeedback: boolean;
|
|
867
|
+
colon: boolean;
|
|
870
868
|
autoLink: boolean;
|
|
869
|
+
required: boolean;
|
|
871
870
|
validateFirst: boolean;
|
|
871
|
+
field: Omit< ApFieldSelectProps, "value" | "onUpdate:value">;
|
|
872
872
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
873
873
|
selectRef: ({
|
|
874
874
|
$: ComponentInternalInstance;
|
|
@@ -895,22 +895,21 @@ export declare const apTableFormItemMap: {
|
|
|
895
895
|
readonly animation?: string | undefined;
|
|
896
896
|
readonly children?: VueNode[] | undefined;
|
|
897
897
|
readonly bordered?: boolean | undefined;
|
|
898
|
-
readonly getPopupContainer?: RenderDOMFunc | undefined;
|
|
899
898
|
readonly prefixCls?: string | undefined;
|
|
900
|
-
readonly virtual?: boolean | undefined;
|
|
901
|
-
readonly dropdownMatchSelectWidth?: number | boolean | undefined;
|
|
902
|
-
readonly showSearch?: boolean | undefined;
|
|
903
|
-
readonly status?: "" | "error" | "warning" | undefined;
|
|
904
|
-
readonly transitionName?: string | undefined;
|
|
905
|
-
readonly id?: string | undefined;
|
|
906
|
-
readonly placeholder?: any;
|
|
907
|
-
readonly tabindex?: number | undefined;
|
|
908
899
|
readonly loading?: boolean | undefined;
|
|
900
|
+
readonly transitionName?: string | undefined;
|
|
909
901
|
readonly autofocus?: boolean | undefined;
|
|
902
|
+
readonly getPopupContainer?: RenderDOMFunc | undefined;
|
|
903
|
+
readonly placeholder?: any;
|
|
910
904
|
readonly defaultValue?: SelectValue;
|
|
905
|
+
readonly virtual?: boolean | undefined;
|
|
906
|
+
readonly dropdownMatchSelectWidth?: number | boolean | undefined;
|
|
907
|
+
readonly id?: string | undefined;
|
|
908
|
+
readonly status?: "" | "error" | "warning" | undefined;
|
|
911
909
|
readonly clearIcon?: any;
|
|
912
910
|
readonly allowClear?: boolean | undefined;
|
|
913
911
|
readonly options?: DefaultOptionType[] | undefined;
|
|
912
|
+
readonly tabindex?: number | undefined;
|
|
914
913
|
readonly dropdownClassName?: string | undefined;
|
|
915
914
|
readonly dropdownAlign?: AlignType | undefined;
|
|
916
915
|
readonly defaultOpen?: boolean | undefined;
|
|
@@ -925,6 +924,7 @@ export declare const apTableFormItemMap: {
|
|
|
925
924
|
readonly fieldNames?: FieldNames | undefined;
|
|
926
925
|
readonly dropdownStyle?: CSSProperties | undefined;
|
|
927
926
|
readonly dropdownRender?: DropdownRender | undefined;
|
|
927
|
+
readonly showSearch?: boolean | undefined;
|
|
928
928
|
readonly searchValue?: string | undefined;
|
|
929
929
|
readonly onInputKeyDown?: ((e: KeyboardEvent) => void) | undefined;
|
|
930
930
|
readonly removeIcon?: any;
|
|
@@ -1393,13 +1393,13 @@ export declare const apTableFormItemMap: {
|
|
|
1393
1393
|
multiple: boolean;
|
|
1394
1394
|
disabled: boolean;
|
|
1395
1395
|
bordered: boolean;
|
|
1396
|
-
virtual: boolean;
|
|
1397
|
-
showSearch: boolean;
|
|
1398
1396
|
loading: boolean;
|
|
1399
1397
|
autofocus: boolean;
|
|
1398
|
+
virtual: boolean;
|
|
1400
1399
|
lazy: boolean;
|
|
1401
1400
|
allowClear: boolean;
|
|
1402
1401
|
defaultOpen: boolean;
|
|
1402
|
+
showSearch: boolean;
|
|
1403
1403
|
showArrow: boolean;
|
|
1404
1404
|
autoClearSearchValue: boolean;
|
|
1405
1405
|
defaultActiveFirstOption: boolean;
|
|
@@ -1434,13 +1434,13 @@ export declare const apTableFormItemMap: {
|
|
|
1434
1434
|
multiple: boolean;
|
|
1435
1435
|
disabled: boolean;
|
|
1436
1436
|
bordered: boolean;
|
|
1437
|
-
virtual: boolean;
|
|
1438
|
-
showSearch: boolean;
|
|
1439
1437
|
loading: boolean;
|
|
1440
1438
|
autofocus: boolean;
|
|
1439
|
+
virtual: boolean;
|
|
1441
1440
|
lazy: boolean;
|
|
1442
1441
|
allowClear: boolean;
|
|
1443
1442
|
defaultOpen: boolean;
|
|
1443
|
+
showSearch: boolean;
|
|
1444
1444
|
showArrow: boolean;
|
|
1445
1445
|
autoClearSearchValue: boolean;
|
|
1446
1446
|
defaultActiveFirstOption: boolean;
|
|
@@ -1451,7 +1451,7 @@ export declare const apTableFormItemMap: {
|
|
|
1451
1451
|
searchDelay: number;
|
|
1452
1452
|
}> & Omit<Readonly< ApFieldSelectProps> & Readonly<{
|
|
1453
1453
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
1454
|
-
}>, "blur" | "focus" | "request" | ("mode" | "open" | "multiple" | "disabled" | "bordered" | "
|
|
1454
|
+
}>, "blur" | "focus" | "request" | ("mode" | "open" | "multiple" | "disabled" | "bordered" | "loading" | "autofocus" | "virtual" | "lazy" | "allowClear" | "defaultOpen" | "showSearch" | "showArrow" | "autoClearSearchValue" | "defaultActiveFirstOption" | "labelInValue" | "emptyText" | "searchMode" | "refetchOnFocus" | "searchDelay")> & ShallowUnwrapRef<{
|
|
1455
1455
|
focus: () => void;
|
|
1456
1456
|
blur: () => void;
|
|
1457
1457
|
request: (clear?: boolean) => Promise<void>;
|
|
@@ -1497,12 +1497,12 @@ export declare const apTableFormItemMap: {
|
|
|
1497
1497
|
request: () => void;
|
|
1498
1498
|
}, {}, {}, {}, {
|
|
1499
1499
|
disabled: boolean;
|
|
1500
|
-
field: Omit< ApFieldSelectProps, "value" | "onUpdate:value">;
|
|
1501
|
-
colon: boolean;
|
|
1502
|
-
required: boolean;
|
|
1503
1500
|
hasFeedback: boolean;
|
|
1501
|
+
colon: boolean;
|
|
1504
1502
|
autoLink: boolean;
|
|
1503
|
+
required: boolean;
|
|
1505
1504
|
validateFirst: boolean;
|
|
1505
|
+
field: Omit< ApFieldSelectProps, "value" | "onUpdate:value">;
|
|
1506
1506
|
}>;
|
|
1507
1507
|
__isFragment?: never;
|
|
1508
1508
|
__isTeleport?: never;
|
|
@@ -1513,12 +1513,12 @@ export declare const apTableFormItemMap: {
|
|
|
1513
1513
|
request: () => void;
|
|
1514
1514
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
1515
1515
|
disabled: boolean;
|
|
1516
|
-
field: Omit< ApFieldSelectProps, "value" | "onUpdate:value">;
|
|
1517
|
-
colon: boolean;
|
|
1518
|
-
required: boolean;
|
|
1519
1516
|
hasFeedback: boolean;
|
|
1517
|
+
colon: boolean;
|
|
1520
1518
|
autoLink: boolean;
|
|
1519
|
+
required: boolean;
|
|
1521
1520
|
validateFirst: boolean;
|
|
1521
|
+
field: Omit< ApFieldSelectProps, "value" | "onUpdate:value">;
|
|
1522
1522
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1523
1523
|
$slots: Readonly<{
|
|
1524
1524
|
notFoundContent: any;
|
|
@@ -1551,13 +1551,13 @@ export declare const apTableFormItemMap: {
|
|
|
1551
1551
|
switch: {
|
|
1552
1552
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemSwitchProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
1553
1553
|
disabled: boolean;
|
|
1554
|
-
field: Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">;
|
|
1555
|
-
colon: boolean;
|
|
1556
|
-
required: boolean;
|
|
1557
1554
|
hasFeedback: boolean;
|
|
1555
|
+
colon: boolean;
|
|
1558
1556
|
autoLink: boolean;
|
|
1557
|
+
required: boolean;
|
|
1559
1558
|
validateFirst: boolean;
|
|
1560
1559
|
valuePropName: string;
|
|
1560
|
+
field: Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">;
|
|
1561
1561
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
1562
1562
|
P: {};
|
|
1563
1563
|
B: {};
|
|
@@ -1567,26 +1567,26 @@ export declare const apTableFormItemMap: {
|
|
|
1567
1567
|
Defaults: {};
|
|
1568
1568
|
}, Readonly< ApFormItemSwitchProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
1569
1569
|
disabled: boolean;
|
|
1570
|
-
field: Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">;
|
|
1571
|
-
colon: boolean;
|
|
1572
|
-
required: boolean;
|
|
1573
1570
|
hasFeedback: boolean;
|
|
1571
|
+
colon: boolean;
|
|
1574
1572
|
autoLink: boolean;
|
|
1573
|
+
required: boolean;
|
|
1575
1574
|
validateFirst: boolean;
|
|
1576
1575
|
valuePropName: string;
|
|
1576
|
+
field: Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">;
|
|
1577
1577
|
}>;
|
|
1578
1578
|
__isFragment?: never;
|
|
1579
1579
|
__isTeleport?: never;
|
|
1580
1580
|
__isSuspense?: never;
|
|
1581
1581
|
} & ComponentOptionsBase<Readonly< ApFormItemSwitchProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
1582
1582
|
disabled: boolean;
|
|
1583
|
-
field: Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">;
|
|
1584
|
-
colon: boolean;
|
|
1585
|
-
required: boolean;
|
|
1586
1583
|
hasFeedback: boolean;
|
|
1584
|
+
colon: boolean;
|
|
1587
1585
|
autoLink: boolean;
|
|
1586
|
+
required: boolean;
|
|
1588
1587
|
validateFirst: boolean;
|
|
1589
1588
|
valuePropName: string;
|
|
1589
|
+
field: Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">;
|
|
1590
1590
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1591
1591
|
$slots: Readonly<{
|
|
1592
1592
|
checkedChildren: any;
|
|
@@ -1607,12 +1607,12 @@ export declare const apTableFormItemMap: {
|
|
|
1607
1607
|
select: () => void;
|
|
1608
1608
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
1609
1609
|
disabled: boolean;
|
|
1610
|
-
field: Omit< ApFieldTextProps, "value" | "onUpdate:value">;
|
|
1611
|
-
colon: boolean;
|
|
1612
|
-
required: boolean;
|
|
1613
1610
|
hasFeedback: boolean;
|
|
1611
|
+
colon: boolean;
|
|
1614
1612
|
autoLink: boolean;
|
|
1613
|
+
required: boolean;
|
|
1615
1614
|
validateFirst: boolean;
|
|
1615
|
+
field: Omit< ApFieldTextProps, "value" | "onUpdate:value">;
|
|
1616
1616
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
1617
1617
|
inputRef: ({
|
|
1618
1618
|
$: ComponentInternalInstance;
|
|
@@ -1639,17 +1639,16 @@ export declare const apTableFormItemMap: {
|
|
|
1639
1639
|
readonly bordered?: boolean | undefined;
|
|
1640
1640
|
readonly prefixCls?: string | undefined;
|
|
1641
1641
|
readonly name?: string | undefined;
|
|
1642
|
-
readonly autocomplete?: string | undefined;
|
|
1643
|
-
readonly status?: "" | "error" | "warning" | undefined;
|
|
1644
|
-
readonly id?: string | undefined;
|
|
1645
|
-
readonly placeholder?: string | number | undefined;
|
|
1646
|
-
readonly prefix?: any;
|
|
1647
1642
|
readonly loading?: boolean | undefined;
|
|
1648
1643
|
readonly autofocus?: boolean | undefined;
|
|
1649
1644
|
readonly 'onUpdate:value'?: (((val: string) => void) & ((...args: any[]) => any)) | undefined;
|
|
1650
1645
|
readonly suffix?: any;
|
|
1651
1646
|
readonly focused?: boolean | undefined;
|
|
1647
|
+
readonly placeholder?: string | number | undefined;
|
|
1648
|
+
readonly handleReset?: MouseEventHandler | undefined;
|
|
1652
1649
|
readonly defaultValue?: string | number | undefined;
|
|
1650
|
+
readonly id?: string | undefined;
|
|
1651
|
+
readonly autocomplete?: string | undefined;
|
|
1653
1652
|
readonly maxlength?: number | undefined;
|
|
1654
1653
|
readonly showCount?: boolean | ShowCountProps | undefined;
|
|
1655
1654
|
readonly htmlSize?: number | undefined;
|
|
@@ -1657,12 +1656,13 @@ export declare const apTableFormItemMap: {
|
|
|
1657
1656
|
readonly onMouseUp?: MouseEventHandler | undefined;
|
|
1658
1657
|
readonly onRawInput?: ChangeEventHandler | undefined;
|
|
1659
1658
|
readonly valueModifiers?: Record<string, any> | undefined;
|
|
1659
|
+
readonly status?: "" | "error" | "warning" | undefined;
|
|
1660
1660
|
readonly inputElement?: any;
|
|
1661
1661
|
readonly triggerFocus?: (() => void) | undefined;
|
|
1662
1662
|
readonly readonly?: boolean | undefined;
|
|
1663
|
-
readonly handleReset?: MouseEventHandler | undefined;
|
|
1664
1663
|
readonly addonBefore?: any;
|
|
1665
1664
|
readonly addonAfter?: any;
|
|
1665
|
+
readonly prefix?: any;
|
|
1666
1666
|
readonly clearIcon?: any;
|
|
1667
1667
|
readonly allowClear?: boolean | undefined;
|
|
1668
1668
|
readonly emptyText?: string | undefined;
|
|
@@ -1766,12 +1766,12 @@ export declare const apTableFormItemMap: {
|
|
|
1766
1766
|
select: () => void;
|
|
1767
1767
|
}, {}, {}, {}, {
|
|
1768
1768
|
disabled: boolean;
|
|
1769
|
-
field: Omit< ApFieldTextProps, "value" | "onUpdate:value">;
|
|
1770
|
-
colon: boolean;
|
|
1771
|
-
required: boolean;
|
|
1772
1769
|
hasFeedback: boolean;
|
|
1770
|
+
colon: boolean;
|
|
1773
1771
|
autoLink: boolean;
|
|
1772
|
+
required: boolean;
|
|
1774
1773
|
validateFirst: boolean;
|
|
1774
|
+
field: Omit< ApFieldTextProps, "value" | "onUpdate:value">;
|
|
1775
1775
|
}>;
|
|
1776
1776
|
__isFragment?: never;
|
|
1777
1777
|
__isTeleport?: never;
|
|
@@ -1784,12 +1784,12 @@ export declare const apTableFormItemMap: {
|
|
|
1784
1784
|
select: () => void;
|
|
1785
1785
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
1786
1786
|
disabled: boolean;
|
|
1787
|
-
field: Omit< ApFieldTextProps, "value" | "onUpdate:value">;
|
|
1788
|
-
colon: boolean;
|
|
1789
|
-
required: boolean;
|
|
1790
1787
|
hasFeedback: boolean;
|
|
1788
|
+
colon: boolean;
|
|
1791
1789
|
autoLink: boolean;
|
|
1790
|
+
required: boolean;
|
|
1792
1791
|
validateFirst: boolean;
|
|
1792
|
+
field: Omit< ApFieldTextProps, "value" | "onUpdate:value">;
|
|
1793
1793
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1794
1794
|
$slots: Readonly<{
|
|
1795
1795
|
addonAfter: any;
|
|
@@ -1815,12 +1815,12 @@ export declare const apTableFormItemMap: {
|
|
|
1815
1815
|
resizableTextArea: any;
|
|
1816
1816
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
1817
1817
|
disabled: boolean;
|
|
1818
|
-
field: Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">;
|
|
1819
|
-
colon: boolean;
|
|
1820
|
-
required: boolean;
|
|
1821
1818
|
hasFeedback: boolean;
|
|
1819
|
+
colon: boolean;
|
|
1822
1820
|
autoLink: boolean;
|
|
1821
|
+
required: boolean;
|
|
1823
1822
|
validateFirst: boolean;
|
|
1823
|
+
field: Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">;
|
|
1824
1824
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
1825
1825
|
textAreaRef: CreateComponentPublicInstanceWithMixins<Readonly< ApFieldTextAreaProps> & Readonly<{
|
|
1826
1826
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
@@ -2132,12 +2132,12 @@ export declare const apTableFormItemMap: {
|
|
|
2132
2132
|
resizableTextArea: any;
|
|
2133
2133
|
}, {}, {}, {}, {
|
|
2134
2134
|
disabled: boolean;
|
|
2135
|
-
field: Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">;
|
|
2136
|
-
colon: boolean;
|
|
2137
|
-
required: boolean;
|
|
2138
2135
|
hasFeedback: boolean;
|
|
2136
|
+
colon: boolean;
|
|
2139
2137
|
autoLink: boolean;
|
|
2138
|
+
required: boolean;
|
|
2140
2139
|
validateFirst: boolean;
|
|
2140
|
+
field: Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">;
|
|
2141
2141
|
}>;
|
|
2142
2142
|
__isFragment?: never;
|
|
2143
2143
|
__isTeleport?: never;
|
|
@@ -2148,12 +2148,12 @@ export declare const apTableFormItemMap: {
|
|
|
2148
2148
|
resizableTextArea: any;
|
|
2149
2149
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
2150
2150
|
disabled: boolean;
|
|
2151
|
-
field: Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">;
|
|
2152
|
-
colon: boolean;
|
|
2153
|
-
required: boolean;
|
|
2154
2151
|
hasFeedback: boolean;
|
|
2152
|
+
colon: boolean;
|
|
2155
2153
|
autoLink: boolean;
|
|
2154
|
+
required: boolean;
|
|
2156
2155
|
validateFirst: boolean;
|
|
2156
|
+
field: Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">;
|
|
2157
2157
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2158
2158
|
$slots: Readonly<{
|
|
2159
2159
|
label: any;
|
|
@@ -2168,12 +2168,12 @@ export declare const apTableFormItemMap: {
|
|
|
2168
2168
|
checkbox: {
|
|
2169
2169
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemCheckboxProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
2170
2170
|
disabled: boolean;
|
|
2171
|
-
field: Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">;
|
|
2172
|
-
colon: boolean;
|
|
2173
|
-
required: boolean;
|
|
2174
2171
|
hasFeedback: boolean;
|
|
2172
|
+
colon: boolean;
|
|
2175
2173
|
autoLink: boolean;
|
|
2174
|
+
required: boolean;
|
|
2176
2175
|
validateFirst: boolean;
|
|
2176
|
+
field: Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">;
|
|
2177
2177
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
2178
2178
|
P: {};
|
|
2179
2179
|
B: {};
|
|
@@ -2183,24 +2183,24 @@ export declare const apTableFormItemMap: {
|
|
|
2183
2183
|
Defaults: {};
|
|
2184
2184
|
}, Readonly< ApFormItemCheckboxProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
2185
2185
|
disabled: boolean;
|
|
2186
|
-
field: Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">;
|
|
2187
|
-
colon: boolean;
|
|
2188
|
-
required: boolean;
|
|
2189
2186
|
hasFeedback: boolean;
|
|
2187
|
+
colon: boolean;
|
|
2190
2188
|
autoLink: boolean;
|
|
2189
|
+
required: boolean;
|
|
2191
2190
|
validateFirst: boolean;
|
|
2191
|
+
field: Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">;
|
|
2192
2192
|
}>;
|
|
2193
2193
|
__isFragment?: never;
|
|
2194
2194
|
__isTeleport?: never;
|
|
2195
2195
|
__isSuspense?: never;
|
|
2196
2196
|
} & ComponentOptionsBase<Readonly< ApFormItemCheckboxProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
2197
2197
|
disabled: boolean;
|
|
2198
|
-
field: Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">;
|
|
2199
|
-
colon: boolean;
|
|
2200
|
-
required: boolean;
|
|
2201
2198
|
hasFeedback: boolean;
|
|
2199
|
+
colon: boolean;
|
|
2202
2200
|
autoLink: boolean;
|
|
2201
|
+
required: boolean;
|
|
2203
2202
|
validateFirst: boolean;
|
|
2203
|
+
field: Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">;
|
|
2204
2204
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2205
2205
|
$slots: Readonly<{
|
|
2206
2206
|
label: any;
|
|
@@ -2218,12 +2218,12 @@ export declare const apTableFormItemMap: {
|
|
|
2218
2218
|
blur: () => void;
|
|
2219
2219
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
2220
2220
|
disabled: boolean;
|
|
2221
|
-
field: Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">;
|
|
2222
|
-
colon: boolean;
|
|
2223
|
-
required: boolean;
|
|
2224
2221
|
hasFeedback: boolean;
|
|
2222
|
+
colon: boolean;
|
|
2225
2223
|
autoLink: boolean;
|
|
2224
|
+
required: boolean;
|
|
2226
2225
|
validateFirst: boolean;
|
|
2226
|
+
field: Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">;
|
|
2227
2227
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
2228
2228
|
inputRef: ({
|
|
2229
2229
|
$: ComponentInternalInstance;
|
|
@@ -2250,17 +2250,16 @@ export declare const apTableFormItemMap: {
|
|
|
2250
2250
|
readonly bordered?: boolean | undefined;
|
|
2251
2251
|
readonly prefixCls?: string | undefined;
|
|
2252
2252
|
readonly name?: string | undefined;
|
|
2253
|
-
readonly autocomplete?: string | undefined;
|
|
2254
|
-
readonly status?: "" | "error" | "warning" | undefined;
|
|
2255
|
-
readonly id?: string | undefined;
|
|
2256
|
-
readonly placeholder?: string | number | undefined;
|
|
2257
|
-
readonly prefix?: any;
|
|
2258
2253
|
readonly loading?: boolean | undefined;
|
|
2259
2254
|
readonly autofocus?: boolean | undefined;
|
|
2260
2255
|
readonly 'onUpdate:value'?: (((val: string) => void) & ((...args: any[]) => any)) | undefined;
|
|
2261
2256
|
readonly suffix?: any;
|
|
2262
2257
|
readonly focused?: boolean | undefined;
|
|
2258
|
+
readonly placeholder?: string | number | undefined;
|
|
2259
|
+
readonly handleReset?: MouseEventHandler | undefined;
|
|
2263
2260
|
readonly defaultValue?: string | number | undefined;
|
|
2261
|
+
readonly id?: string | undefined;
|
|
2262
|
+
readonly autocomplete?: string | undefined;
|
|
2264
2263
|
readonly maxlength?: number | undefined;
|
|
2265
2264
|
readonly showCount?: boolean | ShowCountProps | undefined;
|
|
2266
2265
|
readonly htmlSize?: number | undefined;
|
|
@@ -2268,12 +2267,13 @@ export declare const apTableFormItemMap: {
|
|
|
2268
2267
|
readonly onMouseUp?: MouseEventHandler | undefined;
|
|
2269
2268
|
readonly onRawInput?: ChangeEventHandler | undefined;
|
|
2270
2269
|
readonly valueModifiers?: Record<string, any> | undefined;
|
|
2270
|
+
readonly status?: "" | "error" | "warning" | undefined;
|
|
2271
2271
|
readonly inputElement?: any;
|
|
2272
2272
|
readonly triggerFocus?: (() => void) | undefined;
|
|
2273
2273
|
readonly readonly?: boolean | undefined;
|
|
2274
|
-
readonly handleReset?: MouseEventHandler | undefined;
|
|
2275
2274
|
readonly addonBefore?: any;
|
|
2276
2275
|
readonly addonAfter?: any;
|
|
2276
|
+
readonly prefix?: any;
|
|
2277
2277
|
readonly clearIcon?: any;
|
|
2278
2278
|
readonly allowClear?: boolean | undefined;
|
|
2279
2279
|
readonly inputPrefixCls?: string | undefined;
|
|
@@ -2383,12 +2383,12 @@ export declare const apTableFormItemMap: {
|
|
|
2383
2383
|
blur: () => void;
|
|
2384
2384
|
}, {}, {}, {}, {
|
|
2385
2385
|
disabled: boolean;
|
|
2386
|
-
field: Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">;
|
|
2387
|
-
colon: boolean;
|
|
2388
|
-
required: boolean;
|
|
2389
2386
|
hasFeedback: boolean;
|
|
2387
|
+
colon: boolean;
|
|
2390
2388
|
autoLink: boolean;
|
|
2389
|
+
required: boolean;
|
|
2391
2390
|
validateFirst: boolean;
|
|
2391
|
+
field: Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">;
|
|
2392
2392
|
}>;
|
|
2393
2393
|
__isFragment?: never;
|
|
2394
2394
|
__isTeleport?: never;
|
|
@@ -2398,12 +2398,12 @@ export declare const apTableFormItemMap: {
|
|
|
2398
2398
|
blur: () => void;
|
|
2399
2399
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
2400
2400
|
disabled: boolean;
|
|
2401
|
-
field: Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">;
|
|
2402
|
-
colon: boolean;
|
|
2403
|
-
required: boolean;
|
|
2404
2401
|
hasFeedback: boolean;
|
|
2402
|
+
colon: boolean;
|
|
2405
2403
|
autoLink: boolean;
|
|
2404
|
+
required: boolean;
|
|
2406
2405
|
validateFirst: boolean;
|
|
2406
|
+
field: Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">;
|
|
2407
2407
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2408
2408
|
$slots: Readonly<{
|
|
2409
2409
|
addonAfter: any;
|
|
@@ -2428,12 +2428,12 @@ export declare const apTableFormItemMap: {
|
|
|
2428
2428
|
request: (currentNode?: LegacyDataNode, clear?: boolean) => void;
|
|
2429
2429
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
2430
2430
|
disabled: boolean;
|
|
2431
|
-
field: Omit< ApFieldTreeSelectProps, "value" | "onUpdate:value">;
|
|
2432
|
-
colon: boolean;
|
|
2433
|
-
required: boolean;
|
|
2434
2431
|
hasFeedback: boolean;
|
|
2432
|
+
colon: boolean;
|
|
2435
2433
|
autoLink: boolean;
|
|
2434
|
+
required: boolean;
|
|
2436
2435
|
validateFirst: boolean;
|
|
2436
|
+
field: Omit< ApFieldTreeSelectProps, "value" | "onUpdate:value">;
|
|
2437
2437
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
2438
2438
|
treeSelectRef: ({
|
|
2439
2439
|
$: ComponentInternalInstance;
|
|
@@ -2462,22 +2462,21 @@ export declare const apTableFormItemMap: {
|
|
|
2462
2462
|
readonly animation?: string | undefined;
|
|
2463
2463
|
readonly children?: VueNode[] | undefined;
|
|
2464
2464
|
readonly bordered?: boolean | undefined;
|
|
2465
|
-
readonly getPopupContainer?: RenderDOMFunc | undefined;
|
|
2466
2465
|
readonly prefixCls?: string | undefined;
|
|
2467
|
-
readonly virtual?: boolean | undefined;
|
|
2468
|
-
readonly dropdownMatchSelectWidth?: number | boolean | undefined;
|
|
2469
|
-
readonly showSearch?: boolean | undefined;
|
|
2470
|
-
readonly status?: "" | "error" | "warning" | undefined;
|
|
2471
|
-
readonly transitionName?: string | undefined;
|
|
2472
|
-
readonly id?: string | undefined;
|
|
2473
|
-
readonly placeholder?: any;
|
|
2474
|
-
readonly tabindex?: number | undefined;
|
|
2475
2466
|
readonly loading?: boolean | undefined;
|
|
2467
|
+
readonly transitionName?: string | undefined;
|
|
2476
2468
|
readonly autofocus?: boolean | undefined;
|
|
2477
2469
|
readonly 'onUpdate:value'?: (((value: any) => void) & ((...args: any[]) => any)) | undefined;
|
|
2470
|
+
readonly getPopupContainer?: RenderDOMFunc | undefined;
|
|
2471
|
+
readonly placeholder?: any;
|
|
2478
2472
|
readonly defaultValue?: unknown;
|
|
2473
|
+
readonly virtual?: boolean | undefined;
|
|
2474
|
+
readonly dropdownMatchSelectWidth?: number | boolean | undefined;
|
|
2475
|
+
readonly id?: string | undefined;
|
|
2476
|
+
readonly status?: "" | "error" | "warning" | undefined;
|
|
2479
2477
|
readonly clearIcon?: any;
|
|
2480
2478
|
readonly allowClear?: boolean | undefined;
|
|
2479
|
+
readonly tabindex?: number | undefined;
|
|
2481
2480
|
readonly dropdownClassName?: string | undefined;
|
|
2482
2481
|
readonly dropdownAlign?: AlignType | undefined;
|
|
2483
2482
|
readonly defaultOpen?: boolean | undefined;
|
|
@@ -2492,6 +2491,7 @@ export declare const apTableFormItemMap: {
|
|
|
2492
2491
|
readonly fieldNames?: FieldNames | undefined;
|
|
2493
2492
|
readonly dropdownStyle?: CSSProperties | undefined;
|
|
2494
2493
|
readonly dropdownRender?: DropdownRender | undefined;
|
|
2494
|
+
readonly showSearch?: boolean | undefined;
|
|
2495
2495
|
readonly searchValue?: string | undefined;
|
|
2496
2496
|
readonly onInputKeyDown?: ((e: KeyboardEvent) => void) | undefined;
|
|
2497
2497
|
readonly removeIcon?: any;
|
|
@@ -3105,13 +3105,13 @@ export declare const apTableFormItemMap: {
|
|
|
3105
3105
|
multiple: boolean;
|
|
3106
3106
|
disabled: boolean;
|
|
3107
3107
|
bordered: boolean;
|
|
3108
|
-
virtual: boolean;
|
|
3109
|
-
dropdownMatchSelectWidth: number | boolean;
|
|
3110
|
-
showSearch: boolean;
|
|
3111
3108
|
loading: boolean;
|
|
3112
3109
|
autofocus: boolean;
|
|
3110
|
+
virtual: boolean;
|
|
3111
|
+
dropdownMatchSelectWidth: number | boolean;
|
|
3113
3112
|
allowClear: boolean;
|
|
3114
3113
|
defaultOpen: boolean;
|
|
3114
|
+
showSearch: boolean;
|
|
3115
3115
|
showArrow: boolean;
|
|
3116
3116
|
autoClearSearchValue: boolean;
|
|
3117
3117
|
labelInValue: boolean;
|
|
@@ -3145,13 +3145,13 @@ export declare const apTableFormItemMap: {
|
|
|
3145
3145
|
multiple: boolean;
|
|
3146
3146
|
disabled: boolean;
|
|
3147
3147
|
bordered: boolean;
|
|
3148
|
-
virtual: boolean;
|
|
3149
|
-
dropdownMatchSelectWidth: number | boolean;
|
|
3150
|
-
showSearch: boolean;
|
|
3151
3148
|
loading: boolean;
|
|
3152
3149
|
autofocus: boolean;
|
|
3150
|
+
virtual: boolean;
|
|
3151
|
+
dropdownMatchSelectWidth: number | boolean;
|
|
3153
3152
|
allowClear: boolean;
|
|
3154
3153
|
defaultOpen: boolean;
|
|
3154
|
+
showSearch: boolean;
|
|
3155
3155
|
showArrow: boolean;
|
|
3156
3156
|
autoClearSearchValue: boolean;
|
|
3157
3157
|
labelInValue: boolean;
|
|
@@ -3161,7 +3161,7 @@ export declare const apTableFormItemMap: {
|
|
|
3161
3161
|
emptyText: string;
|
|
3162
3162
|
}> & Omit<Readonly< ApFieldTreeSelectProps> & Readonly<{
|
|
3163
3163
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
3164
|
-
}>, "blur" | "focus" | "request" | ("mode" | "open" | "multiple" | "disabled" | "bordered" | "
|
|
3164
|
+
}>, "blur" | "focus" | "request" | ("mode" | "open" | "multiple" | "disabled" | "bordered" | "loading" | "autofocus" | "virtual" | "dropdownMatchSelectWidth" | "allowClear" | "defaultOpen" | "showSearch" | "showArrow" | "autoClearSearchValue" | "labelInValue" | "treeCheckable" | "treeDefaultExpandAll" | "treeCheckStrictly" | "emptyText")> & ShallowUnwrapRef<{
|
|
3165
3165
|
blur: () => void;
|
|
3166
3166
|
focus: () => void;
|
|
3167
3167
|
request: (currentNode?: LegacyDataNode, clear?: boolean) => Promise<void>;
|
|
@@ -3205,12 +3205,12 @@ export declare const apTableFormItemMap: {
|
|
|
3205
3205
|
request: (currentNode?: LegacyDataNode, clear?: boolean) => void;
|
|
3206
3206
|
}, {}, {}, {}, {
|
|
3207
3207
|
disabled: boolean;
|
|
3208
|
-
field: Omit< ApFieldTreeSelectProps, "value" | "onUpdate:value">;
|
|
3209
|
-
colon: boolean;
|
|
3210
|
-
required: boolean;
|
|
3211
3208
|
hasFeedback: boolean;
|
|
3209
|
+
colon: boolean;
|
|
3212
3210
|
autoLink: boolean;
|
|
3211
|
+
required: boolean;
|
|
3213
3212
|
validateFirst: boolean;
|
|
3213
|
+
field: Omit< ApFieldTreeSelectProps, "value" | "onUpdate:value">;
|
|
3214
3214
|
}>;
|
|
3215
3215
|
__isFragment?: never;
|
|
3216
3216
|
__isTeleport?: never;
|
|
@@ -3221,12 +3221,12 @@ export declare const apTableFormItemMap: {
|
|
|
3221
3221
|
request: (currentNode?: LegacyDataNode, clear?: boolean) => void;
|
|
3222
3222
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
3223
3223
|
disabled: boolean;
|
|
3224
|
-
field: Omit< ApFieldTreeSelectProps, "value" | "onUpdate:value">;
|
|
3225
|
-
colon: boolean;
|
|
3226
|
-
required: boolean;
|
|
3227
3224
|
hasFeedback: boolean;
|
|
3225
|
+
colon: boolean;
|
|
3228
3226
|
autoLink: boolean;
|
|
3227
|
+
required: boolean;
|
|
3229
3228
|
validateFirst: boolean;
|
|
3229
|
+
field: Omit< ApFieldTreeSelectProps, "value" | "onUpdate:value">;
|
|
3230
3230
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
3231
3231
|
$slots: Readonly<{
|
|
3232
3232
|
title?: any;
|
|
@@ -4055,13 +4055,13 @@ export declare const apTableRenderItemMap: {
|
|
|
4055
4055
|
multiple: boolean;
|
|
4056
4056
|
disabled: boolean;
|
|
4057
4057
|
bordered: boolean;
|
|
4058
|
-
virtual: boolean;
|
|
4059
|
-
showSearch: boolean;
|
|
4060
4058
|
loading: boolean;
|
|
4061
4059
|
autofocus: boolean;
|
|
4060
|
+
virtual: boolean;
|
|
4062
4061
|
lazy: boolean;
|
|
4063
4062
|
allowClear: boolean;
|
|
4064
4063
|
defaultOpen: boolean;
|
|
4064
|
+
showSearch: boolean;
|
|
4065
4065
|
showArrow: boolean;
|
|
4066
4066
|
autoClearSearchValue: boolean;
|
|
4067
4067
|
defaultActiveFirstOption: boolean;
|
|
@@ -4493,13 +4493,13 @@ export declare const apTableRenderItemMap: {
|
|
|
4493
4493
|
multiple: boolean;
|
|
4494
4494
|
disabled: boolean;
|
|
4495
4495
|
bordered: boolean;
|
|
4496
|
-
virtual: boolean;
|
|
4497
|
-
showSearch: boolean;
|
|
4498
4496
|
loading: boolean;
|
|
4499
4497
|
autofocus: boolean;
|
|
4498
|
+
virtual: boolean;
|
|
4500
4499
|
lazy: boolean;
|
|
4501
4500
|
allowClear: boolean;
|
|
4502
4501
|
defaultOpen: boolean;
|
|
4502
|
+
showSearch: boolean;
|
|
4503
4503
|
showArrow: boolean;
|
|
4504
4504
|
autoClearSearchValue: boolean;
|
|
4505
4505
|
defaultActiveFirstOption: boolean;
|
|
@@ -4526,13 +4526,13 @@ export declare const apTableRenderItemMap: {
|
|
|
4526
4526
|
multiple: boolean;
|
|
4527
4527
|
disabled: boolean;
|
|
4528
4528
|
bordered: boolean;
|
|
4529
|
-
virtual: boolean;
|
|
4530
|
-
showSearch: boolean;
|
|
4531
4529
|
loading: boolean;
|
|
4532
4530
|
autofocus: boolean;
|
|
4531
|
+
virtual: boolean;
|
|
4533
4532
|
lazy: boolean;
|
|
4534
4533
|
allowClear: boolean;
|
|
4535
4534
|
defaultOpen: boolean;
|
|
4535
|
+
showSearch: boolean;
|
|
4536
4536
|
showArrow: boolean;
|
|
4537
4537
|
autoClearSearchValue: boolean;
|
|
4538
4538
|
defaultActiveFirstOption: boolean;
|
|
@@ -5102,13 +5102,13 @@ export declare const apTableRenderItemMap: {
|
|
|
5102
5102
|
multiple: boolean;
|
|
5103
5103
|
disabled: boolean;
|
|
5104
5104
|
bordered: boolean;
|
|
5105
|
-
virtual: boolean;
|
|
5106
|
-
dropdownMatchSelectWidth: number | boolean;
|
|
5107
|
-
showSearch: boolean;
|
|
5108
5105
|
loading: boolean;
|
|
5109
5106
|
autofocus: boolean;
|
|
5107
|
+
virtual: boolean;
|
|
5108
|
+
dropdownMatchSelectWidth: number | boolean;
|
|
5110
5109
|
allowClear: boolean;
|
|
5111
5110
|
defaultOpen: boolean;
|
|
5111
|
+
showSearch: boolean;
|
|
5112
5112
|
showArrow: boolean;
|
|
5113
5113
|
autoClearSearchValue: boolean;
|
|
5114
5114
|
labelInValue: boolean;
|
|
@@ -5672,13 +5672,13 @@ export declare const apTableRenderItemMap: {
|
|
|
5672
5672
|
multiple: boolean;
|
|
5673
5673
|
disabled: boolean;
|
|
5674
5674
|
bordered: boolean;
|
|
5675
|
-
virtual: boolean;
|
|
5676
|
-
dropdownMatchSelectWidth: number | boolean;
|
|
5677
|
-
showSearch: boolean;
|
|
5678
5675
|
loading: boolean;
|
|
5679
5676
|
autofocus: boolean;
|
|
5677
|
+
virtual: boolean;
|
|
5678
|
+
dropdownMatchSelectWidth: number | boolean;
|
|
5680
5679
|
allowClear: boolean;
|
|
5681
5680
|
defaultOpen: boolean;
|
|
5681
|
+
showSearch: boolean;
|
|
5682
5682
|
showArrow: boolean;
|
|
5683
5683
|
autoClearSearchValue: boolean;
|
|
5684
5684
|
labelInValue: boolean;
|
|
@@ -5704,13 +5704,13 @@ export declare const apTableRenderItemMap: {
|
|
|
5704
5704
|
multiple: boolean;
|
|
5705
5705
|
disabled: boolean;
|
|
5706
5706
|
bordered: boolean;
|
|
5707
|
-
virtual: boolean;
|
|
5708
|
-
dropdownMatchSelectWidth: number | boolean;
|
|
5709
|
-
showSearch: boolean;
|
|
5710
5707
|
loading: boolean;
|
|
5711
5708
|
autofocus: boolean;
|
|
5709
|
+
virtual: boolean;
|
|
5710
|
+
dropdownMatchSelectWidth: number | boolean;
|
|
5712
5711
|
allowClear: boolean;
|
|
5713
5712
|
defaultOpen: boolean;
|
|
5713
|
+
showSearch: boolean;
|
|
5714
5714
|
showArrow: boolean;
|
|
5715
5715
|
autoClearSearchValue: boolean;
|
|
5716
5716
|
labelInValue: boolean;
|