@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
package/es/index.mjs
CHANGED
|
@@ -7,11 +7,11 @@ import { keysOf as c, provideGlobalConfig as F, useGlobalConfig as I } from "./s
|
|
|
7
7
|
import { buildLocaleContext as S, buildTranslator as b, localeContextKey as C, translate as D, useLocale as g } from "./src/config-provider/hooks/use-locale.mjs";
|
|
8
8
|
import { defaultNamespace as h, namespaceContextKey as E, useGetDerivedNamespace as P, useNamespace as R } from "./src/config-provider/hooks/use-namespace.mjs";
|
|
9
9
|
import { ConfigProvider as M, globalConfigCached as N } from "./src/config-provider/config-provider.mjs";
|
|
10
|
-
import { APConfigProvider as
|
|
10
|
+
import { APConfigProvider as y } from "./src/config-provider/index.mjs";
|
|
11
11
|
import { ApFormItemText as v } from "./src/ap-form/items/text/index.mjs";
|
|
12
12
|
import { default as O } from "./src/ap-form/items/text-area/index.vue.mjs";
|
|
13
13
|
import { default as U } from "./src/ap-form/items/number/index.vue.mjs";
|
|
14
|
-
import { default as
|
|
14
|
+
import { default as _ } from "./src/ap-form/items/date/index.vue.mjs";
|
|
15
15
|
import { default as W } from "./src/ap-form/items/date-range/index.vue.mjs";
|
|
16
16
|
import { default as $ } from "./src/ap-form/items/radio/index.vue.mjs";
|
|
17
17
|
import { default as q } from "./src/ap-form/items/select/index.vue.mjs";
|
|
@@ -34,11 +34,11 @@ import { default as he } from "./src/ap-form/provider/index.vue.mjs";
|
|
|
34
34
|
import { ApField as Pe } from "./src/ap-field/index.mjs";
|
|
35
35
|
import { ApFieldText as Le } from "./src/ap-field/text/index.mjs";
|
|
36
36
|
import { default as Ne } from "./src/ap-field/checkbox/index.vue.mjs";
|
|
37
|
-
import { default as
|
|
37
|
+
import { default as ye } from "./src/ap-field/date/index.vue.mjs";
|
|
38
38
|
import { default as ve } from "./src/ap-field/number/index.vue.mjs";
|
|
39
39
|
import { default as Oe } from "./src/ap-field/radio/index.vue.mjs";
|
|
40
40
|
import { default as Ue } from "./src/ap-field/switch/index.vue.mjs";
|
|
41
|
-
import { default as
|
|
41
|
+
import { default as _e } from "./src/ap-field/text-area/index.vue.mjs";
|
|
42
42
|
import { default as We } from "./src/ap-field/date-range/index.vue.mjs";
|
|
43
43
|
import { default as $e } from "./src/ap-field/select/index.vue.mjs";
|
|
44
44
|
import { default as qe } from "./src/ap-field/text/password.vue.mjs";
|
|
@@ -59,12 +59,12 @@ import { default as Go } from "./src/ap-tag/ap-tag.vue.mjs";
|
|
|
59
59
|
import { default as Eo } from "./src/ap-tag/ap-tag-group.vue.mjs";
|
|
60
60
|
import { default as Ro } from "./src/ap-info-layout/ApInfoLayout.vue.mjs";
|
|
61
61
|
import { NeedNameKeyDefault as Mo } from "./src/ap-upload/apUploadTypes.mjs";
|
|
62
|
-
import { default as
|
|
62
|
+
import { default as wo } from "./src/ap-upload/apUpload.vue.mjs";
|
|
63
63
|
import { ApDownLoadNeedNameKeyDefault as ko } from "./src/ap-download/interface.mjs";
|
|
64
64
|
import { default as Bo } from "./src/ap-download/ap-download.vue.mjs";
|
|
65
65
|
import { CheckCard as Ko } from "./src/check-card/index.mjs";
|
|
66
|
-
import { default as
|
|
67
|
-
import { ApModal as
|
|
66
|
+
import { default as Vo } from "./src/check-card/group.vue.mjs";
|
|
67
|
+
import { ApModal as zo } from "./src/ap-modal/index.mjs";
|
|
68
68
|
import { default as Ho } from "./src/ap-list/index.vue.mjs";
|
|
69
69
|
import { default as jo } from "./src/ap-button/ap-button.vue.mjs";
|
|
70
70
|
import { default as Jo } from "./src/ap-button/ap-action-button.vue.mjs";
|
|
@@ -86,11 +86,11 @@ import { handleExportDownload as Gr } from "./src/business/ap-export-group/handl
|
|
|
86
86
|
import { convertExportField as Er } from "./src/business/ap-export-group/convertExportField.mjs";
|
|
87
87
|
import { ApImage as Rr } from "./src/business/ap-image/index.mjs";
|
|
88
88
|
import { ApInputRadio as Mr } from "./src/business/ap-input-radio/index.mjs";
|
|
89
|
-
import { ApLabel as
|
|
89
|
+
import { ApLabel as wr, ApLabelGroup as yr } from "./src/business/ap-label/index.mjs";
|
|
90
90
|
import { locales as vr } from "./src/business/ap-ladder/interface.mjs";
|
|
91
91
|
import { ApLadder as Or } from "./src/business/ap-ladder/index.mjs";
|
|
92
92
|
import { ApSelectLayout as Ur } from "./src/business/ap-select-layout/index.mjs";
|
|
93
|
-
import { ApStatus as
|
|
93
|
+
import { ApStatus as _r, ApStatusGroup as zr } from "./src/business/ap-status/index.mjs";
|
|
94
94
|
import { ApTitle as Hr } from "./src/business/ap-title/index.mjs";
|
|
95
95
|
import { usePageListApTable as jr } from "./src/business/hooks/usePageListApTable.mjs";
|
|
96
96
|
import { useTableRefresh as Jr } from "./src/business/hooks/useTableRefresh.mjs";
|
|
@@ -106,32 +106,33 @@ import { default as It } from "./src/business/batch-input-group/index.vue.mjs";
|
|
|
106
106
|
import { default as St } from "./src/business/batch-input-group/form-item.vue.mjs";
|
|
107
107
|
import { ApSizeInput as Ct } from "./src/business/ap-size-input/index.mjs";
|
|
108
108
|
import { ApProductInfo as gt } from "./src/business/ap-product-info/index.mjs";
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import { default as Nt } from "./src/editable-table/
|
|
113
|
-
import { default as
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import { default as Ut } from "./src/scroll-bar/
|
|
117
|
-
import { default as
|
|
118
|
-
import { default as Wt } from "./src/
|
|
119
|
-
import { default as $t } from "./src/
|
|
120
|
-
import { default as qt } from "./src/
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import { default as ep } from "./src/ap-grid/
|
|
124
|
-
import { default as rp } from "./src/ap-grid/editable/
|
|
125
|
-
import { default as pp } from "./src/
|
|
126
|
-
import { default as fp } from "./src/text/
|
|
127
|
-
import { default as lp } from "./src/
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
109
|
+
import { ApView as ht } from "./src/business/ap-view/index.mjs";
|
|
110
|
+
import { useTablePaging as Pt } from "./src/ap-table/hooks/use-table-paging.mjs";
|
|
111
|
+
import { ApTable as Lt } from "./src/ap-table/index.mjs";
|
|
112
|
+
import { default as Nt } from "./src/editable-table/index.vue.mjs";
|
|
113
|
+
import { default as yt } from "./src/editable-table/form-item.vue.mjs";
|
|
114
|
+
import { default as vt } from "./src/ap-descriptions/ap-descriptions.vue.mjs";
|
|
115
|
+
import { ensureRangeValue as Ot } from "./src/scroll-bar/utils/index.mjs";
|
|
116
|
+
import { default as Ut } from "./src/scroll-bar/index.vue.mjs";
|
|
117
|
+
import { default as _t } from "./src/scroll-bar/internal.vue.mjs";
|
|
118
|
+
import { default as Wt } from "./src/scroll-view/index.vue.mjs";
|
|
119
|
+
import { default as $t } from "./src/portal/index.vue.mjs";
|
|
120
|
+
import { default as qt } from "./src/full-screen/index.vue.mjs";
|
|
121
|
+
import { default as Qt } from "./src/resize-observer/index.vue.mjs";
|
|
122
|
+
import { ROW_SELECTION_FIELD as Yt } from "./src/ap-grid/constants.mjs";
|
|
123
|
+
import { default as ep } from "./src/ap-grid/index.vue.mjs";
|
|
124
|
+
import { default as rp } from "./src/ap-grid/editable/index.vue.mjs";
|
|
125
|
+
import { default as pp } from "./src/ap-grid/editable/form-item.vue.mjs";
|
|
126
|
+
import { default as fp } from "./src/text/index.vue.mjs";
|
|
127
|
+
import { default as lp } from "./src/text/group.vue.mjs";
|
|
128
|
+
import { default as dp } from "./src/mask/index.vue.mjs";
|
|
129
|
+
import { Splitter as sp } from "./src/splitter/index.mjs";
|
|
130
|
+
import { useMessage as ip } from "./src/hooks/useMessage.mjs";
|
|
131
|
+
import { useControllableValue as cp } from "./src/hooks/useControllableValue.mjs";
|
|
132
|
+
import { useManualRef as Ip } from "./src/hooks/useManualRef.mjs";
|
|
133
|
+
import { useThrottleRef as Sp } from "./src/hooks/useThrottleRef.mjs";
|
|
134
|
+
import { useFullScreen as Cp } from "./src/hooks/useFullScreen.mjs";
|
|
135
|
+
import { useResize as gp } from "./src/hooks/useResize.mjs";
|
|
135
136
|
const a = {
|
|
136
137
|
install: (r) => {
|
|
137
138
|
for (const t in o) {
|
|
@@ -141,7 +142,7 @@ const a = {
|
|
|
141
142
|
}
|
|
142
143
|
};
|
|
143
144
|
export {
|
|
144
|
-
|
|
145
|
+
y as APConfigProvider,
|
|
145
146
|
Jo as ApActionButton,
|
|
146
147
|
co as ApActionGroup,
|
|
147
148
|
mo as ApActionItem,
|
|
@@ -156,7 +157,7 @@ export {
|
|
|
156
157
|
nr as ApButtonGroup,
|
|
157
158
|
Fr as ApCard,
|
|
158
159
|
Xo as ApConfirmButton,
|
|
159
|
-
|
|
160
|
+
vt as ApDescriptions,
|
|
160
161
|
ko as ApDownLoadNeedNameKeyDefault,
|
|
161
162
|
Bo as ApDownload,
|
|
162
163
|
Zo as ApDrawer,
|
|
@@ -166,7 +167,7 @@ export {
|
|
|
166
167
|
st as ApExtensionSelect,
|
|
167
168
|
Pe as ApField,
|
|
168
169
|
Ne as ApFieldCheckbox,
|
|
169
|
-
|
|
170
|
+
ye as ApFieldDate,
|
|
170
171
|
We as ApFieldDateRange,
|
|
171
172
|
ve as ApFieldNumber,
|
|
172
173
|
qe as ApFieldPassword,
|
|
@@ -177,7 +178,7 @@ export {
|
|
|
177
178
|
Qe as ApFieldSlider,
|
|
178
179
|
Ue as ApFieldSwitch,
|
|
179
180
|
Le as ApFieldText,
|
|
180
|
-
|
|
181
|
+
_e as ApFieldTextArea,
|
|
181
182
|
ro as ApFieldTreeSelect,
|
|
182
183
|
pe as ApForm,
|
|
183
184
|
Ce as ApFormControlRender,
|
|
@@ -186,7 +187,7 @@ export {
|
|
|
186
187
|
fe as ApFormItem,
|
|
187
188
|
St as ApFormItemBatchInput,
|
|
188
189
|
Y as ApFormItemCheckbox,
|
|
189
|
-
|
|
190
|
+
_ as ApFormItemDate,
|
|
190
191
|
W as ApFormItemDateRange,
|
|
191
192
|
le as ApFormItemGroup,
|
|
192
193
|
U as ApFormItemNumber,
|
|
@@ -203,55 +204,56 @@ export {
|
|
|
203
204
|
he as ApFormProvider,
|
|
204
205
|
se as ApFormSearchForm,
|
|
205
206
|
Ie as ApFormSet,
|
|
206
|
-
|
|
207
|
+
ep as ApGrid,
|
|
207
208
|
At as ApGroupSearch,
|
|
208
209
|
Rr as ApImage,
|
|
209
210
|
Ro as ApInfoLayout,
|
|
210
211
|
Mr as ApInputRadio,
|
|
211
|
-
|
|
212
|
-
|
|
212
|
+
wr as ApLabel,
|
|
213
|
+
yr as ApLabelGroup,
|
|
213
214
|
Or as ApLadder,
|
|
214
215
|
Ho as ApList,
|
|
215
|
-
|
|
216
|
+
zo as ApModal,
|
|
216
217
|
lt as ApNeedNameKeyDefault,
|
|
217
218
|
it as ApPopoverSelect,
|
|
218
219
|
gt as ApProductInfo,
|
|
219
220
|
Ur as ApSelectLayout,
|
|
220
221
|
Ct as ApSizeInput,
|
|
221
|
-
|
|
222
|
-
|
|
222
|
+
_r as ApStatus,
|
|
223
|
+
zr as ApStatusGroup,
|
|
223
224
|
ft as ApSummary,
|
|
224
|
-
|
|
225
|
+
Lt as ApTable,
|
|
225
226
|
tr as ApTableModal,
|
|
226
227
|
Go as ApTag,
|
|
227
228
|
Eo as ApTagGroup,
|
|
228
|
-
|
|
229
|
-
|
|
229
|
+
fp as ApText,
|
|
230
|
+
lp as ApTextGroup,
|
|
230
231
|
Hr as ApTitle,
|
|
231
232
|
or as ApTransformDataHelper,
|
|
232
|
-
|
|
233
|
+
wo as ApUpload,
|
|
233
234
|
ct as ApUploadSingle,
|
|
235
|
+
ht as ApView,
|
|
234
236
|
It as BatchInputGroup,
|
|
235
237
|
Ko as CheckCard,
|
|
236
|
-
|
|
238
|
+
Vo as CheckCardGroup,
|
|
237
239
|
M as ConfigProvider,
|
|
238
240
|
s as DEFAULT_NAMESPACE,
|
|
239
241
|
A as DEFAULT_UIMODE,
|
|
240
242
|
Io as DictCode,
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
243
|
+
rp as EditableGrid,
|
|
244
|
+
pp as EditableGridFormItem,
|
|
245
|
+
Nt as EditableTable,
|
|
246
|
+
yt as EditableTableFormItem,
|
|
247
|
+
qt as FullScreen,
|
|
248
|
+
_t as InternalScrollBar,
|
|
249
|
+
dp as Mask,
|
|
248
250
|
Mo as NeedNameKeyDefault,
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
251
|
+
$t as Portal,
|
|
252
|
+
Yt as ROW_SELECTION_FIELD,
|
|
253
|
+
Qt as ResizeObserver,
|
|
254
|
+
Ut as ScrollBar,
|
|
255
|
+
Wt as ScrollView,
|
|
256
|
+
sp as Splitter,
|
|
255
257
|
Do as WorkOrderModal,
|
|
256
258
|
po as adminToken,
|
|
257
259
|
ao as aplusToken,
|
|
@@ -264,7 +266,7 @@ export {
|
|
|
264
266
|
bo as createWorkOrderModal,
|
|
265
267
|
a as default,
|
|
266
268
|
h as defaultNamespace,
|
|
267
|
-
|
|
269
|
+
Ot as ensureRangeValue,
|
|
268
270
|
rt as flattenColumns,
|
|
269
271
|
tt as formatDataIndex,
|
|
270
272
|
pt as formatNumber,
|
|
@@ -278,21 +280,21 @@ export {
|
|
|
278
280
|
l as pathMap,
|
|
279
281
|
F as provideGlobalConfig,
|
|
280
282
|
D as translate,
|
|
281
|
-
|
|
282
|
-
|
|
283
|
+
cp as useControllableValue,
|
|
284
|
+
Cp as useFullScreen,
|
|
283
285
|
P as useGetDerivedNamespace,
|
|
284
286
|
I as useGlobalConfig,
|
|
285
287
|
Zr as useGridRefresh,
|
|
286
288
|
g as useLocale,
|
|
287
|
-
|
|
288
|
-
|
|
289
|
+
Ip as useManualRef,
|
|
290
|
+
ip as useMessage,
|
|
289
291
|
R as useNamespace,
|
|
290
292
|
Xr as usePageListApGrid,
|
|
291
293
|
jr as usePageListApTable,
|
|
292
|
-
|
|
294
|
+
gp as useResize,
|
|
293
295
|
ar as useTableModal,
|
|
294
|
-
|
|
296
|
+
Pt as useTablePaging,
|
|
295
297
|
Jr as useTableRefresh,
|
|
296
298
|
mr as useTableSelectModal,
|
|
297
|
-
|
|
299
|
+
Sp as useThrottleRef
|
|
298
300
|
};
|
|
@@ -450,13 +450,13 @@ declare const __VLS_component: DefineComponent<ApFieldSelectProps, {
|
|
|
450
450
|
multiple: boolean;
|
|
451
451
|
disabled: boolean;
|
|
452
452
|
bordered: boolean;
|
|
453
|
-
virtual: boolean;
|
|
454
|
-
showSearch: boolean;
|
|
455
453
|
loading: boolean;
|
|
456
454
|
autofocus: boolean;
|
|
455
|
+
virtual: boolean;
|
|
457
456
|
lazy: boolean;
|
|
458
457
|
allowClear: boolean;
|
|
459
458
|
defaultOpen: boolean;
|
|
459
|
+
showSearch: boolean;
|
|
460
460
|
showArrow: boolean;
|
|
461
461
|
autoClearSearchValue: boolean;
|
|
462
462
|
defaultActiveFirstOption: boolean;
|
|
@@ -594,13 +594,13 @@ declare const __VLS_component: DefineComponent<ApFieldTreeSelectProps, {
|
|
|
594
594
|
multiple: boolean;
|
|
595
595
|
disabled: boolean;
|
|
596
596
|
bordered: boolean;
|
|
597
|
-
virtual: boolean;
|
|
598
|
-
dropdownMatchSelectWidth: number | boolean;
|
|
599
|
-
showSearch: boolean;
|
|
600
597
|
loading: boolean;
|
|
601
598
|
autofocus: boolean;
|
|
599
|
+
virtual: boolean;
|
|
600
|
+
dropdownMatchSelectWidth: number | boolean;
|
|
602
601
|
allowClear: boolean;
|
|
603
602
|
defaultOpen: boolean;
|
|
603
|
+
showSearch: boolean;
|
|
604
604
|
showArrow: boolean;
|
|
605
605
|
autoClearSearchValue: boolean;
|
|
606
606
|
labelInValue: boolean;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ApFormDrawerFormProps, CustomizeResizeType } from '../interface';
|
|
2
2
|
import { VNode, ComponentInternalInstance, ExtractPropTypes, PropType, HTMLAttributes, VNodeProps, AllowedComponentProps, ComponentCustomProps, CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, Slot, ComponentPublicInstance, ComponentOptionsBase, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, DefineComponent, CSSProperties } from 'vue';
|
|
3
|
-
import { InternalNamePath, NamePath, ValidateOptions,
|
|
3
|
+
import { InternalNamePath, NamePath, ValidateOptions, FormLabelAlign, ValidateMessages, FieldData, ValidateErrorEntity } from '@aplus-frontend/antdv/es/form/interface';
|
|
4
4
|
import { ButtonSize, SizeType } from '@aplus-frontend/antdv/es/button';
|
|
5
|
-
import { RequiredMark } from '@aplus-frontend/antdv/es/form/Form';
|
|
6
5
|
import { ColSize } from '@aplus-frontend/antdv/es/grid';
|
|
7
6
|
import { RuleObject } from '@aplus-frontend/antdv/es/form';
|
|
7
|
+
import { RequiredMark } from '@aplus-frontend/antdv/es/form/Form';
|
|
8
8
|
import { Options } from '../../../node_modules/scroll-into-view-if-needed';
|
|
9
9
|
import { Recordable } from '../../type';
|
|
10
10
|
import { VueTypeDef, VueTypeValidableDef } from '../../../node_modules/vue-types';
|
|
@@ -32,10 +32,6 @@ declare function __VLS_template(): {
|
|
|
32
32
|
readonly layout?: string | undefined;
|
|
33
33
|
readonly disabled?: boolean | undefined;
|
|
34
34
|
readonly prefixCls?: string | undefined;
|
|
35
|
-
readonly name?: string | undefined;
|
|
36
|
-
readonly validateMessages?: ValidateMessages | undefined;
|
|
37
|
-
readonly requiredMark?: "" | RequiredMark | undefined;
|
|
38
|
-
readonly colon?: boolean | undefined;
|
|
39
35
|
readonly labelCol?: (Partial< ExtractPropTypes<{
|
|
40
36
|
span: (StringConstructor | NumberConstructor)[];
|
|
41
37
|
order: (StringConstructor | NumberConstructor)[];
|
|
@@ -102,13 +98,17 @@ declare function __VLS_template(): {
|
|
|
102
98
|
prefixCls: StringConstructor;
|
|
103
99
|
flex: (StringConstructor | NumberConstructor)[];
|
|
104
100
|
}>> & HTMLAttributes) | undefined;
|
|
101
|
+
readonly colon?: boolean | undefined;
|
|
105
102
|
readonly labelAlign?: FormLabelAlign | undefined;
|
|
103
|
+
readonly name?: string | undefined;
|
|
106
104
|
readonly rules?: {
|
|
107
105
|
[k: string]: RuleObject | RuleObject[];
|
|
108
106
|
} | undefined;
|
|
109
107
|
readonly validateTrigger?: string | string[] | undefined;
|
|
110
108
|
readonly labelWrap?: boolean | undefined;
|
|
109
|
+
readonly requiredMark?: "" | RequiredMark | undefined;
|
|
111
110
|
readonly hideRequiredMark?: boolean | undefined;
|
|
111
|
+
readonly validateMessages?: ValidateMessages | undefined;
|
|
112
112
|
readonly validateOnRuleChange?: boolean | undefined;
|
|
113
113
|
readonly scrollToFirstError?: boolean | Options<any> | undefined;
|
|
114
114
|
readonly onFieldsChange?: ((changedFields: FieldData[], allFields: FieldData[]) => void) | undefined;
|
|
@@ -974,10 +974,6 @@ declare const __VLS_component: DefineComponent<ApFormDrawerFormProps, {
|
|
|
974
974
|
readonly layout?: string | undefined;
|
|
975
975
|
readonly disabled?: boolean | undefined;
|
|
976
976
|
readonly prefixCls?: string | undefined;
|
|
977
|
-
readonly name?: string | undefined;
|
|
978
|
-
readonly validateMessages?: ValidateMessages | undefined;
|
|
979
|
-
readonly requiredMark?: "" | RequiredMark | undefined;
|
|
980
|
-
readonly colon?: boolean | undefined;
|
|
981
977
|
readonly labelCol?: (Partial< ExtractPropTypes<{
|
|
982
978
|
span: (StringConstructor | NumberConstructor)[];
|
|
983
979
|
order: (StringConstructor | NumberConstructor)[];
|
|
@@ -1044,13 +1040,17 @@ declare const __VLS_component: DefineComponent<ApFormDrawerFormProps, {
|
|
|
1044
1040
|
prefixCls: StringConstructor;
|
|
1045
1041
|
flex: (StringConstructor | NumberConstructor)[];
|
|
1046
1042
|
}>> & HTMLAttributes) | undefined;
|
|
1043
|
+
readonly colon?: boolean | undefined;
|
|
1047
1044
|
readonly labelAlign?: FormLabelAlign | undefined;
|
|
1045
|
+
readonly name?: string | undefined;
|
|
1048
1046
|
readonly rules?: {
|
|
1049
1047
|
[k: string]: RuleObject | RuleObject[];
|
|
1050
1048
|
} | undefined;
|
|
1051
1049
|
readonly validateTrigger?: string | string[] | undefined;
|
|
1052
1050
|
readonly labelWrap?: boolean | undefined;
|
|
1051
|
+
readonly requiredMark?: "" | RequiredMark | undefined;
|
|
1053
1052
|
readonly hideRequiredMark?: boolean | undefined;
|
|
1053
|
+
readonly validateMessages?: ValidateMessages | undefined;
|
|
1054
1054
|
readonly validateOnRuleChange?: boolean | undefined;
|
|
1055
1055
|
readonly scrollToFirstError?: boolean | Options<any> | undefined;
|
|
1056
1056
|
readonly onFieldsChange?: ((changedFields: FieldData[], allFields: FieldData[]) => void) | undefined;
|
|
@@ -136,6 +136,7 @@ export type ApFormListProps = {
|
|
|
136
136
|
initialValue?: any[];
|
|
137
137
|
transform?: ApFormItemTransformType;
|
|
138
138
|
};
|
|
139
|
+
type AllowCountPerRowType = 1 | 2 | 3 | 4 | 6 | 8 | 12 | 24;
|
|
139
140
|
export type ApFormSearchFormProps = ApFormProps & {
|
|
140
141
|
collapse?: boolean;
|
|
141
142
|
defaultCollapse?: boolean;
|
|
@@ -147,8 +148,37 @@ export type ApFormSearchFormProps = ApFormProps & {
|
|
|
147
148
|
customReset?: boolean;
|
|
148
149
|
extraInAction?: boolean;
|
|
149
150
|
forceExpand?: boolean;
|
|
150
|
-
countPerRow?:
|
|
151
|
+
countPerRow?: AllowCountPerRowType;
|
|
151
152
|
submitLoading?: boolean;
|
|
153
|
+
/**
|
|
154
|
+
* 最大显示的行(超出后将会收起进入更多筛选)
|
|
155
|
+
*/
|
|
156
|
+
maxRows?: number;
|
|
157
|
+
/**
|
|
158
|
+
* 是否可排序
|
|
159
|
+
*/
|
|
160
|
+
sortable?: boolean;
|
|
161
|
+
};
|
|
162
|
+
export type ApFormSearchFormPopoverFilterProps = {
|
|
163
|
+
config: Array<{
|
|
164
|
+
node: VNode;
|
|
165
|
+
key: string;
|
|
166
|
+
span: number;
|
|
167
|
+
}>;
|
|
168
|
+
onSubmit: () => void;
|
|
169
|
+
submitLoading: boolean;
|
|
170
|
+
};
|
|
171
|
+
export type ApFormSearchFormPopoverSorterProps = {
|
|
172
|
+
/**
|
|
173
|
+
* 需要排序的全量节点
|
|
174
|
+
*/
|
|
175
|
+
children: VNode[];
|
|
176
|
+
/**
|
|
177
|
+
* 点击确定
|
|
178
|
+
* @param sortedChildren
|
|
179
|
+
* @returns
|
|
180
|
+
*/
|
|
181
|
+
onClickConfirm: (sortedChildren: VNode[]) => void;
|
|
152
182
|
};
|
|
153
183
|
export type ApFormSearchFormExpose = {
|
|
154
184
|
apForm: ApFormExpose;
|
|
@@ -35,9 +35,6 @@ declare function __VLS_template(): {
|
|
|
35
35
|
readonly help?: any;
|
|
36
36
|
readonly tooltip?: string | undefined;
|
|
37
37
|
readonly prefixCls?: string | undefined;
|
|
38
|
-
readonly name?: string | number | (string | number)[] | undefined;
|
|
39
|
-
readonly colon?: boolean | undefined;
|
|
40
|
-
readonly required?: boolean | undefined;
|
|
41
38
|
readonly htmlFor?: string | undefined;
|
|
42
39
|
readonly extra?: any;
|
|
43
40
|
readonly labelCol?: (Partial< ExtractPropTypes<{
|
|
@@ -106,14 +103,17 @@ declare function __VLS_template(): {
|
|
|
106
103
|
prefixCls: StringConstructor;
|
|
107
104
|
flex: (StringConstructor | NumberConstructor)[];
|
|
108
105
|
}>> & HTMLAttributes) | undefined;
|
|
106
|
+
readonly colon?: boolean | undefined;
|
|
109
107
|
readonly labelAlign?: FormLabelAlign | undefined;
|
|
110
108
|
readonly prop?: string | number | (string | number)[] | undefined;
|
|
109
|
+
readonly name?: string | number | (string | number)[] | undefined;
|
|
111
110
|
readonly rules?: RuleObject | RuleObject[] | undefined;
|
|
111
|
+
readonly required?: boolean | undefined;
|
|
112
112
|
readonly validateFirst?: boolean | undefined;
|
|
113
113
|
readonly validateStatus?: string | undefined;
|
|
114
114
|
readonly validateTrigger?: string | string[] | undefined;
|
|
115
115
|
readonly messageVariables?: Record<string, string> | undefined;
|
|
116
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "hidden" | "
|
|
116
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "hidden" | "hasFeedback" | "colon" | "autoLink" | "required" | "validateFirst" | "noStyle">;
|
|
117
117
|
$attrs: {
|
|
118
118
|
[x: string]: unknown;
|
|
119
119
|
};
|
|
@@ -402,7 +402,7 @@ declare function __VLS_template(): {
|
|
|
402
402
|
hidden: BooleanConstructor;
|
|
403
403
|
noStyle: BooleanConstructor;
|
|
404
404
|
tooltip: StringConstructor;
|
|
405
|
-
}>> & Readonly<{}>, "hidden" | "
|
|
405
|
+
}>> & Readonly<{}>, "hidden" | "hasFeedback" | "colon" | "autoLink" | "required" | "validateFirst" | "noStyle"> & ShallowUnwrapRef<() => any> & {} & ComponentCustomProperties & {} & {
|
|
406
406
|
$: ComponentInternalInstance;
|
|
407
407
|
$data: {};
|
|
408
408
|
$props: Partial<{
|
|
@@ -422,9 +422,6 @@ declare function __VLS_template(): {
|
|
|
422
422
|
readonly help?: any;
|
|
423
423
|
readonly tooltip?: string | undefined;
|
|
424
424
|
readonly prefixCls?: string | undefined;
|
|
425
|
-
readonly name?: string | number | (string | number)[] | undefined;
|
|
426
|
-
readonly colon?: boolean | undefined;
|
|
427
|
-
readonly required?: boolean | undefined;
|
|
428
425
|
readonly htmlFor?: string | undefined;
|
|
429
426
|
readonly extra?: any;
|
|
430
427
|
readonly labelCol?: (Partial< ExtractPropTypes<{
|
|
@@ -493,14 +490,17 @@ declare function __VLS_template(): {
|
|
|
493
490
|
prefixCls: StringConstructor;
|
|
494
491
|
flex: (StringConstructor | NumberConstructor)[];
|
|
495
492
|
}>> & HTMLAttributes) | undefined;
|
|
493
|
+
readonly colon?: boolean | undefined;
|
|
496
494
|
readonly labelAlign?: FormLabelAlign | undefined;
|
|
497
495
|
readonly prop?: string | number | (string | number)[] | undefined;
|
|
496
|
+
readonly name?: string | number | (string | number)[] | undefined;
|
|
498
497
|
readonly rules?: RuleObject | RuleObject[] | undefined;
|
|
498
|
+
readonly required?: boolean | undefined;
|
|
499
499
|
readonly validateFirst?: boolean | undefined;
|
|
500
500
|
readonly validateStatus?: string | undefined;
|
|
501
501
|
readonly validateTrigger?: string | string[] | undefined;
|
|
502
502
|
readonly messageVariables?: Record<string, string> | undefined;
|
|
503
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "hidden" | "
|
|
503
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "hidden" | "hasFeedback" | "colon" | "autoLink" | "required" | "validateFirst" | "noStyle">;
|
|
504
504
|
$attrs: {
|
|
505
505
|
[x: string]: unknown;
|
|
506
506
|
};
|
|
@@ -789,7 +789,7 @@ declare function __VLS_template(): {
|
|
|
789
789
|
hidden: BooleanConstructor;
|
|
790
790
|
noStyle: BooleanConstructor;
|
|
791
791
|
tooltip: StringConstructor;
|
|
792
|
-
}>> & Readonly<{}>, "hidden" | "
|
|
792
|
+
}>> & Readonly<{}>, "hidden" | "hasFeedback" | "colon" | "autoLink" | "required" | "validateFirst" | "noStyle"> & ShallowUnwrapRef<() => any>) | null;
|
|
793
793
|
};
|
|
794
794
|
rootEl: any;
|
|
795
795
|
};
|
|
@@ -802,10 +802,10 @@ declare const __VLS_component: DefineComponent<ApFormItemProps, {
|
|
|
802
802
|
getFieldValue: typeof getFieldValue;
|
|
803
803
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ApFormItemProps> & Readonly<{}>, {
|
|
804
804
|
bordered: boolean;
|
|
805
|
-
colon: boolean;
|
|
806
|
-
required: boolean;
|
|
807
805
|
hasFeedback: boolean;
|
|
806
|
+
colon: boolean;
|
|
808
807
|
autoLink: boolean;
|
|
808
|
+
required: boolean;
|
|
809
809
|
validateFirst: boolean;
|
|
810
810
|
valuePropName: string;
|
|
811
811
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
@@ -829,9 +829,6 @@ declare const __VLS_component: DefineComponent<ApFormItemProps, {
|
|
|
829
829
|
readonly help?: any;
|
|
830
830
|
readonly tooltip?: string | undefined;
|
|
831
831
|
readonly prefixCls?: string | undefined;
|
|
832
|
-
readonly name?: string | number | (string | number)[] | undefined;
|
|
833
|
-
readonly colon?: boolean | undefined;
|
|
834
|
-
readonly required?: boolean | undefined;
|
|
835
832
|
readonly htmlFor?: string | undefined;
|
|
836
833
|
readonly extra?: any;
|
|
837
834
|
readonly labelCol?: (Partial< ExtractPropTypes<{
|
|
@@ -900,14 +897,17 @@ declare const __VLS_component: DefineComponent<ApFormItemProps, {
|
|
|
900
897
|
prefixCls: StringConstructor;
|
|
901
898
|
flex: (StringConstructor | NumberConstructor)[];
|
|
902
899
|
}>> & HTMLAttributes) | undefined;
|
|
900
|
+
readonly colon?: boolean | undefined;
|
|
903
901
|
readonly labelAlign?: FormLabelAlign | undefined;
|
|
904
902
|
readonly prop?: string | number | (string | number)[] | undefined;
|
|
903
|
+
readonly name?: string | number | (string | number)[] | undefined;
|
|
905
904
|
readonly rules?: RuleObject | RuleObject[] | undefined;
|
|
905
|
+
readonly required?: boolean | undefined;
|
|
906
906
|
readonly validateFirst?: boolean | undefined;
|
|
907
907
|
readonly validateStatus?: string | undefined;
|
|
908
908
|
readonly validateTrigger?: string | string[] | undefined;
|
|
909
909
|
readonly messageVariables?: Record<string, string> | undefined;
|
|
910
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "hidden" | "
|
|
910
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "hidden" | "hasFeedback" | "colon" | "autoLink" | "required" | "validateFirst" | "noStyle">;
|
|
911
911
|
$attrs: {
|
|
912
912
|
[x: string]: unknown;
|
|
913
913
|
};
|
|
@@ -1196,7 +1196,7 @@ declare const __VLS_component: DefineComponent<ApFormItemProps, {
|
|
|
1196
1196
|
hidden: BooleanConstructor;
|
|
1197
1197
|
noStyle: BooleanConstructor;
|
|
1198
1198
|
tooltip: StringConstructor;
|
|
1199
|
-
}>> & Readonly<{}>, "hidden" | "
|
|
1199
|
+
}>> & Readonly<{}>, "hidden" | "hasFeedback" | "colon" | "autoLink" | "required" | "validateFirst" | "noStyle"> & ShallowUnwrapRef<() => any> & {} & ComponentCustomProperties & {} & {
|
|
1200
1200
|
$: ComponentInternalInstance;
|
|
1201
1201
|
$data: {};
|
|
1202
1202
|
$props: Partial<{
|
|
@@ -1216,9 +1216,6 @@ declare const __VLS_component: DefineComponent<ApFormItemProps, {
|
|
|
1216
1216
|
readonly help?: any;
|
|
1217
1217
|
readonly tooltip?: string | undefined;
|
|
1218
1218
|
readonly prefixCls?: string | undefined;
|
|
1219
|
-
readonly name?: string | number | (string | number)[] | undefined;
|
|
1220
|
-
readonly colon?: boolean | undefined;
|
|
1221
|
-
readonly required?: boolean | undefined;
|
|
1222
1219
|
readonly htmlFor?: string | undefined;
|
|
1223
1220
|
readonly extra?: any;
|
|
1224
1221
|
readonly labelCol?: (Partial< ExtractPropTypes<{
|
|
@@ -1287,14 +1284,17 @@ declare const __VLS_component: DefineComponent<ApFormItemProps, {
|
|
|
1287
1284
|
prefixCls: StringConstructor;
|
|
1288
1285
|
flex: (StringConstructor | NumberConstructor)[];
|
|
1289
1286
|
}>> & HTMLAttributes) | undefined;
|
|
1287
|
+
readonly colon?: boolean | undefined;
|
|
1290
1288
|
readonly labelAlign?: FormLabelAlign | undefined;
|
|
1291
1289
|
readonly prop?: string | number | (string | number)[] | undefined;
|
|
1290
|
+
readonly name?: string | number | (string | number)[] | undefined;
|
|
1292
1291
|
readonly rules?: RuleObject | RuleObject[] | undefined;
|
|
1292
|
+
readonly required?: boolean | undefined;
|
|
1293
1293
|
readonly validateFirst?: boolean | undefined;
|
|
1294
1294
|
readonly validateStatus?: string | undefined;
|
|
1295
1295
|
readonly validateTrigger?: string | string[] | undefined;
|
|
1296
1296
|
readonly messageVariables?: Record<string, string> | undefined;
|
|
1297
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "hidden" | "
|
|
1297
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "hidden" | "hasFeedback" | "colon" | "autoLink" | "required" | "validateFirst" | "noStyle">;
|
|
1298
1298
|
$attrs: {
|
|
1299
1299
|
[x: string]: unknown;
|
|
1300
1300
|
};
|
|
@@ -1583,7 +1583,7 @@ declare const __VLS_component: DefineComponent<ApFormItemProps, {
|
|
|
1583
1583
|
hidden: BooleanConstructor;
|
|
1584
1584
|
noStyle: BooleanConstructor;
|
|
1585
1585
|
tooltip: StringConstructor;
|
|
1586
|
-
}>> & Readonly<{}>, "hidden" | "
|
|
1586
|
+
}>> & Readonly<{}>, "hidden" | "hasFeedback" | "colon" | "autoLink" | "required" | "validateFirst" | "noStyle"> & ShallowUnwrapRef<() => any>) | null;
|
|
1587
1587
|
}, any>;
|
|
1588
1588
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
1589
1589
|
export default _default;
|
|
@@ -12,12 +12,12 @@ declare function __VLS_template(): {
|
|
|
12
12
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
13
|
declare const __VLS_component: DefineComponent<ApFormItemCheckboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ApFormItemCheckboxProps> & Readonly<{}>, {
|
|
14
14
|
disabled: boolean;
|
|
15
|
-
field: Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">;
|
|
16
|
-
colon: boolean;
|
|
17
|
-
required: boolean;
|
|
18
15
|
hasFeedback: boolean;
|
|
16
|
+
colon: boolean;
|
|
19
17
|
autoLink: boolean;
|
|
18
|
+
required: boolean;
|
|
20
19
|
validateFirst: boolean;
|
|
20
|
+
field: Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">;
|
|
21
21
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
22
22
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
23
23
|
export default _default;
|
|
@@ -35,12 +35,12 @@ declare function __VLS_template(): {
|
|
|
35
35
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
36
36
|
declare const __VLS_component: DefineComponent<ApFormItemDateProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ApFormItemDateProps> & Readonly<{}>, {
|
|
37
37
|
disabled: boolean;
|
|
38
|
-
field: Omit< ApFieldDateProps, "value" | "onUpdate:value">;
|
|
39
|
-
colon: boolean;
|
|
40
|
-
required: boolean;
|
|
41
38
|
hasFeedback: boolean;
|
|
39
|
+
colon: boolean;
|
|
42
40
|
autoLink: boolean;
|
|
41
|
+
required: boolean;
|
|
43
42
|
validateFirst: boolean;
|
|
43
|
+
field: Omit< ApFieldDateProps, "value" | "onUpdate:value">;
|
|
44
44
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
45
45
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
46
46
|
export default _default;
|
|
@@ -33,12 +33,12 @@ declare function __VLS_template(): {
|
|
|
33
33
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
34
34
|
declare const __VLS_component: DefineComponent<ApFormItemDateRangeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ApFormItemDateRangeProps> & Readonly<{}>, {
|
|
35
35
|
disabled: boolean;
|
|
36
|
-
field: Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">;
|
|
37
|
-
colon: boolean;
|
|
38
|
-
required: boolean;
|
|
39
36
|
hasFeedback: boolean;
|
|
37
|
+
colon: boolean;
|
|
40
38
|
autoLink: boolean;
|
|
39
|
+
required: boolean;
|
|
41
40
|
validateFirst: boolean;
|
|
41
|
+
field: Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">;
|
|
42
42
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
43
43
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
44
44
|
export default _default;
|