@aplus-frontend/ui 0.0.16 → 0.0.17
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 +42 -38
- package/es/src/ap-table/style/ap-table.css +6 -0
- package/es/src/check-card/checked.svg.mjs +4 -0
- package/es/src/check-card/context.d.ts +6 -0
- package/es/src/check-card/context.mjs +16 -0
- package/es/src/check-card/group.vue.d.ts +57 -0
- package/es/src/check-card/group.vue.mjs +57 -0
- package/es/src/check-card/group.vue2.mjs +4 -0
- package/es/src/check-card/index.d.ts +9 -0
- package/es/src/check-card/index.mjs +11 -0
- package/es/src/check-card/index.vue.d.ts +54 -0
- package/es/src/check-card/index.vue.mjs +4 -0
- package/es/src/check-card/index.vue2.mjs +133 -0
- package/es/src/check-card/interface.d.ts +100 -0
- package/es/src/check-card/interface.mjs +1 -0
- package/es/src/check-card/style/index.css +108 -0
- package/es/src/hooks/useControllableValue.mjs +15 -13
- package/es/src/index.d.ts +1 -0
- package/es/src/index.mjs +194 -190
- package/es/src/theme/ap-table/ap-table.css +6 -0
- package/es/src/theme/check-card/index.css +108 -0
- package/lib/index.js +1 -1
- package/lib/src/ap-table/style/ap-table.css +6 -0
- package/lib/src/check-card/checked.svg.js +1 -0
- package/lib/src/check-card/context.d.ts +6 -0
- package/lib/src/check-card/context.js +1 -0
- package/lib/src/check-card/group.vue.d.ts +57 -0
- package/lib/src/check-card/group.vue.js +1 -0
- package/lib/src/check-card/group.vue2.js +1 -0
- package/lib/src/check-card/index.d.ts +9 -0
- package/lib/src/check-card/index.js +1 -0
- package/lib/src/check-card/index.vue.d.ts +54 -0
- package/lib/src/check-card/index.vue.js +1 -0
- package/lib/src/check-card/index.vue2.js +1 -0
- package/lib/src/check-card/interface.d.ts +100 -0
- package/lib/src/check-card/interface.js +1 -0
- package/lib/src/check-card/style/index.css +108 -0
- package/lib/src/hooks/useControllableValue.js +1 -1
- package/lib/src/index.d.ts +1 -0
- package/lib/src/index.js +1 -1
- package/lib/src/theme/ap-table/ap-table.css +6 -0
- package/lib/src/theme/check-card/index.css +108 -0
- package/package.json +2 -2
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
.aplus-check-card {
|
|
2
|
+
border-radius: 4px;
|
|
3
|
+
position: relative;
|
|
4
|
+
}
|
|
5
|
+
.aplus-check-card--disabled {
|
|
6
|
+
background-color: #F9F9FA;
|
|
7
|
+
cursor: not-allowed;
|
|
8
|
+
}
|
|
9
|
+
.aplus-check-card--bordered {
|
|
10
|
+
outline: 1px solid var(--check-card-border-color);
|
|
11
|
+
}
|
|
12
|
+
.aplus-check-card-aplus:hover {
|
|
13
|
+
cursor: pointer;
|
|
14
|
+
outline: 1px solid #0070ff;
|
|
15
|
+
}
|
|
16
|
+
.aplus-check-card-aplus::after {
|
|
17
|
+
content: '';
|
|
18
|
+
position: absolute;
|
|
19
|
+
width: 0;
|
|
20
|
+
height: 0;
|
|
21
|
+
opacity: 0;
|
|
22
|
+
inset-block-start: -2px;
|
|
23
|
+
inset-inline-end: -2px;
|
|
24
|
+
border-inline-start: 16px solid transparent;
|
|
25
|
+
border-block-end: 16px solid transparent;
|
|
26
|
+
border-radius: 4px;
|
|
27
|
+
}
|
|
28
|
+
.aplus-check-card-aplus--checked {
|
|
29
|
+
outline: 2px solid #0070ff;
|
|
30
|
+
}
|
|
31
|
+
.aplus-check-card-aplus--checked:hover {
|
|
32
|
+
outline: 2px solid #0070ff;
|
|
33
|
+
}
|
|
34
|
+
.aplus-check-card-aplus--checked::after {
|
|
35
|
+
opacity: 1;
|
|
36
|
+
border: 16px solid #0070ff;
|
|
37
|
+
border-inline-start: 16px solid transparent;
|
|
38
|
+
border-block-end: 16px solid transparent;
|
|
39
|
+
inset-block-start: -2px;
|
|
40
|
+
inset-inline-end: -2px;
|
|
41
|
+
transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
42
|
+
}
|
|
43
|
+
.aplus-check-card-admin:hover {
|
|
44
|
+
cursor: pointer;
|
|
45
|
+
outline: 1px solid #34b77c;
|
|
46
|
+
}
|
|
47
|
+
.aplus-check-card-admin::after {
|
|
48
|
+
content: '';
|
|
49
|
+
position: absolute;
|
|
50
|
+
width: 0px;
|
|
51
|
+
height: 0px;
|
|
52
|
+
opacity: 0;
|
|
53
|
+
inset-block-start: -2px;
|
|
54
|
+
inset-inline-end: -2px;
|
|
55
|
+
border-inline-start: 16px solid transparent;
|
|
56
|
+
border-block-end: 16px solid transparent;
|
|
57
|
+
border-radius: 4px;
|
|
58
|
+
}
|
|
59
|
+
.aplus-check-card-admin--checked {
|
|
60
|
+
outline: 2px solid #34b77c;
|
|
61
|
+
}
|
|
62
|
+
.aplus-check-card-admin--checked:hover {
|
|
63
|
+
outline: 2px solid #34b77c;
|
|
64
|
+
}
|
|
65
|
+
.aplus-check-card-admin--checked::after {
|
|
66
|
+
content: '';
|
|
67
|
+
opacity: 1;
|
|
68
|
+
border: 16px solid #34b77c;
|
|
69
|
+
border-inline-start: 16px solid transparent;
|
|
70
|
+
border-block-end: 16px solid transparent;
|
|
71
|
+
inset-block-start: -2px;
|
|
72
|
+
inset-inline-end: -2px;
|
|
73
|
+
transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
74
|
+
}
|
|
75
|
+
.aplus-check-card--middle {
|
|
76
|
+
padding: 16px 24px;
|
|
77
|
+
}
|
|
78
|
+
.aplus-check-card--small {
|
|
79
|
+
padding: 12px 24px;
|
|
80
|
+
}
|
|
81
|
+
.aplus-check-card__title {
|
|
82
|
+
margin-bottom: 8px;
|
|
83
|
+
}
|
|
84
|
+
.aplus-check-card__title > span {
|
|
85
|
+
font-size: 14px;
|
|
86
|
+
line-height: 22px;
|
|
87
|
+
color: #333;
|
|
88
|
+
}
|
|
89
|
+
.aplus-check-card__title--disabled {
|
|
90
|
+
color: #ABB7CC;
|
|
91
|
+
}
|
|
92
|
+
.aplus-check-card__content {
|
|
93
|
+
font-size: 14px;
|
|
94
|
+
line-height: 22px;
|
|
95
|
+
color: #333;
|
|
96
|
+
}
|
|
97
|
+
.aplus-check-card__content--disabled {
|
|
98
|
+
color: #ABB7CC;
|
|
99
|
+
}
|
|
100
|
+
.aplus-check-card__checked-icon {
|
|
101
|
+
position: absolute;
|
|
102
|
+
top: 0;
|
|
103
|
+
right: 0;
|
|
104
|
+
z-index: 1;
|
|
105
|
+
-webkit-user-select: none;
|
|
106
|
+
-moz-user-select: none;
|
|
107
|
+
user-select: none;
|
|
108
|
+
}
|
|
@@ -1,21 +1,23 @@
|
|
|
1
|
-
import { ref as
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
)
|
|
6
|
-
|
|
7
|
-
a[u] === void 0 && (f.value = l), r(`update:${u}`, l);
|
|
1
|
+
import { ref as v, watch as V } from "vue";
|
|
2
|
+
import { isUndefined as d } from "lodash-unified";
|
|
3
|
+
function P(u, t, e) {
|
|
4
|
+
const f = (e == null ? void 0 : e.defaultValuePropName) || "defaultValue", a = (e == null ? void 0 : e.valuePropName) || "value", r = v(c());
|
|
5
|
+
function m(l) {
|
|
6
|
+
u[a] === void 0 && (r.value = l), t(`update:${a}`, l);
|
|
8
7
|
}
|
|
9
|
-
|
|
10
|
-
()
|
|
8
|
+
function c() {
|
|
9
|
+
return d(u[a]) ? d(u[f]) ? e == null ? void 0 : e.defaultValue : u[f] : u[a];
|
|
10
|
+
}
|
|
11
|
+
return V(
|
|
12
|
+
() => u[a],
|
|
11
13
|
(l) => {
|
|
12
|
-
|
|
14
|
+
r.value = l;
|
|
13
15
|
}
|
|
14
16
|
), {
|
|
15
|
-
value:
|
|
16
|
-
updateValue:
|
|
17
|
+
value: r,
|
|
18
|
+
updateValue: m
|
|
17
19
|
};
|
|
18
20
|
}
|
|
19
21
|
export {
|
|
20
|
-
|
|
22
|
+
P as useControllableValue
|
|
21
23
|
};
|
package/es/src/index.d.ts
CHANGED
package/es/src/index.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Icon as
|
|
1
|
+
import { Icon as i, SvgIcon as u } from "./icon/index.mjs";
|
|
2
2
|
import { APConfigProvider as A } from "./config-provider/index.mjs";
|
|
3
3
|
import { Scrollbar as F } from "./scroll-bar/index.mjs";
|
|
4
4
|
import { CollapseContainer as C, ScrollContainer as S } from "./container/index.mjs";
|
|
5
5
|
import { IconPicker as b } from "./icon-picker/index.mjs";
|
|
6
6
|
import "./locale/index.mjs";
|
|
7
7
|
import { BasicArrow as P, BasicHelp as D, BasicTitle as R } from "./basic/index.mjs";
|
|
8
|
-
import { ExpandTransition as
|
|
8
|
+
import { ExpandTransition as v, ExpandXTransition as k, FadeTransition as w, ScaleRotateTransition as B, ScaleTransition as M, ScrollXReverseTransition as G, ScrollXTransition as N, ScrollYReverseTransition as y, ScrollYTransition as E, SlideXReverseTransition as L, SlideXTransition as X, SlideYReverseTransition as K, SlideYTransition as Y } from "./transition/index.mjs";
|
|
9
9
|
import { Description as H } from "./description/index.mjs";
|
|
10
10
|
import { Field as z } from "./pro-form/index.mjs";
|
|
11
11
|
import { BaseButton as j } from "./base-button/index.mjs";
|
|
@@ -17,8 +17,8 @@ import { createPrompt as ao } from "./prompt/index.mjs";
|
|
|
17
17
|
import { Dropdown as fo } from "./dropdown/index.mjs";
|
|
18
18
|
import "./pro-table/index.mjs";
|
|
19
19
|
import { ApForm as lo } from "./ap-form/index.mjs";
|
|
20
|
-
import { ApField as
|
|
21
|
-
import { adminToken as
|
|
20
|
+
import { ApField as xo } from "./ap-field/index.mjs";
|
|
21
|
+
import { adminToken as uo, aplusToken as no } from "./design-token/index.mjs";
|
|
22
22
|
import { ApActionItem as co } from "./ap-action/index.mjs";
|
|
23
23
|
import "./ap-custom-column/index.mjs";
|
|
24
24
|
import "./work-order-modal/index.mjs";
|
|
@@ -26,176 +26,180 @@ import "./ap-tag/index.mjs";
|
|
|
26
26
|
import "./ap-layout/index.mjs";
|
|
27
27
|
import "./ap-upload/index.mjs";
|
|
28
28
|
import "./ap-download/index.mjs";
|
|
29
|
-
import {
|
|
29
|
+
import { CheckCard as To } from "./check-card/index.mjs";
|
|
30
|
+
import { ApTitle as So } from "./business/index.mjs";
|
|
30
31
|
import "./ap-table/index.mjs";
|
|
31
32
|
import "./editable-table/index.mjs";
|
|
32
|
-
import { configProviderProps as
|
|
33
|
-
import { configProviderContextKey as
|
|
34
|
-
import { keysOf as
|
|
35
|
-
import { buildLocaleContext as
|
|
36
|
-
import { defaultNamespace as
|
|
37
|
-
import { ConfigProvider as
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as
|
|
41
|
-
import { useDescription as
|
|
42
|
-
import { useComponentRegister as
|
|
43
|
-
import { useForm as
|
|
44
|
-
import { isComponentFormSchema 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 { default as
|
|
54
|
-
import { default as
|
|
55
|
-
import { default as
|
|
56
|
-
import { default as
|
|
57
|
-
import { useModalContext as
|
|
58
|
-
import { useModal as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as
|
|
61
|
-
import { default as
|
|
62
|
-
import { default as
|
|
63
|
-
import { useTable as
|
|
64
|
-
import { ApFormItemText as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as
|
|
69
|
-
import { default as
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
75
|
-
import { default as
|
|
76
|
-
import { default as
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
79
|
-
import { ApFieldText as
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { default as
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as
|
|
89
|
-
import { default as
|
|
90
|
-
import { default as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
95
|
-
import { default as
|
|
96
|
-
import { generateTableList as
|
|
97
|
-
import { useCacheColumnSetting as
|
|
98
|
-
import { default as
|
|
99
|
-
import { default as
|
|
100
|
-
import { DictCode as
|
|
101
|
-
import { createWorkOrderModal as
|
|
102
|
-
import { default as
|
|
103
|
-
import { default as
|
|
104
|
-
import { default as
|
|
105
|
-
import { default as
|
|
106
|
-
import { NeedNameKeyDefault as
|
|
107
|
-
import { default as
|
|
108
|
-
import { default as
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import { default as
|
|
112
|
-
import { default as
|
|
33
|
+
import { configProviderProps as bo } from "./config-provider/config-provider-props.mjs";
|
|
34
|
+
import { configProviderContextKey as Po, tableDefaultConfig as Do } from "./config-provider/constants.mjs";
|
|
35
|
+
import { keysOf as ho, provideGlobalConfig as vo, useGlobalConfig as ko } from "./config-provider/hooks/use-global-config.mjs";
|
|
36
|
+
import { buildLocaleContext as Bo, buildTranslator as Mo, localeContextKey as Go, translate as No, useLocale as yo } from "./config-provider/hooks/use-locale.mjs";
|
|
37
|
+
import { defaultNamespace as Lo, namespaceContextKey as Xo, useGetDerivedNamespace as Ko, useNamespace as Yo } from "./config-provider/hooks/use-namespace.mjs";
|
|
38
|
+
import { ConfigProvider as Ho } from "./config-provider/config-provider.mjs";
|
|
39
|
+
import { default as zo } from "./locale/lang/zh-cn.mjs";
|
|
40
|
+
import { default as jo } from "./locale/lang/en.mjs";
|
|
41
|
+
import { default as Jo } from "./transition/collapse-transition.vue.mjs";
|
|
42
|
+
import { useDescription as Vo } from "./description/use-description.mjs";
|
|
43
|
+
import { useComponentRegister as _o } from "./pro-form/hooks/use-component-register.mjs";
|
|
44
|
+
import { useForm as oe } from "./pro-form/hooks/use-form.mjs";
|
|
45
|
+
import { isComponentFormSchema as re, isSlotFormSchema as te } from "./pro-form/types/form.mjs";
|
|
46
|
+
import { default as pe } from "./pro-form/components/api-cascader.vue.mjs";
|
|
47
|
+
import { default as me } from "./pro-form/components/api-radio-group.vue.mjs";
|
|
48
|
+
import { default as de } from "./pro-form/components/api-select.vue.mjs";
|
|
49
|
+
import { default as xe } from "./pro-form/components/api-transfer.vue.mjs";
|
|
50
|
+
import { default as ue } from "./pro-form/components/api-tree.vue.mjs";
|
|
51
|
+
import { default as Ae } from "./pro-form/components/radio-button-group.vue.mjs";
|
|
52
|
+
import { default as Fe } from "./pro-form/pro-form.vue.mjs";
|
|
53
|
+
import { default as Ce } from "./pro-form/components/api-tree-select.vue.mjs";
|
|
54
|
+
import { default as Ie } from "./pro-form/table-form.vue.mjs";
|
|
55
|
+
import { default as ge } from "./pro-form/table-form-inner.vue.mjs";
|
|
56
|
+
import { default as De } from "./base-button/modal-button.vue.mjs";
|
|
57
|
+
import { default as he } from "./base-button/pop-confirm-button.vue.mjs";
|
|
58
|
+
import { useModalContext as ke } from "./modal/hooks/use-modal-context.mjs";
|
|
59
|
+
import { useModal as Be, useModalInner as Me } from "./modal/hooks/use-modal.mjs";
|
|
60
|
+
import { default as Ne } from "./pro-table/pro-table.vue.mjs";
|
|
61
|
+
import { default as Ee } from "./pro-table/components/table-action.vue.mjs";
|
|
62
|
+
import { default as Xe } from "./pro-table/components/edit-table-header-icon.vue.mjs";
|
|
63
|
+
import { default as Ye } from "./pro-table/components/table-image.vue.mjs";
|
|
64
|
+
import { useTable as He } from "./pro-table/hooks/use-table.mjs";
|
|
65
|
+
import { ApFormItemText as ze } from "./ap-form/items/text/index.mjs";
|
|
66
|
+
import { default as je } from "./ap-form/items/text-area/index.vue.mjs";
|
|
67
|
+
import { default as Je } from "./ap-form/items/number/index.vue.mjs";
|
|
68
|
+
import { default as Ve } from "./ap-form/items/date/index.vue.mjs";
|
|
69
|
+
import { default as _e } from "./ap-form/items/date-range/index.vue.mjs";
|
|
70
|
+
import { default as or } from "./ap-form/items/radio/index.vue.mjs";
|
|
71
|
+
import { default as rr } from "./ap-form/items/select/index.vue.mjs";
|
|
72
|
+
import { default as ar } from "./ap-form/items/switch/index.vue.mjs";
|
|
73
|
+
import { default as fr } from "./ap-form/items/checkbox/index.vue.mjs";
|
|
74
|
+
import { default as lr } from "./ap-form/items/text/password.vue.mjs";
|
|
75
|
+
import { default as sr } from "./ap-form/ap-form-item.vue.mjs";
|
|
76
|
+
import { default as ir } from "./ap-form/ap-form-item-group/index.vue.mjs";
|
|
77
|
+
import { default as nr } from "./ap-form/ap-form-list.vue.mjs";
|
|
78
|
+
import { default as cr } from "./ap-form/search-form/index.vue.mjs";
|
|
79
|
+
import { default as Tr } from "./ap-form/modal-form/index.vue.mjs";
|
|
80
|
+
import { ApFieldText as Sr } from "./ap-field/text/index.mjs";
|
|
81
|
+
import { default as br } from "./ap-field/checkbox/index.vue.mjs";
|
|
82
|
+
import { default as Pr } from "./ap-field/date/index.vue.mjs";
|
|
83
|
+
import { default as Rr } from "./ap-field/number/index.vue.mjs";
|
|
84
|
+
import { default as vr } from "./ap-field/radio/index.vue.mjs";
|
|
85
|
+
import { default as wr } from "./ap-field/switch/index.vue.mjs";
|
|
86
|
+
import { default as Mr } from "./ap-field/text-area/index.vue.mjs";
|
|
87
|
+
import { default as Nr } from "./ap-field/date-range/index.vue.mjs";
|
|
88
|
+
import { default as Er } from "./ap-field/select/index.vue.mjs";
|
|
89
|
+
import { default as Xr } from "./ap-field/text/password.vue.mjs";
|
|
90
|
+
import { default as Yr } from "./ap-field/slider/index.vue.mjs";
|
|
91
|
+
import { default as Hr } from "./ap-field/segmented/index.vue.mjs";
|
|
92
|
+
import { default as zr } from "./ap-field/rate/index.vue.mjs";
|
|
93
|
+
import { default as jr } from "./ap-action/item-modal/index.vue.mjs";
|
|
94
|
+
import { default as Jr } from "./ap-action/item-popconfirm/index.vue.mjs";
|
|
95
|
+
import { default as Vr } from "./ap-action/item-dropdown/index.vue.mjs";
|
|
96
|
+
import { default as _r } from "./ap-action/group/index.vue.mjs";
|
|
97
|
+
import { generateTableList as ot } from "./ap-custom-column/utils.mjs";
|
|
98
|
+
import { useCacheColumnSetting as rt } from "./ap-custom-column/useCacheColumnSetting.mjs";
|
|
99
|
+
import { default as at } from "./ap-custom-column/custom-column.vue.mjs";
|
|
100
|
+
import { default as ft } from "./ap-custom-column/column-select.vue.mjs";
|
|
101
|
+
import { DictCode as lt } from "./work-order-modal/interfaces.mjs";
|
|
102
|
+
import { createWorkOrderModal as st } from "./work-order-modal/createWorkOrder.mjs";
|
|
103
|
+
import { default as it } from "./work-order-modal/work-order-modal.vue.mjs";
|
|
104
|
+
import { default as nt } from "./ap-tag/ap-tag.vue.mjs";
|
|
105
|
+
import { default as ct } from "./ap-tag/ap-tag-group.vue.mjs";
|
|
106
|
+
import { default as Tt } from "./ap-layout/ap-info-layout/ap-info-layout.vue.mjs";
|
|
107
|
+
import { NeedNameKeyDefault as St } from "./ap-upload/apUploadTypes.mjs";
|
|
108
|
+
import { default as bt } from "./ap-upload/apUpload.vue.mjs";
|
|
109
|
+
import { default as Pt } from "./ap-download/ap-download.vue.mjs";
|
|
110
|
+
import { default as Rt } from "./check-card/group.vue.mjs";
|
|
111
|
+
import { useTablePaging as vt } from "./ap-table/hooks/use-table-paging.mjs";
|
|
112
|
+
import { default as wt } from "./ap-table/ap-table.vue.mjs";
|
|
113
|
+
import { default as Mt } from "./editable-table/index.vue.mjs";
|
|
114
|
+
import { default as Nt } from "./editable-table/form-item.vue.mjs";
|
|
113
115
|
export {
|
|
114
116
|
A as APConfigProvider,
|
|
115
|
-
|
|
117
|
+
_r as ApActionGroup,
|
|
116
118
|
co as ApActionItem,
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
119
|
+
Vr as ApActionItemDropdown,
|
|
120
|
+
jr as ApActionItemModal,
|
|
121
|
+
Jr as ApActionItemPopconfirm,
|
|
122
|
+
at as ApCustomColumn,
|
|
123
|
+
ft as ApCustomSelect,
|
|
124
|
+
Pt as ApDownload,
|
|
125
|
+
xo as ApField,
|
|
126
|
+
br as ApFieldCheckbox,
|
|
127
|
+
Pr as ApFieldDate,
|
|
128
|
+
Nr as ApFieldDateRange,
|
|
129
|
+
Rr as ApFieldNumber,
|
|
130
|
+
Xr as ApFieldPassword,
|
|
131
|
+
vr as ApFieldRadio,
|
|
132
|
+
zr as ApFieldRate,
|
|
133
|
+
Hr as ApFieldSegmented,
|
|
134
|
+
Er as ApFieldSelect,
|
|
135
|
+
Yr as ApFieldSlider,
|
|
136
|
+
wr as ApFieldSwitch,
|
|
137
|
+
Sr as ApFieldText,
|
|
138
|
+
Mr as ApFieldTextArea,
|
|
137
139
|
lo as ApForm,
|
|
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
|
-
|
|
140
|
+
sr as ApFormItem,
|
|
141
|
+
fr as ApFormItemCheckbox,
|
|
142
|
+
Ve as ApFormItemDate,
|
|
143
|
+
_e as ApFormItemDateRange,
|
|
144
|
+
ir as ApFormItemGroup,
|
|
145
|
+
Je as ApFormItemNumber,
|
|
146
|
+
or as ApFormItemRadio,
|
|
147
|
+
rr as ApFormItemSelect,
|
|
148
|
+
ar as ApFormItemSwitch,
|
|
149
|
+
ze as ApFormItemText,
|
|
150
|
+
je as ApFormItemTextArea,
|
|
151
|
+
lr as ApFormItemTextPassword,
|
|
152
|
+
nr as ApFormList,
|
|
153
|
+
Tr as ApFormModalForm,
|
|
154
|
+
cr as ApFormSearchForm,
|
|
155
|
+
Tt as ApInfoLayout,
|
|
156
|
+
wt as ApTable,
|
|
157
|
+
nt as ApTag,
|
|
158
|
+
ct as ApTagGroup,
|
|
159
|
+
So as ApTitle,
|
|
160
|
+
bt as ApUpload,
|
|
161
|
+
pe as ApiCascader,
|
|
162
|
+
me as ApiRadioGroup,
|
|
163
|
+
de as ApiSelect,
|
|
164
|
+
xe as ApiTransfer,
|
|
165
|
+
ue as ApiTree,
|
|
166
|
+
Ce as ApiTreeSelect,
|
|
165
167
|
j as BaseButton,
|
|
166
168
|
V as BaseModal,
|
|
167
169
|
P as BasicArrow,
|
|
168
170
|
D as BasicHelp,
|
|
169
171
|
R as BasicTitle,
|
|
172
|
+
To as CheckCard,
|
|
173
|
+
Rt as CheckCardGroup,
|
|
170
174
|
C as CollapseContainer,
|
|
171
|
-
|
|
172
|
-
|
|
175
|
+
Jo as CollapseTransition,
|
|
176
|
+
Ho as ConfigProvider,
|
|
173
177
|
eo as CountdownButton,
|
|
174
178
|
ro as CountdownInput,
|
|
175
179
|
_ as CropperAvatar,
|
|
176
180
|
$ as CropperImage,
|
|
177
181
|
H as Description,
|
|
178
|
-
|
|
182
|
+
lt as DictCode,
|
|
179
183
|
fo as Dropdown,
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
184
|
+
Xe as EditTableHeaderIcon,
|
|
185
|
+
Mt as EditableTable,
|
|
186
|
+
Nt as EditableTableFormItem,
|
|
187
|
+
v as ExpandTransition,
|
|
188
|
+
k as ExpandXTransition,
|
|
189
|
+
w as FadeTransition,
|
|
186
190
|
z as Field,
|
|
187
|
-
|
|
191
|
+
i as Icon,
|
|
188
192
|
b as IconPicker,
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
193
|
+
De as ModalButton,
|
|
194
|
+
St as NeedNameKeyDefault,
|
|
195
|
+
he as PopConfirmButton,
|
|
196
|
+
Fe as ProForm,
|
|
197
|
+
Ne as ProTable,
|
|
198
|
+
Ie as ProTableForm,
|
|
199
|
+
ge as ProTableFormInner,
|
|
200
|
+
Ae as RadioButtonGroup,
|
|
201
|
+
B as ScaleRotateTransition,
|
|
202
|
+
M as ScaleTransition,
|
|
199
203
|
S as ScrollContainer,
|
|
200
204
|
G as ScrollXReverseTransition,
|
|
201
205
|
N as ScrollXTransition,
|
|
@@ -207,41 +211,41 @@ export {
|
|
|
207
211
|
K as SlideYReverseTransition,
|
|
208
212
|
Y as SlideYTransition,
|
|
209
213
|
J as StrengthMeter,
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
214
|
+
u as SvgIcon,
|
|
215
|
+
Ee as TableAction,
|
|
216
|
+
Ye as TableImg,
|
|
217
|
+
it as WorkOrderModal,
|
|
218
|
+
uo as adminToken,
|
|
219
|
+
no as aplusToken,
|
|
220
|
+
Bo as buildLocaleContext,
|
|
221
|
+
Mo as buildTranslator,
|
|
222
|
+
Po as configProviderContextKey,
|
|
223
|
+
bo as configProviderProps,
|
|
220
224
|
ao as createPrompt,
|
|
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
|
-
|
|
225
|
+
st as createWorkOrderModal,
|
|
226
|
+
Lo as defaultNamespace,
|
|
227
|
+
jo as en,
|
|
228
|
+
ot as generateTableList,
|
|
229
|
+
re as isComponentFormSchema,
|
|
230
|
+
te as isSlotFormSchema,
|
|
231
|
+
ho as keysOf,
|
|
232
|
+
Go as localeContextKey,
|
|
233
|
+
Xo as namespaceContextKey,
|
|
234
|
+
vo as provideGlobalConfig,
|
|
235
|
+
Do as tableDefaultConfig,
|
|
236
|
+
No as translate,
|
|
237
|
+
rt as useCacheColumnSetting,
|
|
238
|
+
_o as useComponentRegister,
|
|
239
|
+
Vo as useDescription,
|
|
240
|
+
oe as useForm,
|
|
241
|
+
Ko as useGetDerivedNamespace,
|
|
242
|
+
ko as useGlobalConfig,
|
|
243
|
+
yo as useLocale,
|
|
244
|
+
Be as useModal,
|
|
245
|
+
ke as useModalContext,
|
|
246
|
+
Me as useModalInner,
|
|
247
|
+
Yo as useNamespace,
|
|
248
|
+
He as useTable,
|
|
249
|
+
vt as useTablePaging,
|
|
250
|
+
zo as zhCn
|
|
247
251
|
};
|
|
@@ -78,3 +78,9 @@
|
|
|
78
78
|
.aplus-ap-table .ant-table-small .ant-table-cell {
|
|
79
79
|
padding: 9px 16px !important;
|
|
80
80
|
}
|
|
81
|
+
.aplus-ap-table .ant-table-middle .ant-table-placeholder .ant-table-cell {
|
|
82
|
+
padding: 0 !important;
|
|
83
|
+
}
|
|
84
|
+
.aplus-ap-table .ant-table-small .ant-table-placeholder .ant-table-cell {
|
|
85
|
+
padding: 0 !important;
|
|
86
|
+
}
|