@aplus-frontend/ui 0.5.12 → 0.5.14
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 +16 -12
- package/es/src/ap-button/interface.d.ts +1 -1
- package/es/src/ap-descriptions/ap-descriptions.vue.mjs +35 -32
- package/es/src/ap-descriptions/formatter/index.mjs +31 -31
- package/es/src/ap-field/interface.d.ts +10 -2
- package/es/src/ap-field/select/index.vue.d.ts +1 -0
- package/es/src/ap-field/select/index.vue.mjs +96 -91
- package/es/src/ap-modal/index.mjs +33 -15
- package/es/src/ap-modal/utils/confirm.d.ts +17 -0
- package/es/src/ap-modal/utils/confirm.mjs +110 -0
- package/es/src/ap-modal/utils/createModal.mjs +2 -1
- package/es/src/ap-modal/utils/destroyFns.d.ts +2 -0
- package/es/src/ap-modal/utils/destroyFns.mjs +4 -0
- package/es/src/ap-table/constants.d.ts +3 -0
- package/es/src/business/ap-ladder/ApLadder.vue.d.ts +2 -2
- package/es/src/business/ap-ladder/index.d.ts +6 -6
- package/es/src/config-provider/config-provider.d.ts +11 -0
- package/es/src/config-provider/css-var.d.ts +11 -0
- package/es/src/config-provider/css-var.mjs +35 -13
- package/es/src/config-provider/index.d.ts +55 -0
- package/es/src/index.d.ts +1 -0
- package/es/src/index.mjs +258 -253
- package/es/src/text/context.d.ts +10 -0
- package/es/src/text/context.mjs +17 -0
- package/es/src/text/group.vue.d.ts +28 -0
- package/es/src/text/group.vue.mjs +37 -0
- package/es/src/text/group.vue2.mjs +4 -0
- package/es/src/text/index.d.ts +4 -0
- package/es/src/text/index.mjs +3 -0
- package/es/src/text/index.vue.d.ts +34 -0
- package/es/src/text/index.vue.mjs +118 -0
- package/es/src/text/index.vue2.mjs +4 -0
- package/es/src/text/interface.d.ts +47 -0
- package/es/src/text/interface.mjs +1 -0
- package/lib/index.js +1 -1
- package/lib/src/ap-button/interface.d.ts +1 -1
- package/lib/src/ap-descriptions/ap-descriptions.vue.js +1 -1
- package/lib/src/ap-descriptions/formatter/index.js +1 -1
- package/lib/src/ap-field/interface.d.ts +10 -2
- package/lib/src/ap-field/select/index.vue.d.ts +1 -0
- package/lib/src/ap-field/select/index.vue.js +1 -1
- package/lib/src/ap-modal/index.js +1 -1
- package/lib/src/ap-modal/utils/confirm.d.ts +17 -0
- package/lib/src/ap-modal/utils/confirm.js +1 -0
- package/lib/src/ap-modal/utils/createModal.js +1 -1
- package/lib/src/ap-modal/utils/destroyFns.d.ts +2 -0
- package/lib/src/ap-modal/utils/destroyFns.js +1 -0
- package/lib/src/ap-table/constants.d.ts +3 -0
- package/lib/src/business/ap-ladder/ApLadder.vue.d.ts +2 -2
- package/lib/src/business/ap-ladder/index.d.ts +6 -6
- package/lib/src/config-provider/config-provider.d.ts +11 -0
- package/lib/src/config-provider/css-var.d.ts +11 -0
- package/lib/src/config-provider/css-var.js +1 -1
- package/lib/src/config-provider/index.d.ts +55 -0
- package/lib/src/index.d.ts +1 -0
- package/lib/src/index.js +1 -1
- package/lib/src/text/context.d.ts +10 -0
- package/lib/src/text/context.js +1 -0
- package/lib/src/text/group.vue.d.ts +28 -0
- package/lib/src/text/group.vue.js +1 -0
- package/lib/src/text/group.vue2.js +1 -0
- package/lib/src/text/index.d.ts +4 -0
- package/lib/src/text/index.js +1 -0
- package/lib/src/text/index.vue.d.ts +34 -0
- package/lib/src/text/index.vue.js +1 -0
- package/lib/src/text/index.vue2.js +1 -0
- package/lib/src/text/interface.d.ts +47 -0
- package/lib/src/text/interface.js +1 -0
- package/package.json +2 -2
- package/theme/ap-descriptions/ap-descriptions.css +3 -0
- package/theme/ap-descriptions/ap-descriptions.less +4 -0
- package/theme/index.css +61 -0
- package/theme/index.less +2 -0
- package/theme/text/group.css +14 -0
- package/theme/text/group.less +19 -0
- package/theme/text/index.css +44 -0
- package/theme/text/index.less +49 -0
package/es/src/index.mjs
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { APConfigProvider as
|
|
2
|
-
import { ApForm as
|
|
3
|
-
import { ApField as
|
|
4
|
-
import { adminToken as
|
|
5
|
-
import { ApActionItem as
|
|
1
|
+
import { APConfigProvider as b } from "./config-provider/index.mjs";
|
|
2
|
+
import { ApForm as S } from "./ap-form/index.mjs";
|
|
3
|
+
import { ApField as D } from "./ap-field/index.mjs";
|
|
4
|
+
import { adminToken as G, aplusToken as h } from "./design-token/index.mjs";
|
|
5
|
+
import { ApActionItem as E } from "./ap-action/index.mjs";
|
|
6
6
|
import "./work-order-modal/index.mjs";
|
|
7
7
|
import "./ap-tag/index.mjs";
|
|
8
8
|
import "./ap-info-layout/index.mjs";
|
|
9
9
|
import "./ap-upload/index.mjs";
|
|
10
10
|
import "./ap-download/index.mjs";
|
|
11
|
-
import { CheckCard as
|
|
12
|
-
import { ApModal as
|
|
11
|
+
import { CheckCard as N } from "./check-card/index.mjs";
|
|
12
|
+
import { ApModal as R } from "./ap-modal/index.mjs";
|
|
13
13
|
import "./ap-list/index.mjs";
|
|
14
14
|
import "./ap-button/index.mjs";
|
|
15
|
-
import { ApDrawer as
|
|
15
|
+
import { ApDrawer as M } from "./ap-drawer/index.mjs";
|
|
16
16
|
import "./business/index.mjs";
|
|
17
|
-
import { ApTable as
|
|
17
|
+
import { ApTable as B } from "./ap-table/index.mjs";
|
|
18
18
|
import "./editable-table/index.mjs";
|
|
19
19
|
import "./ap-descriptions/index.mjs";
|
|
20
20
|
import "./scroll-bar/index.mjs";
|
|
@@ -23,249 +23,254 @@ import "./portal/index.mjs";
|
|
|
23
23
|
import "./full-screen/index.mjs";
|
|
24
24
|
import "./resize-observer/index.mjs";
|
|
25
25
|
import "./ap-grid/index.mjs";
|
|
26
|
-
import
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import { default as
|
|
35
|
-
import { default as
|
|
36
|
-
import { default as
|
|
37
|
-
import { default as
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
47
|
-
import { default as
|
|
48
|
-
import { default as
|
|
49
|
-
import { default as
|
|
50
|
-
import { default as
|
|
51
|
-
import { default as
|
|
52
|
-
import { default as
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import { default as
|
|
56
|
-
import { default as
|
|
57
|
-
import { default as
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as
|
|
61
|
-
import { default as
|
|
62
|
-
import { default as
|
|
63
|
-
import { default as
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as
|
|
69
|
-
import { default as
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
75
|
-
import { default as
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { default as
|
|
84
|
-
import { default as
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import { default as
|
|
117
|
-
import { default as
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import { default as
|
|
122
|
-
import { default as
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import { default as
|
|
126
|
-
import { default as
|
|
127
|
-
import { default as
|
|
128
|
-
import { default as
|
|
129
|
-
import { default as
|
|
130
|
-
import { default as
|
|
131
|
-
import { default as
|
|
132
|
-
import { default as
|
|
26
|
+
import "./text/index.mjs";
|
|
27
|
+
import { configProviderProps as K } from "./config-provider/config-provider-props.mjs";
|
|
28
|
+
import { DEFAULT_NAMESPACE as U, DEFAULT_UIMODE as z, configProviderContextKey as V } from "./config-provider/constants.mjs";
|
|
29
|
+
import { keysOf as _, provideGlobalConfig as H, useGlobalConfig as j } from "./config-provider/hooks/use-global-config.mjs";
|
|
30
|
+
import { buildLocaleContext as J, buildTranslator as Q, localeContextKey as X, translate as Y, useLocale as Z } from "./config-provider/hooks/use-locale.mjs";
|
|
31
|
+
import { defaultNamespace as oo, namespaceContextKey as eo, useGetDerivedNamespace as ro, useNamespace as to } from "./config-provider/hooks/use-namespace.mjs";
|
|
32
|
+
import { ConfigProvider as ao, globalConfigCached as mo } from "./config-provider/config-provider.mjs";
|
|
33
|
+
import { ApFormItemText as lo } from "./ap-form/items/text/index.mjs";
|
|
34
|
+
import { default as uo } from "./ap-form/items/text-area/index.vue.mjs";
|
|
35
|
+
import { default as so } from "./ap-form/items/number/index.vue.mjs";
|
|
36
|
+
import { default as no } from "./ap-form/items/date/index.vue.mjs";
|
|
37
|
+
import { default as Fo } from "./ap-form/items/date-range/index.vue.mjs";
|
|
38
|
+
import { default as bo } from "./ap-form/items/radio/index.vue.mjs";
|
|
39
|
+
import { default as So } from "./ap-form/items/select/index.vue.mjs";
|
|
40
|
+
import { default as Do } from "./ap-form/items/switch/index.vue.mjs";
|
|
41
|
+
import { default as Go } from "./ap-form/items/checkbox/index.vue.mjs";
|
|
42
|
+
import { default as Po } from "./ap-form/items/text/password.vue.mjs";
|
|
43
|
+
import { default as Lo } from "./ap-form/item/index.vue.mjs";
|
|
44
|
+
import { default as yo } from "./ap-form/item-group/index.vue.mjs";
|
|
45
|
+
import { default as wo } from "./ap-form/list/index.vue.mjs";
|
|
46
|
+
import { default as vo } from "./ap-form/search-form/index.vue.mjs";
|
|
47
|
+
import { default as ko } from "./ap-form/modal-form/index.vue.mjs";
|
|
48
|
+
import { default as Oo } from "./ap-form/dependency/index.vue.mjs";
|
|
49
|
+
import { default as zo } from "./ap-form/set/index.vue.mjs";
|
|
50
|
+
import { default as Wo } from "./ap-form/drawer-form/index.vue.mjs";
|
|
51
|
+
import { default as Ho } from "./ap-form/render/control.vue.mjs";
|
|
52
|
+
import { default as qo } from "./ap-form/render/item.vue.mjs";
|
|
53
|
+
import { default as Qo } from "./ap-form/provider/index.vue.mjs";
|
|
54
|
+
import { ApFieldText as Yo } from "./ap-field/text/index.mjs";
|
|
55
|
+
import { default as $o } from "./ap-field/checkbox/index.vue.mjs";
|
|
56
|
+
import { default as ee } from "./ap-field/date/index.vue.mjs";
|
|
57
|
+
import { default as te } from "./ap-field/number/index.vue.mjs";
|
|
58
|
+
import { default as ae } from "./ap-field/radio/index.vue.mjs";
|
|
59
|
+
import { default as fe } from "./ap-field/switch/index.vue.mjs";
|
|
60
|
+
import { default as de } from "./ap-field/text-area/index.vue.mjs";
|
|
61
|
+
import { default as ue } from "./ap-field/date-range/index.vue.mjs";
|
|
62
|
+
import { default as se } from "./ap-field/select/index.vue.mjs";
|
|
63
|
+
import { default as ne } from "./ap-field/text/password.vue.mjs";
|
|
64
|
+
import { default as Fe } from "./ap-field/slider/index.vue.mjs";
|
|
65
|
+
import { default as be } from "./ap-field/segmented/index.vue.mjs";
|
|
66
|
+
import { default as Se } from "./ap-field/rate/index.vue.mjs";
|
|
67
|
+
import { default as De } from "./ap-action/item-modal/index.vue.mjs";
|
|
68
|
+
import { default as Ge } from "./ap-action/item-popconfirm/index.vue.mjs";
|
|
69
|
+
import { default as Pe } from "./ap-action/item-dropdown/index.vue.mjs";
|
|
70
|
+
import { default as Le } from "./ap-action/group/index.vue.mjs";
|
|
71
|
+
import { DictCode as ye, langMap as Re } from "./work-order-modal/interfaces.mjs";
|
|
72
|
+
import { createWorkOrderModal as Me } from "./work-order-modal/createWorkOrder.mjs";
|
|
73
|
+
import { default as Be } from "./work-order-modal/work-order-modal.vue.mjs";
|
|
74
|
+
import { default as Ke } from "./ap-tag/ap-tag.vue.mjs";
|
|
75
|
+
import { default as Ue } from "./ap-tag/ap-tag-group.vue.mjs";
|
|
76
|
+
import { default as Ve } from "./ap-info-layout/ApInfoLayout.vue.mjs";
|
|
77
|
+
import { NeedNameKeyDefault as _e } from "./ap-upload/apUploadTypes.mjs";
|
|
78
|
+
import { default as je } from "./ap-upload/apUpload.vue.mjs";
|
|
79
|
+
import { ApDownLoadNeedNameKeyDefault as Je } from "./ap-download/interface.mjs";
|
|
80
|
+
import { default as Xe } from "./ap-download/ap-download.vue.mjs";
|
|
81
|
+
import { default as Ze } from "./check-card/group.vue.mjs";
|
|
82
|
+
import { default as or } from "./ap-list/index.vue.mjs";
|
|
83
|
+
import { default as rr } from "./ap-button/ap-button.vue.mjs";
|
|
84
|
+
import { default as pr } from "./ap-button/ap-action-button.vue.mjs";
|
|
85
|
+
import { default as mr } from "./ap-button/ap-confirm-button.vue.mjs";
|
|
86
|
+
import { ApTransformDataHelper as lr } from "./utils/ap-trans-data/index.mjs";
|
|
87
|
+
import { default as xr } from "./business/ap-table-modal/index.mjs";
|
|
88
|
+
import { useTableModal as Ar } from "./business/ap-table-modal/hooks/use-table-modal.mjs";
|
|
89
|
+
import { useTableSelectModal as ir } from "./business/ap-table-modal/hooks/use-table-select-modal.mjs";
|
|
90
|
+
import { ApAttachment as cr } from "./business/ap-attachment/index.mjs";
|
|
91
|
+
import { ApBatchAction as Ir } from "./business/ap-batch-action/index.mjs";
|
|
92
|
+
import { ApBatchActionGroup as Tr } from "./business/ap-batch-action-group/index.mjs";
|
|
93
|
+
import { ApButtonGroup as Cr } from "./business/ap-button-group/index.mjs";
|
|
94
|
+
import { ApCard as gr } from "./business/ap-card/index.mjs";
|
|
95
|
+
import { ApExpandAlert as hr } from "./business/ap-expand-alert/index.mjs";
|
|
96
|
+
import { ApExportGroupActionType as Er } from "./business/ap-export-group/interface.mjs";
|
|
97
|
+
import { ApExportGroup as Nr } from "./business/ap-export-group/index.mjs";
|
|
98
|
+
import { handleExportDownload as Rr } from "./business/ap-export-group/handleExportDownload.mjs";
|
|
99
|
+
import { convertExportField as Mr } from "./business/ap-export-group/convertExportField.mjs";
|
|
100
|
+
import { ApImage as Br } from "./business/ap-image/index.mjs";
|
|
101
|
+
import { ApInputRadio as Kr } from "./business/ap-input-radio/index.mjs";
|
|
102
|
+
import { ApLabel as Ur, ApLabelGroup as zr } from "./business/ap-label/index.mjs";
|
|
103
|
+
import { locales as Wr } from "./business/ap-ladder/interface.mjs";
|
|
104
|
+
import { ApLadder as Hr } from "./business/ap-ladder/index.mjs";
|
|
105
|
+
import { ApSelectLayout as qr } from "./business/ap-select-layout/index.mjs";
|
|
106
|
+
import { ApStatus as Qr, ApStatusGroup as Xr } from "./business/ap-status/index.mjs";
|
|
107
|
+
import { ApTitle as Zr } from "./business/ap-title/index.mjs";
|
|
108
|
+
import { usePageListApTable as ot } from "./business/hooks/usePageListApTable.mjs";
|
|
109
|
+
import { useTableRefresh as rt } from "./business/hooks/useTableRefresh.mjs";
|
|
110
|
+
import { usePageListApGrid as pt } from "./business/hooks/usePageListApGrid.mjs";
|
|
111
|
+
import { computedRecords as mt, flattenColumns as ft, formatDataIndex as lt, formatNumber as dt } from "./business/ap-summary/utils.mjs";
|
|
112
|
+
import { ApSummary as ut } from "./business/ap-summary/index.mjs";
|
|
113
|
+
import { ApNeedNameKeyDefault as st } from "./business/ap-appendix/interface.mjs";
|
|
114
|
+
import { ApAppendix as nt } from "./business/ap-appendix/index.mjs";
|
|
115
|
+
import { ApExtensionSelect as Ft, ApGroupSearch as It, ApPopoverSelect as bt } from "./business/ap-group-search/index.mjs";
|
|
116
|
+
import { default as St } from "./business/ap-upload-file/ap-upload-single/ap-upload-single.vue.mjs";
|
|
117
|
+
import { default as Dt } from "./business/batch-input-group/index.vue.mjs";
|
|
118
|
+
import { default as Gt } from "./business/batch-input-group/form-item.vue.mjs";
|
|
119
|
+
import { ApSizeInput as Pt } from "./business/ap-size-input/index.mjs";
|
|
120
|
+
import { useTablePaging as Lt } from "./ap-table/hooks/use-table-paging.mjs";
|
|
121
|
+
import { default as yt } from "./editable-table/index.vue.mjs";
|
|
122
|
+
import { default as wt } from "./editable-table/form-item.vue.mjs";
|
|
123
|
+
import { default as vt } from "./ap-descriptions/ap-descriptions.vue.mjs";
|
|
124
|
+
import { ensureRangeValue as kt } from "./scroll-bar/utils/index.mjs";
|
|
125
|
+
import { default as Ot } from "./scroll-bar/index.vue.mjs";
|
|
126
|
+
import { default as zt } from "./scroll-bar/internal.vue.mjs";
|
|
127
|
+
import { default as Wt } from "./scroll-view/index.vue.mjs";
|
|
128
|
+
import { default as Ht } from "./portal/index.vue.mjs";
|
|
129
|
+
import { default as qt } from "./full-screen/index.vue.mjs";
|
|
130
|
+
import { default as Qt } from "./resize-observer/index.vue.mjs";
|
|
131
|
+
import { default as Yt } from "./ap-grid/index.vue.mjs";
|
|
132
|
+
import { default as $t } from "./ap-grid/editable/index.vue.mjs";
|
|
133
|
+
import { default as ep } from "./ap-grid/editable/form-item.vue.mjs";
|
|
134
|
+
import { default as tp } from "./text/index.vue.mjs";
|
|
135
|
+
import { default as ap } from "./text/group.vue.mjs";
|
|
133
136
|
export {
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
137
|
+
b as APConfigProvider,
|
|
138
|
+
pr as ApActionButton,
|
|
139
|
+
Le as ApActionGroup,
|
|
140
|
+
E as ApActionItem,
|
|
141
|
+
Pe as ApActionItemDropdown,
|
|
142
|
+
De as ApActionItemModal,
|
|
143
|
+
Ge as ApActionItemPopconfirm,
|
|
144
|
+
nt as ApAppendix,
|
|
145
|
+
cr as ApAttachment,
|
|
146
|
+
Ir as ApBatchAction,
|
|
147
|
+
Tr as ApBatchActionGroup,
|
|
148
|
+
rr as ApButton,
|
|
149
|
+
Cr as ApButtonGroup,
|
|
150
|
+
gr as ApCard,
|
|
151
|
+
mr as ApConfirmButton,
|
|
152
|
+
vt as ApDescriptions,
|
|
153
|
+
Je as ApDownLoadNeedNameKeyDefault,
|
|
154
|
+
Xe as ApDownload,
|
|
155
|
+
M as ApDrawer,
|
|
156
|
+
hr as ApExpandAlert,
|
|
157
|
+
Nr as ApExportGroup,
|
|
158
|
+
Er as ApExportGroupActionType,
|
|
159
|
+
Ft as ApExtensionSelect,
|
|
160
|
+
D as ApField,
|
|
161
|
+
$o as ApFieldCheckbox,
|
|
162
|
+
ee as ApFieldDate,
|
|
163
|
+
ue as ApFieldDateRange,
|
|
164
|
+
te as ApFieldNumber,
|
|
165
|
+
ne as ApFieldPassword,
|
|
166
|
+
ae as ApFieldRadio,
|
|
167
|
+
Se as ApFieldRate,
|
|
168
|
+
be as ApFieldSegmented,
|
|
169
|
+
se as ApFieldSelect,
|
|
170
|
+
Fe as ApFieldSlider,
|
|
171
|
+
fe as ApFieldSwitch,
|
|
172
|
+
Yo as ApFieldText,
|
|
173
|
+
de as ApFieldTextArea,
|
|
174
|
+
S as ApForm,
|
|
175
|
+
Ho as ApFormControlRender,
|
|
176
|
+
Oo as ApFormDependency,
|
|
177
|
+
Wo as ApFormDrawerForm,
|
|
178
|
+
Lo as ApFormItem,
|
|
179
|
+
Gt as ApFormItemBatchInput,
|
|
180
|
+
Go as ApFormItemCheckbox,
|
|
181
|
+
no as ApFormItemDate,
|
|
182
|
+
Fo as ApFormItemDateRange,
|
|
183
|
+
yo as ApFormItemGroup,
|
|
184
|
+
so as ApFormItemNumber,
|
|
185
|
+
bo as ApFormItemRadio,
|
|
186
|
+
qo as ApFormItemRender,
|
|
187
|
+
So as ApFormItemSelect,
|
|
188
|
+
Do as ApFormItemSwitch,
|
|
189
|
+
lo as ApFormItemText,
|
|
190
|
+
uo as ApFormItemTextArea,
|
|
191
|
+
Po as ApFormItemTextPassword,
|
|
192
|
+
wo as ApFormList,
|
|
193
|
+
ko as ApFormModalForm,
|
|
194
|
+
Qo as ApFormProvider,
|
|
195
|
+
vo as ApFormSearchForm,
|
|
196
|
+
zo as ApFormSet,
|
|
197
|
+
Yt as ApGrid,
|
|
198
|
+
It as ApGroupSearch,
|
|
199
|
+
Br as ApImage,
|
|
200
|
+
Ve as ApInfoLayout,
|
|
201
|
+
Kr as ApInputRadio,
|
|
202
|
+
Ur as ApLabel,
|
|
203
|
+
zr as ApLabelGroup,
|
|
204
|
+
Hr as ApLadder,
|
|
205
|
+
or as ApList,
|
|
206
|
+
R as ApModal,
|
|
207
|
+
st as ApNeedNameKeyDefault,
|
|
208
|
+
bt as ApPopoverSelect,
|
|
209
|
+
qr as ApSelectLayout,
|
|
210
|
+
Pt as ApSizeInput,
|
|
211
|
+
Qr as ApStatus,
|
|
212
|
+
Xr as ApStatusGroup,
|
|
213
|
+
ut as ApSummary,
|
|
214
|
+
B as ApTable,
|
|
215
|
+
xr as ApTableModal,
|
|
216
|
+
Ke as ApTag,
|
|
217
|
+
Ue as ApTagGroup,
|
|
218
|
+
tp as ApText,
|
|
219
|
+
ap as ApTextGroup,
|
|
220
|
+
Zr as ApTitle,
|
|
221
|
+
lr as ApTransformDataHelper,
|
|
222
|
+
je as ApUpload,
|
|
223
|
+
St as ApUploadSingle,
|
|
224
|
+
Dt as BatchInputGroup,
|
|
225
|
+
N as CheckCard,
|
|
226
|
+
Ze as CheckCardGroup,
|
|
227
|
+
ao as ConfigProvider,
|
|
228
|
+
U as DEFAULT_NAMESPACE,
|
|
229
|
+
z as DEFAULT_UIMODE,
|
|
230
|
+
ye as DictCode,
|
|
231
|
+
$t as EditableGrid,
|
|
232
|
+
ep as EditableGridFormItem,
|
|
233
|
+
yt as EditableTable,
|
|
234
|
+
wt as EditableTableFormItem,
|
|
235
|
+
qt as FullScreen,
|
|
236
|
+
zt as InternalScrollBar,
|
|
237
|
+
_e as NeedNameKeyDefault,
|
|
238
|
+
Ht as Portal,
|
|
239
|
+
Qt as ResizeObserver,
|
|
240
|
+
Ot as ScrollBar,
|
|
241
|
+
Wt as ScrollView,
|
|
242
|
+
Be as WorkOrderModal,
|
|
243
|
+
G as adminToken,
|
|
244
|
+
h as aplusToken,
|
|
245
|
+
J as buildLocaleContext,
|
|
246
|
+
Q as buildTranslator,
|
|
247
|
+
mt as computedRecords,
|
|
248
|
+
V as configProviderContextKey,
|
|
249
|
+
K as configProviderProps,
|
|
250
|
+
Mr as convertExportField,
|
|
251
|
+
Me as createWorkOrderModal,
|
|
252
|
+
oo as defaultNamespace,
|
|
253
|
+
kt as ensureRangeValue,
|
|
254
|
+
ft as flattenColumns,
|
|
255
|
+
lt as formatDataIndex,
|
|
256
|
+
dt as formatNumber,
|
|
257
|
+
mo as globalConfigCached,
|
|
258
|
+
Rr as handleExportDownload,
|
|
259
|
+
_ as keysOf,
|
|
260
|
+
Re as langMap,
|
|
261
|
+
X as localeContextKey,
|
|
262
|
+
Wr as locales,
|
|
263
|
+
eo as namespaceContextKey,
|
|
264
|
+
H as provideGlobalConfig,
|
|
265
|
+
Y as translate,
|
|
266
|
+
ro as useGetDerivedNamespace,
|
|
267
|
+
j as useGlobalConfig,
|
|
268
|
+
Z as useLocale,
|
|
269
|
+
to as useNamespace,
|
|
270
|
+
pt as usePageListApGrid,
|
|
271
|
+
ot as usePageListApTable,
|
|
272
|
+
Ar as useTableModal,
|
|
273
|
+
Lt as useTablePaging,
|
|
274
|
+
rt as useTableRefresh,
|
|
275
|
+
ir as useTableSelectModal
|
|
271
276
|
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { InjectionKey, Ref, StyleValue } from 'vue';
|
|
2
|
+
type ApTextGroupContextProps = {
|
|
3
|
+
colon?: Ref<boolean | undefined>;
|
|
4
|
+
vertical?: Ref<boolean | undefined>;
|
|
5
|
+
labelStyle?: Ref<StyleValue>;
|
|
6
|
+
};
|
|
7
|
+
export declare const ApTextGroupContextKey: InjectionKey<ApTextGroupContextProps>;
|
|
8
|
+
export declare function useProvideApTextGroup(state: ApTextGroupContextProps): void;
|
|
9
|
+
export declare function useInjectApTextGroup(): ApTextGroupContextProps;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { provide as t, inject as r } from "vue";
|
|
2
|
+
const o = Symbol("apTextGroupContextKey");
|
|
3
|
+
function p(e) {
|
|
4
|
+
t(o, e);
|
|
5
|
+
}
|
|
6
|
+
function i() {
|
|
7
|
+
return r(o, {
|
|
8
|
+
colon: void 0,
|
|
9
|
+
vertical: void 0,
|
|
10
|
+
labelStyle: void 0
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
export {
|
|
14
|
+
o as ApTextGroupContextKey,
|
|
15
|
+
i as useInjectApTextGroup,
|
|
16
|
+
p as useProvideApTextGroup
|
|
17
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ApTextGroupProps } from './interface';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, CSSProperties, ComponentProvideOptions } from 'vue';
|
|
3
|
+
import { SpaceSize } from '@aplus-frontend/antdv/es/space';
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
6
|
+
slots: {
|
|
7
|
+
default?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
refs: {};
|
|
10
|
+
rootEl: any;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: DefineComponent<ApTextGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ApTextGroupProps> & Readonly<{}>, {
|
|
14
|
+
size: number | "small" | "large" | "middle" | [ SpaceSize, SpaceSize];
|
|
15
|
+
wrap: boolean;
|
|
16
|
+
vertical: boolean;
|
|
17
|
+
direction: string;
|
|
18
|
+
labelStyle: CSSProperties;
|
|
19
|
+
colon: boolean;
|
|
20
|
+
align: string;
|
|
21
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
22
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
23
|
+
export default _default;
|
|
24
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
25
|
+
new (): {
|
|
26
|
+
$slots: S;
|
|
27
|
+
};
|
|
28
|
+
};
|