@aplus-frontend/ui 0.6.0-beta.17 → 0.6.0-beta.19
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 +118 -109
- package/es/src/ap-field/date-range/index.vue.mjs +8 -7
- package/es/src/ap-field/number/index.vue.d.ts +2 -4
- package/es/src/ap-field/radio/index.vue.d.ts +2 -4
- package/es/src/ap-field/rate/index.vue.d.ts +2 -4
- package/es/src/ap-field/select/index.vue.d.ts +3 -6
- package/es/src/ap-field/slider/index.vue.d.ts +2 -4
- package/es/src/ap-field/text/index.vue2.mjs +42 -44
- package/es/src/ap-field/text/password.vue.mjs +15 -17
- package/es/src/ap-field/text-area/index.vue.d.ts +2 -2
- package/es/src/ap-field/tree-select/index.vue.mjs +31 -30
- package/es/src/ap-form/ap-form.vue2.mjs +18 -17
- package/es/src/ap-form/dependency/index.vue.mjs +24 -23
- package/es/src/ap-form/drawer-form/index.vue.d.ts +9 -7
- package/es/src/ap-form/drawer-form/index.vue.mjs +58 -49
- package/es/src/ap-form/interface.d.ts +2 -2
- package/es/src/ap-form/item/index.vue.d.ts +5 -10
- package/es/src/ap-form/items/select/index.vue.mjs +12 -14
- package/es/src/ap-form/items/text/password.vue.mjs +9 -9
- package/es/src/ap-form/items/text-area/index.vue.d.ts +5 -5
- package/es/src/ap-form/items/tree-select/index.vue.mjs +12 -14
- package/es/src/ap-form/modal-form/index.vue.d.ts +9 -7
- package/es/src/ap-form/modal-form/index.vue.mjs +64 -55
- package/es/src/ap-form/provider/index.vue.mjs +6 -5
- package/es/src/ap-form/search-form/index.vue.d.ts +2 -2
- package/es/src/ap-form/set/index.vue.mjs +7 -6
- package/es/src/ap-grid/editable/form-item.vue.mjs +1 -1
- package/es/src/ap-grid/hooks/use-editable-columns.mjs +17 -17
- package/es/src/ap-grid/index.vue.mjs +79 -75
- package/es/src/ap-grid/interface.d.ts +13 -0
- package/es/src/ap-list/index.vue.d.ts +2 -9
- package/es/src/ap-list/index.vue.mjs +116 -106
- package/es/src/ap-list/interface.d.ts +20 -0
- package/es/src/ap-table/ap-table.vue.d.ts +10 -2
- package/es/src/ap-table/ap-table.vue2.mjs +87 -83
- package/es/src/ap-table/components/setting/modal/index.vue2.mjs +12 -11
- package/es/src/ap-table/constants.d.ts +4 -4
- package/es/src/ap-table/hooks/use-table-paging-ng.d.ts +9 -2
- package/es/src/ap-table/hooks/use-table-paging-ng.mjs +113 -105
- package/es/src/ap-table/interface.d.ts +14 -1
- package/es/src/ap-table/utils.d.ts +3 -3
- package/es/src/business/ap-keep-alive/cacher/cacher.d.ts +10 -0
- package/es/src/business/ap-keep-alive/cacher/lru-cacher.d.ts +16 -0
- package/es/src/business/ap-keep-alive/cacher/lru-cacher.mjs +43 -0
- package/es/src/business/ap-keep-alive/hook.d.ts +10 -0
- package/es/src/business/ap-keep-alive/hook.mjs +31 -0
- package/es/src/business/ap-keep-alive/index.d.ts +101 -0
- package/es/src/business/ap-keep-alive/index.mjs +13 -0
- package/es/src/business/ap-keep-alive/interface.d.ts +35 -0
- package/es/src/business/ap-keep-alive/interface.mjs +54 -0
- package/es/src/business/ap-keep-alive/keep-alive.d.ts +51 -0
- package/es/src/business/ap-keep-alive/keep-alive.mjs +154 -0
- package/es/src/business/ap-keep-alive/keeper/ap-form-keeper.d.ts +7 -0
- package/es/src/business/ap-keep-alive/keeper/ap-form-keeper.mjs +21 -0
- package/es/src/business/ap-keep-alive/keeper/ap-grid-keeper.d.ts +14 -0
- package/es/src/business/ap-keep-alive/keeper/ap-grid-keeper.mjs +27 -0
- package/es/src/business/ap-keep-alive/keeper/ap-list-keeper.d.ts +13 -0
- package/es/src/business/ap-keep-alive/keeper/ap-list-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.mjs +17 -0
- package/es/src/business/ap-keep-alive/keeper/ap-search-form-keeper.d.ts +7 -0
- package/es/src/business/ap-keep-alive/keeper/ap-search-form-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/ap-table-keeper.d.ts +13 -0
- package/es/src/business/ap-keep-alive/keeper/ap-table-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/ap-view-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/ap-view-keeper.mjs +12 -0
- package/es/src/business/ap-keep-alive/keeper/edit-grid-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/edit-grid-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/edit-table-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/edit-table-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/index.d.ts +3 -0
- package/es/src/business/ap-keep-alive/keeper/index.mjs +27 -0
- package/es/src/business/ap-keep-alive/keeper/step-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/step-keeper.mjs +17 -0
- package/es/src/business/ap-keep-alive/keeper/tab-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/tab-keeper.mjs +17 -0
- package/es/src/business/ap-keep-alive/utils.d.ts +22 -0
- package/es/src/business/ap-keep-alive/utils.mjs +41 -0
- package/es/src/business/ap-table-modal/hooks/use-create-table-modal.d.ts +4 -1
- package/es/src/business/ap-table-modal/hooks/use-table-modal.d.ts +4 -1
- package/es/src/business/ap-table-modal/hooks/use-table-select-modal.d.ts +4 -1
- package/es/src/business/ap-table-modal/index.d.ts +32 -5
- package/es/src/business/ap-table-modal/table-modal.vue.d.ts +14 -3
- package/es/src/business/ap-view/components/main-button-content.vue.d.ts +1 -1
- package/es/src/business/ap-view/components/menu-list-content.vue.d.ts +1 -1
- package/es/src/business/batch-input-group/form-item.vue.mjs +14 -13
- package/es/src/business/batch-input-group/index.vue.mjs +9 -8
- package/es/src/business/hooks/usePageListApTable.d.ts +4 -1
- package/es/src/business/index.d.ts +1 -0
- package/es/src/business/index.mjs +18 -16
- package/es/src/editable-table/form-item.vue.mjs +23 -23
- package/es/src/full-screen/interface.d.ts +5 -6
- package/es/src/index.mjs +199 -190
- package/es/src/mask/index.vue.mjs +21 -20
- package/es/src/resize-observer/interface.d.ts +2 -3
- package/es/src/scroll-bar/interface.d.ts +7 -7
- package/es/src/scroll-view/interface.d.ts +2 -3
- package/es/src/splitter/SplitBar.vue2.mjs +1 -0
- package/es/src/splitter/Splitter.vue2.mjs +1 -0
- package/es/src/text/group.vue.mjs +7 -6
- package/es/src/text/index.vue.mjs +20 -19
- package/es/src/version.d.ts +1 -1
- package/es/src/version.mjs +1 -1
- package/es/src/work-order-modal/work-order-modal.vue.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/src/ap-field/date-range/index.vue.js +1 -1
- package/lib/src/ap-field/number/index.vue.d.ts +2 -4
- package/lib/src/ap-field/radio/index.vue.d.ts +2 -4
- package/lib/src/ap-field/rate/index.vue.d.ts +2 -4
- package/lib/src/ap-field/select/index.vue.d.ts +3 -6
- package/lib/src/ap-field/slider/index.vue.d.ts +2 -4
- package/lib/src/ap-field/text/index.vue2.js +1 -1
- package/lib/src/ap-field/text/password.vue.js +1 -1
- package/lib/src/ap-field/text-area/index.vue.d.ts +2 -2
- package/lib/src/ap-field/tree-select/index.vue.js +1 -1
- package/lib/src/ap-form/ap-form.vue2.js +1 -1
- package/lib/src/ap-form/dependency/index.vue.js +1 -1
- package/lib/src/ap-form/drawer-form/index.vue.d.ts +9 -7
- package/lib/src/ap-form/drawer-form/index.vue.js +1 -1
- package/lib/src/ap-form/interface.d.ts +2 -2
- package/lib/src/ap-form/item/index.vue.d.ts +5 -10
- package/lib/src/ap-form/items/select/index.vue.js +1 -1
- package/lib/src/ap-form/items/text/password.vue.js +1 -1
- package/lib/src/ap-form/items/text-area/index.vue.d.ts +5 -5
- package/lib/src/ap-form/items/tree-select/index.vue.js +1 -1
- package/lib/src/ap-form/modal-form/index.vue.d.ts +9 -7
- package/lib/src/ap-form/modal-form/index.vue.js +1 -1
- package/lib/src/ap-form/provider/index.vue.js +1 -1
- package/lib/src/ap-form/search-form/index.vue.d.ts +2 -2
- package/lib/src/ap-form/set/index.vue.js +1 -1
- package/lib/src/ap-grid/editable/form-item.vue.js +1 -1
- package/lib/src/ap-grid/hooks/use-editable-columns.js +1 -1
- package/lib/src/ap-grid/index.vue.js +1 -1
- package/lib/src/ap-grid/interface.d.ts +13 -0
- package/lib/src/ap-list/index.vue.d.ts +2 -9
- package/lib/src/ap-list/index.vue.js +1 -1
- package/lib/src/ap-list/interface.d.ts +20 -0
- package/lib/src/ap-table/ap-table.vue.d.ts +10 -2
- package/lib/src/ap-table/ap-table.vue2.js +1 -1
- package/lib/src/ap-table/components/setting/modal/index.vue2.js +1 -1
- package/lib/src/ap-table/constants.d.ts +4 -4
- package/lib/src/ap-table/hooks/use-table-paging-ng.d.ts +9 -2
- package/lib/src/ap-table/hooks/use-table-paging-ng.js +1 -1
- package/lib/src/ap-table/interface.d.ts +14 -1
- package/lib/src/ap-table/utils.d.ts +3 -3
- package/lib/src/business/ap-keep-alive/cacher/cacher.d.ts +10 -0
- package/lib/src/business/ap-keep-alive/cacher/lru-cacher.d.ts +16 -0
- package/lib/src/business/ap-keep-alive/cacher/lru-cacher.js +1 -0
- package/lib/src/business/ap-keep-alive/hook.d.ts +10 -0
- package/lib/src/business/ap-keep-alive/hook.js +1 -0
- package/lib/src/business/ap-keep-alive/index.d.ts +101 -0
- package/lib/src/business/ap-keep-alive/index.js +1 -0
- package/lib/src/business/ap-keep-alive/interface.d.ts +35 -0
- package/lib/src/business/ap-keep-alive/interface.js +1 -0
- package/lib/src/business/ap-keep-alive/keep-alive.d.ts +51 -0
- package/lib/src/business/ap-keep-alive/keep-alive.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-form-keeper.d.ts +7 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-form-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-grid-keeper.d.ts +14 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-grid-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-list-keeper.d.ts +13 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-list-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-search-form-keeper.d.ts +7 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-search-form-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-table-keeper.d.ts +13 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-table-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-view-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-view-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/edit-grid-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/edit-grid-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/edit-table-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/edit-table-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/index.d.ts +3 -0
- package/lib/src/business/ap-keep-alive/keeper/index.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/step-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/step-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/tab-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/tab-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/utils.d.ts +22 -0
- package/lib/src/business/ap-keep-alive/utils.js +1 -0
- package/lib/src/business/ap-table-modal/hooks/use-create-table-modal.d.ts +4 -1
- package/lib/src/business/ap-table-modal/hooks/use-table-modal.d.ts +4 -1
- package/lib/src/business/ap-table-modal/hooks/use-table-select-modal.d.ts +4 -1
- package/lib/src/business/ap-table-modal/index.d.ts +32 -5
- package/lib/src/business/ap-table-modal/table-modal.vue.d.ts +14 -3
- package/lib/src/business/ap-view/components/main-button-content.vue.d.ts +1 -1
- package/lib/src/business/ap-view/components/menu-list-content.vue.d.ts +1 -1
- package/lib/src/business/batch-input-group/form-item.vue.js +1 -1
- package/lib/src/business/batch-input-group/index.vue.js +2 -2
- package/lib/src/business/hooks/usePageListApTable.d.ts +4 -1
- package/lib/src/business/index.d.ts +1 -0
- package/lib/src/business/index.js +1 -1
- package/lib/src/editable-table/form-item.vue.js +1 -1
- package/lib/src/full-screen/interface.d.ts +5 -6
- package/lib/src/index.js +1 -1
- package/lib/src/mask/index.vue.js +1 -1
- package/lib/src/resize-observer/interface.d.ts +2 -3
- package/lib/src/scroll-bar/interface.d.ts +7 -7
- package/lib/src/scroll-view/interface.d.ts +2 -3
- package/lib/src/splitter/SplitBar.vue2.js +1 -1
- package/lib/src/splitter/Splitter.vue2.js +1 -1
- package/lib/src/text/group.vue.js +1 -1
- package/lib/src/text/index.vue.js +1 -1
- package/lib/src/version.d.ts +1 -1
- package/lib/src/version.js +1 -1
- package/lib/src/work-order-modal/work-order-modal.vue.d.ts +1 -1
- package/package.json +4 -3
- package/theme/ap-action/item.css +1 -1
- package/theme/ap-action/item.less +1 -1
- package/theme/ap-grid/index.css +6 -1
- package/theme/ap-grid/index.less +5 -0
- package/theme/ap-table/ap-table.css +6 -1
- package/theme/ap-table/ap-table.less +5 -0
- package/theme/ap-table-modal/index.css +6 -1
- package/theme/editable-table/index.css +1 -1
- package/theme/index.css +13 -1
- package/theme/ui-mode.css +2 -0
- package/theme/ui-mode.less +4 -0
package/es/index.mjs
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import * as o from "./src/index.mjs";
|
|
2
|
-
import { default as
|
|
2
|
+
import { default as s } from "./src/path-map.mjs";
|
|
3
3
|
import p from "./src/version.mjs";
|
|
4
4
|
import "./src/hooks/index.mjs";
|
|
5
5
|
import { configProviderProps as A } from "./src/config-provider/config-provider-props.mjs";
|
|
6
6
|
import { DEFAULT_NAMESPACE as n, DEFAULT_UIMODE as c, configProviderContextKey as F } from "./src/config-provider/constants.mjs";
|
|
7
7
|
import { keysOf as T, provideGlobalConfig as S, useGlobalConfig as b } from "./src/config-provider/hooks/use-global-config.mjs";
|
|
8
|
-
import { buildLocaleContext as g, buildTranslator as D, localeContextKey as G, translate as h, useLocale as
|
|
9
|
-
import { defaultNamespace as R, namespaceContextKey as L, useGetDerivedNamespace as
|
|
10
|
-
import { ConfigProvider as
|
|
8
|
+
import { buildLocaleContext as g, buildTranslator as D, localeContextKey as G, translate as h, useLocale as P } from "./src/config-provider/hooks/use-locale.mjs";
|
|
9
|
+
import { defaultNamespace as R, namespaceContextKey as L, useGetDerivedNamespace as v, useNamespace as M } from "./src/config-provider/hooks/use-namespace.mjs";
|
|
10
|
+
import { ConfigProvider as y, globalConfigCached as w } from "./src/config-provider/config-provider.mjs";
|
|
11
11
|
import { APConfigProvider as B } from "./src/config-provider/index.mjs";
|
|
12
|
-
import { ApFormItemText as
|
|
12
|
+
import { ApFormItemText as O } from "./src/ap-form/items/text/index.mjs";
|
|
13
13
|
import { default as V } from "./src/ap-form/items/text-area/index.vue.mjs";
|
|
14
14
|
import { default as z } from "./src/ap-form/items/number/index.vue.mjs";
|
|
15
15
|
import { default as $ } from "./src/ap-form/items/date/index.vue.mjs";
|
|
16
|
-
import { default as
|
|
16
|
+
import { default as H } from "./src/ap-form/items/date-range/index.vue.mjs";
|
|
17
17
|
import { default as J } from "./src/ap-form/items/radio/index.vue.mjs";
|
|
18
18
|
import { default as X } from "./src/ap-form/items/select/index.vue.mjs";
|
|
19
19
|
import { default as Z } from "./src/ap-form/items/switch/index.vue.mjs";
|
|
@@ -22,7 +22,7 @@ import { default as te } from "./src/ap-form/items/text/password.vue.mjs";
|
|
|
22
22
|
import { default as ae } from "./src/ap-form/items/tree-select/index.vue.mjs";
|
|
23
23
|
import { ApForm as me } from "./src/ap-form/index.mjs";
|
|
24
24
|
import { default as xe } from "./src/ap-form/item/index.vue.mjs";
|
|
25
|
-
import { default as
|
|
25
|
+
import { default as se } from "./src/ap-form/item-group/index.vue.mjs";
|
|
26
26
|
import { default as Ae } from "./src/ap-form/list/index.vue.mjs";
|
|
27
27
|
import { default as ne } from "./src/ap-form/search-form/index.vue.mjs";
|
|
28
28
|
import { default as Fe } from "./src/ap-form/modal-form/index.vue.mjs";
|
|
@@ -30,17 +30,17 @@ import { default as Te } from "./src/ap-form/dependency/index.vue.mjs";
|
|
|
30
30
|
import { default as be } from "./src/ap-form/set/index.vue.mjs";
|
|
31
31
|
import { default as ge } from "./src/ap-form/drawer-form/index.vue.mjs";
|
|
32
32
|
import { default as Ge } from "./src/ap-form/render/control.vue.mjs";
|
|
33
|
-
import { default as
|
|
33
|
+
import { default as Pe } from "./src/ap-form/render/item.vue.mjs";
|
|
34
34
|
import { default as Re } from "./src/ap-form/provider/index.vue.mjs";
|
|
35
|
-
import { ApField as
|
|
36
|
-
import { ApFieldText as
|
|
35
|
+
import { ApField as ve } from "./src/ap-field/index.mjs";
|
|
36
|
+
import { ApFieldText as Ne } from "./src/ap-field/text/index.mjs";
|
|
37
37
|
import { default as we } from "./src/ap-field/checkbox/index.vue.mjs";
|
|
38
38
|
import { default as Be } from "./src/ap-field/date/index.vue.mjs";
|
|
39
|
-
import { default as
|
|
39
|
+
import { default as Oe } from "./src/ap-field/number/index.vue.mjs";
|
|
40
40
|
import { default as Ve } from "./src/ap-field/radio/index.vue.mjs";
|
|
41
41
|
import { default as ze } from "./src/ap-field/switch/index.vue.mjs";
|
|
42
42
|
import { default as $e } from "./src/ap-field/text-area/index.vue.mjs";
|
|
43
|
-
import { default as
|
|
43
|
+
import { default as He } from "./src/ap-field/date-range/index.vue.mjs";
|
|
44
44
|
import { default as Je } from "./src/ap-field/select/index.vue.mjs";
|
|
45
45
|
import { default as Xe } from "./src/ap-field/text/password.vue.mjs";
|
|
46
46
|
import { default as Ze } from "./src/ap-field/slider/index.vue.mjs";
|
|
@@ -48,7 +48,7 @@ import { default as oo } from "./src/ap-field/segmented/index.vue.mjs";
|
|
|
48
48
|
import { default as to } from "./src/ap-field/rate/index.vue.mjs";
|
|
49
49
|
import { default as ao } from "./src/ap-field/tree-select/index.vue.mjs";
|
|
50
50
|
import { adminToken as mo, aplusToken as lo } from "./src/design-token/index.mjs";
|
|
51
|
-
import { ApActionItem as
|
|
51
|
+
import { ApActionItem as so } from "./src/ap-action/index.mjs";
|
|
52
52
|
import { default as Ao } from "./src/ap-action/item-modal/index.vue.mjs";
|
|
53
53
|
import { default as no } from "./src/ap-action/item-popconfirm/index.vue.mjs";
|
|
54
54
|
import { default as Fo } from "./src/ap-action/item-dropdown/index.vue.mjs";
|
|
@@ -56,16 +56,16 @@ import { default as To } from "./src/ap-action/group/index.vue.mjs";
|
|
|
56
56
|
import { DictCode as bo, langMap as Co } from "./src/work-order-modal/interfaces.mjs";
|
|
57
57
|
import { createWorkOrderModal as Do } from "./src/work-order-modal/createWorkOrder.mjs";
|
|
58
58
|
import { default as ho } from "./src/work-order-modal/work-order-modal.vue.mjs";
|
|
59
|
-
import { default as
|
|
59
|
+
import { default as Eo } from "./src/ap-tag/ap-tag.vue.mjs";
|
|
60
60
|
import { default as Lo } from "./src/ap-tag/ap-tag-group.vue.mjs";
|
|
61
|
-
import { default as
|
|
62
|
-
import { NeedNameKeyDefault as
|
|
61
|
+
import { default as Mo } from "./src/ap-info-layout/ApInfoLayout.vue.mjs";
|
|
62
|
+
import { NeedNameKeyDefault as yo } from "./src/ap-upload/apUploadTypes.mjs";
|
|
63
63
|
import { default as ko } from "./src/ap-upload/apUpload.vue.mjs";
|
|
64
|
-
import { ApDownLoadNeedNameKeyDefault as
|
|
64
|
+
import { ApDownLoadNeedNameKeyDefault as Ko } from "./src/ap-download/interface.mjs";
|
|
65
65
|
import { default as Uo } from "./src/ap-download/ap-download.vue.mjs";
|
|
66
66
|
import { CheckCard as _o } from "./src/check-card/index.mjs";
|
|
67
67
|
import { default as Wo } from "./src/check-card/group.vue.mjs";
|
|
68
|
-
import { ApModal as
|
|
68
|
+
import { ApModal as jo } from "./src/ap-modal/index.mjs";
|
|
69
69
|
import { default as qo } from "./src/ap-list/index.vue.mjs";
|
|
70
70
|
import { default as Qo } from "./src/ap-button/ap-button.vue.mjs";
|
|
71
71
|
import { default as Yo } from "./src/ap-button/ap-action-button.vue.mjs";
|
|
@@ -75,7 +75,7 @@ import { ApTransformDataHelper as pr } from "./src/utils/ap-trans-data/index.mjs
|
|
|
75
75
|
import { default as fr } from "./src/business/ap-table-modal/index.mjs";
|
|
76
76
|
import { useTableModal as lr } from "./src/business/ap-table-modal/hooks/use-table-modal.mjs";
|
|
77
77
|
import { useTableSelectModal as dr } from "./src/business/ap-table-modal/hooks/use-table-select-modal.mjs";
|
|
78
|
-
import { ApAttachment as
|
|
78
|
+
import { ApAttachment as ur } from "./src/business/ap-attachment/index.mjs";
|
|
79
79
|
import { ApBatchAction as ir } from "./src/business/ap-batch-action/index.mjs";
|
|
80
80
|
import { ApBatchActionGroup as cr } from "./src/business/ap-batch-action-group/index.mjs";
|
|
81
81
|
import { ApButtonGroup as Ir } from "./src/business/ap-button-group/index.mjs";
|
|
@@ -83,15 +83,15 @@ import { ApCard as Sr } from "./src/business/ap-card/index.mjs";
|
|
|
83
83
|
import { ApExpandAlert as Cr } from "./src/business/ap-expand-alert/index.mjs";
|
|
84
84
|
import { ApExportGroupActionType as Dr } from "./src/business/ap-export-group/interface.mjs";
|
|
85
85
|
import { ApExportGroup as hr } from "./src/business/ap-export-group/index.mjs";
|
|
86
|
-
import { handleExportDownload as
|
|
86
|
+
import { handleExportDownload as Er } from "./src/business/ap-export-group/handleExportDownload.mjs";
|
|
87
87
|
import { convertExportField as Lr } from "./src/business/ap-export-group/convertExportField.mjs";
|
|
88
|
-
import { ApImage as
|
|
89
|
-
import { ApInputRadio as
|
|
88
|
+
import { ApImage as Mr } from "./src/business/ap-image/index.mjs";
|
|
89
|
+
import { ApInputRadio as yr } from "./src/business/ap-input-radio/index.mjs";
|
|
90
90
|
import { ApLabel as kr, ApLabelGroup as Br } from "./src/business/ap-label/index.mjs";
|
|
91
|
-
import { locales as
|
|
91
|
+
import { locales as Or } from "./src/business/ap-ladder/interface.mjs";
|
|
92
92
|
import { ApLadder as Vr } from "./src/business/ap-ladder/index.mjs";
|
|
93
93
|
import { ApSelectLayout as zr } from "./src/business/ap-select-layout/index.mjs";
|
|
94
|
-
import { ApStatus as $r, ApStatusGroup as
|
|
94
|
+
import { ApStatus as $r, ApStatusGroup as jr } from "./src/business/ap-status/index.mjs";
|
|
95
95
|
import { ApTitle as qr } from "./src/business/ap-title/index.mjs";
|
|
96
96
|
import { usePageListApTable as Qr } from "./src/business/hooks/usePageListApTable.mjs";
|
|
97
97
|
import { useTableRefresh as Yr } from "./src/business/hooks/useTableRefresh.mjs";
|
|
@@ -99,43 +99,47 @@ import { usePageListApGrid as et } from "./src/business/hooks/usePageListApGrid.
|
|
|
99
99
|
import { useGridRefresh as rt } from "./src/business/hooks/useGridRefresh.mjs";
|
|
100
100
|
import { computedRecords as pt, flattenColumns as at, formatDataIndex as ft, formatNumber as mt } from "./src/business/ap-summary/utils.mjs";
|
|
101
101
|
import { ApSummary as xt } from "./src/business/ap-summary/index.mjs";
|
|
102
|
-
import { ApNeedNameKeyDefault as
|
|
102
|
+
import { ApNeedNameKeyDefault as st } from "./src/business/ap-appendix/interface.mjs";
|
|
103
103
|
import { ApAppendix as At } from "./src/business/ap-appendix/index.mjs";
|
|
104
104
|
import { ApExtensionSelect as nt, ApGroupSearch as ct, ApPopoverSelect as Ft } from "./src/business/ap-group-search/index.mjs";
|
|
105
105
|
import { default as Tt } from "./src/business/ap-upload-file/ap-upload-single/ap-upload-single.vue.mjs";
|
|
106
106
|
import { default as bt } from "./src/business/batch-input-group/index.vue.mjs";
|
|
107
107
|
import { default as gt } from "./src/business/batch-input-group/form-item.vue.mjs";
|
|
108
108
|
import { ApSizeInput as Gt } from "./src/business/ap-size-input/index.mjs";
|
|
109
|
-
import { ApProductInfo as
|
|
109
|
+
import { ApProductInfo as Pt } from "./src/business/ap-product-info/index.mjs";
|
|
110
110
|
import { ApCopy as Rt } from "./src/business/ap-copy/index.mjs";
|
|
111
|
-
import { ApView as
|
|
112
|
-
import { ApRadioGroup as
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import { default as
|
|
120
|
-
import { default as
|
|
121
|
-
import { default as
|
|
122
|
-
import {
|
|
123
|
-
import { default as
|
|
124
|
-
import { default as
|
|
125
|
-
import {
|
|
126
|
-
import { default as
|
|
127
|
-
import { default as
|
|
128
|
-
import { default as up } from "./src/
|
|
129
|
-
import {
|
|
130
|
-
import { default as
|
|
131
|
-
import { default as
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
138
|
-
import {
|
|
111
|
+
import { ApView as vt } from "./src/business/ap-view/index.mjs";
|
|
112
|
+
import { ApRadioGroup as Nt } from "./src/business/ap-radio-group/index.mjs";
|
|
113
|
+
import { ApKeepAliveProps as wt, forceStopTags as kt } from "./src/business/ap-keep-alive/interface.mjs";
|
|
114
|
+
import { ApKeepAlive as Kt } from "./src/business/ap-keep-alive/index.mjs";
|
|
115
|
+
import { LruCacher as Ut } from "./src/business/ap-keep-alive/cacher/lru-cacher.mjs";
|
|
116
|
+
import { useApKeepAliveInject as _t } from "./src/business/ap-keep-alive/hook.mjs";
|
|
117
|
+
import { useTablePaging as Wt } from "./src/ap-table/hooks/use-table-paging.mjs";
|
|
118
|
+
import { ApTable as jt } from "./src/ap-table/index.mjs";
|
|
119
|
+
import { default as qt } from "./src/editable-table/index.vue.mjs";
|
|
120
|
+
import { default as Qt } from "./src/editable-table/form-item.vue.mjs";
|
|
121
|
+
import { default as Yt } from "./src/ap-descriptions/ap-descriptions.vue.mjs";
|
|
122
|
+
import { ensureRangeValue as ep } from "./src/scroll-bar/utils/index.mjs";
|
|
123
|
+
import { default as rp } from "./src/scroll-bar/index.vue.mjs";
|
|
124
|
+
import { default as pp } from "./src/scroll-bar/internal.vue.mjs";
|
|
125
|
+
import { default as fp } from "./src/scroll-view/index.vue.mjs";
|
|
126
|
+
import { default as lp } from "./src/portal/index.vue.mjs";
|
|
127
|
+
import { default as dp } from "./src/full-screen/index.vue.mjs";
|
|
128
|
+
import { default as up } from "./src/resize-observer/index.vue.mjs";
|
|
129
|
+
import { ROW_SELECTION_FIELD as ip } from "./src/ap-grid/constants.mjs";
|
|
130
|
+
import { default as cp } from "./src/ap-grid/index.vue.mjs";
|
|
131
|
+
import { default as Ip } from "./src/ap-grid/editable/index.vue.mjs";
|
|
132
|
+
import { default as Sp } from "./src/ap-grid/editable/form-item.vue.mjs";
|
|
133
|
+
import { default as Cp } from "./src/text/index.vue.mjs";
|
|
134
|
+
import { default as Dp } from "./src/text/group.vue.mjs";
|
|
135
|
+
import { default as hp } from "./src/mask/index.vue.mjs";
|
|
136
|
+
import { Splitter as Ep } from "./src/splitter/index.mjs";
|
|
137
|
+
import { useMessage as Lp } from "./src/hooks/useMessage.mjs";
|
|
138
|
+
import { useControllableValue as Mp } from "./src/hooks/useControllableValue.mjs";
|
|
139
|
+
import { useManualRef as yp } from "./src/hooks/useManualRef.mjs";
|
|
140
|
+
import { useThrottleRef as kp } from "./src/hooks/useThrottleRef.mjs";
|
|
141
|
+
import { useFullScreen as Kp } from "./src/hooks/useFullScreen.mjs";
|
|
142
|
+
import { useResize as Up } from "./src/hooks/useResize.mjs";
|
|
139
143
|
const a = console.log;
|
|
140
144
|
a(`APlus-UI version ${p}`);
|
|
141
145
|
const l = {
|
|
@@ -150,12 +154,12 @@ export {
|
|
|
150
154
|
B as APConfigProvider,
|
|
151
155
|
Yo as ApActionButton,
|
|
152
156
|
To as ApActionGroup,
|
|
153
|
-
|
|
157
|
+
so as ApActionItem,
|
|
154
158
|
Fo as ApActionItemDropdown,
|
|
155
159
|
Ao as ApActionItemModal,
|
|
156
160
|
no as ApActionItemPopconfirm,
|
|
157
161
|
At as ApAppendix,
|
|
158
|
-
|
|
162
|
+
ur as ApAttachment,
|
|
159
163
|
ir as ApBatchAction,
|
|
160
164
|
cr as ApBatchActionGroup,
|
|
161
165
|
Qo as ApButton,
|
|
@@ -163,19 +167,19 @@ export {
|
|
|
163
167
|
Sr as ApCard,
|
|
164
168
|
er as ApConfirmButton,
|
|
165
169
|
Rt as ApCopy,
|
|
166
|
-
|
|
167
|
-
|
|
170
|
+
Yt as ApDescriptions,
|
|
171
|
+
Ko as ApDownLoadNeedNameKeyDefault,
|
|
168
172
|
Uo as ApDownload,
|
|
169
173
|
rr as ApDrawer,
|
|
170
174
|
Cr as ApExpandAlert,
|
|
171
175
|
hr as ApExportGroup,
|
|
172
176
|
Dr as ApExportGroupActionType,
|
|
173
177
|
nt as ApExtensionSelect,
|
|
174
|
-
|
|
178
|
+
ve as ApField,
|
|
175
179
|
we as ApFieldCheckbox,
|
|
176
180
|
Be as ApFieldDate,
|
|
177
|
-
|
|
178
|
-
|
|
181
|
+
He as ApFieldDateRange,
|
|
182
|
+
Oe as ApFieldNumber,
|
|
179
183
|
Xe as ApFieldPassword,
|
|
180
184
|
Ve as ApFieldRadio,
|
|
181
185
|
to as ApFieldRate,
|
|
@@ -183,7 +187,7 @@ export {
|
|
|
183
187
|
Je as ApFieldSelect,
|
|
184
188
|
Ze as ApFieldSlider,
|
|
185
189
|
ze as ApFieldSwitch,
|
|
186
|
-
|
|
190
|
+
Ne as ApFieldText,
|
|
187
191
|
$e as ApFieldTextArea,
|
|
188
192
|
ao as ApFieldTreeSelect,
|
|
189
193
|
me as ApForm,
|
|
@@ -194,14 +198,14 @@ export {
|
|
|
194
198
|
gt as ApFormItemBatchInput,
|
|
195
199
|
oe as ApFormItemCheckbox,
|
|
196
200
|
$ as ApFormItemDate,
|
|
197
|
-
|
|
198
|
-
|
|
201
|
+
H as ApFormItemDateRange,
|
|
202
|
+
se as ApFormItemGroup,
|
|
199
203
|
z as ApFormItemNumber,
|
|
200
204
|
J as ApFormItemRadio,
|
|
201
|
-
|
|
205
|
+
Pe as ApFormItemRender,
|
|
202
206
|
X as ApFormItemSelect,
|
|
203
207
|
Z as ApFormItemSwitch,
|
|
204
|
-
|
|
208
|
+
O as ApFormItemText,
|
|
205
209
|
V as ApFormItemTextArea,
|
|
206
210
|
te as ApFormItemTextPassword,
|
|
207
211
|
ae as ApFormItemTreeSelect,
|
|
@@ -210,57 +214,60 @@ export {
|
|
|
210
214
|
Re as ApFormProvider,
|
|
211
215
|
ne as ApFormSearchForm,
|
|
212
216
|
be as ApFormSet,
|
|
213
|
-
|
|
217
|
+
cp as ApGrid,
|
|
214
218
|
ct as ApGroupSearch,
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
219
|
+
Mr as ApImage,
|
|
220
|
+
Mo as ApInfoLayout,
|
|
221
|
+
yr as ApInputRadio,
|
|
222
|
+
Kt as ApKeepAlive,
|
|
223
|
+
wt as ApKeepAliveProps,
|
|
218
224
|
kr as ApLabel,
|
|
219
225
|
Br as ApLabelGroup,
|
|
220
226
|
Vr as ApLadder,
|
|
221
227
|
qo as ApList,
|
|
222
|
-
|
|
223
|
-
|
|
228
|
+
jo as ApModal,
|
|
229
|
+
st as ApNeedNameKeyDefault,
|
|
224
230
|
Ft as ApPopoverSelect,
|
|
225
|
-
|
|
226
|
-
|
|
231
|
+
Pt as ApProductInfo,
|
|
232
|
+
Nt as ApRadioGroup,
|
|
227
233
|
zr as ApSelectLayout,
|
|
228
234
|
Gt as ApSizeInput,
|
|
229
235
|
$r as ApStatus,
|
|
230
|
-
|
|
236
|
+
jr as ApStatusGroup,
|
|
231
237
|
xt as ApSummary,
|
|
232
|
-
|
|
238
|
+
jt as ApTable,
|
|
233
239
|
fr as ApTableModal,
|
|
234
|
-
|
|
240
|
+
Eo as ApTag,
|
|
235
241
|
Lo as ApTagGroup,
|
|
236
|
-
|
|
237
|
-
|
|
242
|
+
Cp as ApText,
|
|
243
|
+
Dp as ApTextGroup,
|
|
238
244
|
qr as ApTitle,
|
|
239
245
|
pr as ApTransformDataHelper,
|
|
240
246
|
ko as ApUpload,
|
|
241
247
|
Tt as ApUploadSingle,
|
|
242
|
-
|
|
248
|
+
vt as ApView,
|
|
243
249
|
bt as BatchInputGroup,
|
|
244
250
|
_o as CheckCard,
|
|
245
251
|
Wo as CheckCardGroup,
|
|
246
|
-
|
|
252
|
+
y as ConfigProvider,
|
|
247
253
|
n as DEFAULT_NAMESPACE,
|
|
248
254
|
c as DEFAULT_UIMODE,
|
|
249
255
|
bo as DictCode,
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
256
|
+
Ip as EditableGrid,
|
|
257
|
+
Sp as EditableGridFormItem,
|
|
258
|
+
qt as EditableTable,
|
|
259
|
+
Qt as EditableTableFormItem,
|
|
260
|
+
dp as FullScreen,
|
|
261
|
+
pp as InternalScrollBar,
|
|
262
|
+
Ut as LruCacher,
|
|
263
|
+
hp as Mask,
|
|
264
|
+
yo as NeedNameKeyDefault,
|
|
265
|
+
lp as Portal,
|
|
266
|
+
ip as ROW_SELECTION_FIELD,
|
|
267
|
+
up as ResizeObserver,
|
|
268
|
+
rp as ScrollBar,
|
|
269
|
+
fp as ScrollView,
|
|
270
|
+
Ep as Splitter,
|
|
264
271
|
ho as WorkOrderModal,
|
|
265
272
|
mo as adminToken,
|
|
266
273
|
lo as aplusToken,
|
|
@@ -273,35 +280,37 @@ export {
|
|
|
273
280
|
Do as createWorkOrderModal,
|
|
274
281
|
l as default,
|
|
275
282
|
R as defaultNamespace,
|
|
276
|
-
|
|
283
|
+
ep as ensureRangeValue,
|
|
277
284
|
at as flattenColumns,
|
|
285
|
+
kt as forceStopTags,
|
|
278
286
|
ft as formatDataIndex,
|
|
279
287
|
mt as formatNumber,
|
|
280
288
|
w as globalConfigCached,
|
|
281
|
-
|
|
289
|
+
Er as handleExportDownload,
|
|
282
290
|
T as keysOf,
|
|
283
291
|
Co as langMap,
|
|
284
292
|
G as localeContextKey,
|
|
285
|
-
|
|
293
|
+
Or as locales,
|
|
286
294
|
L as namespaceContextKey,
|
|
287
|
-
|
|
295
|
+
s as pathMap,
|
|
288
296
|
S as provideGlobalConfig,
|
|
289
297
|
h as translate,
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
298
|
+
_t as useApKeepAliveInject,
|
|
299
|
+
Mp as useControllableValue,
|
|
300
|
+
Kp as useFullScreen,
|
|
301
|
+
v as useGetDerivedNamespace,
|
|
293
302
|
b as useGlobalConfig,
|
|
294
303
|
rt as useGridRefresh,
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
304
|
+
P as useLocale,
|
|
305
|
+
yp as useManualRef,
|
|
306
|
+
Lp as useMessage,
|
|
307
|
+
M as useNamespace,
|
|
299
308
|
et as usePageListApGrid,
|
|
300
309
|
Qr as usePageListApTable,
|
|
301
|
-
|
|
310
|
+
Up as useResize,
|
|
302
311
|
lr as useTableModal,
|
|
303
|
-
|
|
312
|
+
Wt as useTablePaging,
|
|
304
313
|
Yr as useTableRefresh,
|
|
305
314
|
dr as useTableSelectModal,
|
|
306
|
-
|
|
315
|
+
kp as useThrottleRef
|
|
307
316
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as q, useSlots as J, computed as f, unref as t, isVNode as Q, createVNode as T, Fragment as y, createElementBlock as k, createBlock as C, openBlock as d, createTextVNode as B, toDisplayString as
|
|
1
|
+
import { defineComponent as q, useSlots as J, computed as f, unref as t, isVNode as Q, createVNode as T, Fragment as y, createElementBlock as k, createBlock as C, openBlock as d, createTextVNode as B, toDisplayString as D, resolveDynamicComponent as X, normalizeStyle as z, withCtx as P, createCommentVNode as ee, isRef as ne, renderList as A, mergeProps as oe, createSlots as te, renderSlot as ae, normalizeProps as re, guardReactiveProps as le } from "vue";
|
|
2
2
|
import { ApFieldDatePresetFormats as ue, PRESET_FORMAT_MAP as R, PRESET_FORMAT_PICK_MAP as de, PRESET_FORMAT_TIME_MAP as ie } from "../date/constant.mjs";
|
|
3
3
|
import "../../hooks/index.mjs";
|
|
4
4
|
import { isNil as F, omit as _, isString as h, isFunction as se } from "lodash-unified";
|
|
@@ -13,6 +13,7 @@ import { useDefaultPresets as Se } from "../hooks/use-default-presets.mjs";
|
|
|
13
13
|
import { useDateTimezone as ke } from "../hooks/use-date-timezone.mjs";
|
|
14
14
|
import { useControllableValue as Ce } from "../../hooks/useControllableValue.mjs";
|
|
15
15
|
const Ee = /* @__PURE__ */ q({
|
|
16
|
+
name: "ApFieldDateRange",
|
|
16
17
|
__name: "index",
|
|
17
18
|
props: {
|
|
18
19
|
mode: {
|
|
@@ -226,27 +227,27 @@ const Ee = /* @__PURE__ */ q({
|
|
|
226
227
|
key: 0
|
|
227
228
|
}, [S.value ? (d(), k(y, {
|
|
228
229
|
key: 0
|
|
229
|
-
}, [B(
|
|
230
|
+
}, [B(D((r = S.value[0]) == null ? void 0 : r.format(v.value)) + " ", 1), (d(), C(X(Z.value))), B(" " + D((l = S.value[1]) == null ? void 0 : l.format(v.value)), 1)], 64)) : (d(), k(y, {
|
|
230
231
|
key: 1
|
|
231
|
-
}, [B(
|
|
232
|
+
}, [B(D(e.emptyText), 1)], 64))], 64)) : (d(), C(t(fe), {
|
|
232
233
|
key: 1,
|
|
233
234
|
compact: "",
|
|
234
235
|
style: z({
|
|
235
236
|
display: Array.isArray(n.timezone) && n.timezone.length ? "flex" : "block"
|
|
236
237
|
})
|
|
237
238
|
}, {
|
|
238
|
-
default:
|
|
239
|
+
default: P(() => [Array.isArray(n.timezone) && n.timezone.length ? (d(), C(t(me), {
|
|
239
240
|
key: 0,
|
|
240
241
|
value: t(u),
|
|
241
242
|
"onUpdate:value": a[0] || (a[0] = (o) => ne(u) ? u.value = o : null),
|
|
242
243
|
"default-active-first-option": "",
|
|
243
244
|
"dropdown-match-select-width": !1
|
|
244
245
|
}, {
|
|
245
|
-
default:
|
|
246
|
+
default: P(() => [(d(!0), k(y, null, A(n.timezone, (o) => (d(), C(t(pe), {
|
|
246
247
|
key: o == null ? void 0 : o.value,
|
|
247
248
|
value: o == null ? void 0 : o.value
|
|
248
249
|
}, {
|
|
249
|
-
default:
|
|
250
|
+
default: P(() => [B(D((o == null ? void 0 : o.label) ?? (o == null ? void 0 : o.value)), 1)]),
|
|
250
251
|
_: 2
|
|
251
252
|
}, 1032, ["value"]))), 128))]),
|
|
252
253
|
_: 1
|
|
@@ -262,7 +263,7 @@ const Ee = /* @__PURE__ */ q({
|
|
|
262
263
|
_: 2
|
|
263
264
|
}, [A(t(_)(e.$slots, "readModeSeparator"), (o, p) => ({
|
|
264
265
|
name: p,
|
|
265
|
-
fn:
|
|
266
|
+
fn: P((c) => [ae(e.$slots, p, re(le(c || {})))])
|
|
266
267
|
}))]), 1040, ["value", "picker", "format"])]),
|
|
267
268
|
_: 3
|
|
268
269
|
}, 8, ["style"]));
|
|
@@ -13,8 +13,6 @@ type ApFieldNumberSlots = {
|
|
|
13
13
|
upIcon?: any;
|
|
14
14
|
downIcon?: any;
|
|
15
15
|
};
|
|
16
|
-
declare function focus(): void;
|
|
17
|
-
declare function blur(): void;
|
|
18
16
|
declare function __VLS_template(): {
|
|
19
17
|
attrs: Partial<{}>;
|
|
20
18
|
slots: Readonly<ApFieldNumberSlots> & ApFieldNumberSlots;
|
|
@@ -344,8 +342,8 @@ declare function __VLS_template(): {
|
|
|
344
342
|
};
|
|
345
343
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
346
344
|
declare const __VLS_component: DefineComponent<ApFieldNumberProps, {
|
|
347
|
-
focus:
|
|
348
|
-
blur:
|
|
345
|
+
focus: () => void;
|
|
346
|
+
blur: () => void;
|
|
349
347
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
350
348
|
"update:value": (...args: any[]) => void;
|
|
351
349
|
}, string, PublicProps, Readonly<ApFieldNumberProps> & Readonly<{
|
|
@@ -6,11 +6,9 @@ import { RadioGroupChildOption } from '@aplus-frontend/antdv/es/radio/Group';
|
|
|
6
6
|
import { RadioGroupButtonStyle, RadioGroupOptionType } from '@aplus-frontend/antdv/es/radio/interface';
|
|
7
7
|
import { RadioChangeEvent } from '@aplus-frontend/antdv';
|
|
8
8
|
import { VueNode } from '@aplus-frontend/antdv/es/_util/type';
|
|
9
|
-
declare function focus(): void;
|
|
10
|
-
declare function blur(): void;
|
|
11
9
|
declare const _default: DefineComponent<ApFieldRadioProps, {
|
|
12
|
-
focus:
|
|
13
|
-
blur:
|
|
10
|
+
focus: () => void;
|
|
11
|
+
blur: () => void;
|
|
14
12
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
15
13
|
"update:value": (...args: any[]) => void;
|
|
16
14
|
}, string, PublicProps, Readonly<ApFieldRadioProps> & Readonly<{
|
|
@@ -5,8 +5,6 @@ import { Direction } from '@aplus-frontend/antdv/es/config-provider';
|
|
|
5
5
|
import { FocusEventHandler, KeyboardEventHandler } from '@aplus-frontend/antdv/es/_util/EventInterface';
|
|
6
6
|
import { VueNode } from '@aplus-frontend/antdv/es/_util/type';
|
|
7
7
|
import { FieldMode } from '..';
|
|
8
|
-
declare function focus(): void;
|
|
9
|
-
declare function blur(): void;
|
|
10
8
|
declare function __VLS_template(): {
|
|
11
9
|
attrs: Partial<{}>;
|
|
12
10
|
slots: Readonly<{
|
|
@@ -100,8 +98,8 @@ declare function __VLS_template(): {
|
|
|
100
98
|
};
|
|
101
99
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
102
100
|
declare const __VLS_component: DefineComponent<ApFieldRateProps, {
|
|
103
|
-
focus:
|
|
104
|
-
blur:
|
|
101
|
+
focus: () => void;
|
|
102
|
+
blur: () => void;
|
|
105
103
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
106
104
|
"update:value": (...args: any[]) => void;
|
|
107
105
|
}, string, PublicProps, Readonly<ApFieldRateProps> & Readonly<{
|
|
@@ -22,9 +22,6 @@ type ApFieldSelectSlots = {
|
|
|
22
22
|
optionLabel: any;
|
|
23
23
|
default: any;
|
|
24
24
|
};
|
|
25
|
-
declare function requestIfNeeded(clear?: boolean): Promise<void>;
|
|
26
|
-
declare function focus(): void;
|
|
27
|
-
declare function blur(): void;
|
|
28
25
|
declare function __VLS_template(): {
|
|
29
26
|
attrs: Partial<{}>;
|
|
30
27
|
slots: Readonly<ApFieldSelectSlots> & ApFieldSelectSlots;
|
|
@@ -437,9 +434,9 @@ declare function __VLS_template(): {
|
|
|
437
434
|
};
|
|
438
435
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
439
436
|
declare const __VLS_component: DefineComponent<ApFieldSelectProps, {
|
|
440
|
-
focus:
|
|
441
|
-
blur:
|
|
442
|
-
request:
|
|
437
|
+
focus: () => void;
|
|
438
|
+
blur: () => void;
|
|
439
|
+
request: (clear?: boolean) => Promise<void>;
|
|
443
440
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
444
441
|
"update:value": (...args: any[]) => void;
|
|
445
442
|
}, string, PublicProps, Readonly<ApFieldSelectProps> & Readonly<{
|
|
@@ -11,8 +11,6 @@ type ApFieldSliderSlots = {
|
|
|
11
11
|
label: any;
|
|
12
12
|
}) => any;
|
|
13
13
|
};
|
|
14
|
-
declare function focus(): void;
|
|
15
|
-
declare function blur(): void;
|
|
16
14
|
declare function __VLS_template(): {
|
|
17
15
|
attrs: Partial<{}>;
|
|
18
16
|
slots: Readonly<ApFieldSliderSlots> & ApFieldSliderSlots;
|
|
@@ -277,8 +275,8 @@ declare function __VLS_template(): {
|
|
|
277
275
|
};
|
|
278
276
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
279
277
|
declare const __VLS_component: DefineComponent<ApFieldSliderProps, {
|
|
280
|
-
focus:
|
|
281
|
-
blur:
|
|
278
|
+
focus: () => void;
|
|
279
|
+
blur: () => void;
|
|
282
280
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
283
281
|
"update:value": (...args: any[]) => void;
|
|
284
282
|
}, string, PublicProps, Readonly<ApFieldSliderProps> & Readonly<{
|