@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.
Files changed (43) hide show
  1. package/es/index.mjs +42 -38
  2. package/es/src/ap-table/style/ap-table.css +6 -0
  3. package/es/src/check-card/checked.svg.mjs +4 -0
  4. package/es/src/check-card/context.d.ts +6 -0
  5. package/es/src/check-card/context.mjs +16 -0
  6. package/es/src/check-card/group.vue.d.ts +57 -0
  7. package/es/src/check-card/group.vue.mjs +57 -0
  8. package/es/src/check-card/group.vue2.mjs +4 -0
  9. package/es/src/check-card/index.d.ts +9 -0
  10. package/es/src/check-card/index.mjs +11 -0
  11. package/es/src/check-card/index.vue.d.ts +54 -0
  12. package/es/src/check-card/index.vue.mjs +4 -0
  13. package/es/src/check-card/index.vue2.mjs +133 -0
  14. package/es/src/check-card/interface.d.ts +100 -0
  15. package/es/src/check-card/interface.mjs +1 -0
  16. package/es/src/check-card/style/index.css +108 -0
  17. package/es/src/hooks/useControllableValue.mjs +15 -13
  18. package/es/src/index.d.ts +1 -0
  19. package/es/src/index.mjs +194 -190
  20. package/es/src/theme/ap-table/ap-table.css +6 -0
  21. package/es/src/theme/check-card/index.css +108 -0
  22. package/lib/index.js +1 -1
  23. package/lib/src/ap-table/style/ap-table.css +6 -0
  24. package/lib/src/check-card/checked.svg.js +1 -0
  25. package/lib/src/check-card/context.d.ts +6 -0
  26. package/lib/src/check-card/context.js +1 -0
  27. package/lib/src/check-card/group.vue.d.ts +57 -0
  28. package/lib/src/check-card/group.vue.js +1 -0
  29. package/lib/src/check-card/group.vue2.js +1 -0
  30. package/lib/src/check-card/index.d.ts +9 -0
  31. package/lib/src/check-card/index.js +1 -0
  32. package/lib/src/check-card/index.vue.d.ts +54 -0
  33. package/lib/src/check-card/index.vue.js +1 -0
  34. package/lib/src/check-card/index.vue2.js +1 -0
  35. package/lib/src/check-card/interface.d.ts +100 -0
  36. package/lib/src/check-card/interface.js +1 -0
  37. package/lib/src/check-card/style/index.css +108 -0
  38. package/lib/src/hooks/useControllableValue.js +1 -1
  39. package/lib/src/index.d.ts +1 -0
  40. package/lib/src/index.js +1 -1
  41. package/lib/src/theme/ap-table/ap-table.css +6 -0
  42. package/lib/src/theme/check-card/index.css +108 -0
  43. 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 c, watch as m } from "vue";
2
- function N(a, r, e) {
3
- const d = (e == null ? void 0 : e.defaultValuePropName) || "defaultValue", u = (e == null ? void 0 : e.valuePropName) || "value", f = c(
4
- a[u] || a[d] || (e == null ? void 0 : e.defaultValue)
5
- );
6
- function v(l) {
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
- return m(
10
- () => a[u],
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
- f.value = l;
14
+ r.value = l;
13
15
  }
14
16
  ), {
15
- value: f,
16
- updateValue: v
17
+ value: r,
18
+ updateValue: m
17
19
  };
18
20
  }
19
21
  export {
20
- N as useControllableValue
22
+ P as useControllableValue
21
23
  };
package/es/src/index.d.ts CHANGED
@@ -26,6 +26,7 @@ export * from './ap-tag';
26
26
  export * from './ap-layout';
27
27
  export * from './ap-upload';
28
28
  export * from './ap-download';
29
+ export * from './check-card';
29
30
  export * from './business';
30
31
  export * from './ap-table';
31
32
  export * from './editable-table';
package/es/src/index.mjs CHANGED
@@ -1,11 +1,11 @@
1
- import { Icon as x, SvgIcon as n } from "./icon/index.mjs";
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 h, ExpandXTransition as w, FadeTransition as B, ScaleRotateTransition as M, ScaleTransition as k, 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";
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 io } from "./ap-field/index.mjs";
21
- import { adminToken as no, aplusToken as uo } from "./design-token/index.mjs";
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 { ApTitle as To } from "./business/index.mjs";
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 So } from "./config-provider/config-provider-props.mjs";
33
- import { configProviderContextKey as bo, tableDefaultConfig as go } from "./config-provider/constants.mjs";
34
- import { keysOf as Do, provideGlobalConfig as Ro, useGlobalConfig as vo } from "./config-provider/hooks/use-global-config.mjs";
35
- import { buildLocaleContext as wo, buildTranslator as Bo, localeContextKey as Mo, translate as ko, useLocale as Go } from "./config-provider/hooks/use-locale.mjs";
36
- import { defaultNamespace as yo, namespaceContextKey as Eo, useGetDerivedNamespace as Lo, useNamespace as Xo } from "./config-provider/hooks/use-namespace.mjs";
37
- import { ConfigProvider as Yo } from "./config-provider/config-provider.mjs";
38
- import { default as Ho } from "./locale/lang/zh-cn.mjs";
39
- import { default as zo } from "./locale/lang/en.mjs";
40
- import { default as jo } from "./transition/collapse-transition.vue.mjs";
41
- import { useDescription as Jo } from "./description/use-description.mjs";
42
- import { useComponentRegister as Vo } from "./pro-form/hooks/use-component-register.mjs";
43
- import { useForm as _o } from "./pro-form/hooks/use-form.mjs";
44
- import { isComponentFormSchema as oe, isSlotFormSchema as ee } from "./pro-form/types/form.mjs";
45
- import { default as te } from "./pro-form/components/api-cascader.vue.mjs";
46
- import { default as pe } from "./pro-form/components/api-radio-group.vue.mjs";
47
- import { default as me } from "./pro-form/components/api-select.vue.mjs";
48
- import { default as de } from "./pro-form/components/api-transfer.vue.mjs";
49
- import { default as ie } from "./pro-form/components/api-tree.vue.mjs";
50
- import { default as ne } from "./pro-form/components/radio-button-group.vue.mjs";
51
- import { default as Ae } from "./pro-form/pro-form.vue.mjs";
52
- import { default as Fe } from "./pro-form/components/api-tree-select.vue.mjs";
53
- import { default as Ce } from "./pro-form/table-form.vue.mjs";
54
- import { default as Ie } from "./pro-form/table-form-inner.vue.mjs";
55
- import { default as ge } from "./base-button/modal-button.vue.mjs";
56
- import { default as De } from "./base-button/pop-confirm-button.vue.mjs";
57
- import { useModalContext as ve } from "./modal/hooks/use-modal-context.mjs";
58
- import { useModal as we, useModalInner as Be } from "./modal/hooks/use-modal.mjs";
59
- import { default as ke } from "./pro-table/pro-table.vue.mjs";
60
- import { default as Ne } from "./pro-table/components/table-action.vue.mjs";
61
- import { default as Ee } from "./pro-table/components/edit-table-header-icon.vue.mjs";
62
- import { default as Xe } from "./pro-table/components/table-image.vue.mjs";
63
- import { useTable as Ye } from "./pro-table/hooks/use-table.mjs";
64
- import { ApFormItemText as He } from "./ap-form/items/text/index.mjs";
65
- import { default as ze } from "./ap-form/items/text-area/index.vue.mjs";
66
- import { default as je } from "./ap-form/items/number/index.vue.mjs";
67
- import { default as Je } from "./ap-form/items/date/index.vue.mjs";
68
- import { default as Ve } from "./ap-form/items/date-range/index.vue.mjs";
69
- import { default as _e } from "./ap-form/items/radio/index.vue.mjs";
70
- import { default as or } from "./ap-form/items/select/index.vue.mjs";
71
- import { default as rr } from "./ap-form/items/switch/index.vue.mjs";
72
- import { default as ar } from "./ap-form/items/checkbox/index.vue.mjs";
73
- import { default as fr } from "./ap-form/items/text/password.vue.mjs";
74
- import { default as lr } from "./ap-form/ap-form-item.vue.mjs";
75
- import { default as sr } from "./ap-form/ap-form-item-group/index.vue.mjs";
76
- import { default as xr } from "./ap-form/ap-form-list.vue.mjs";
77
- import { default as ur } from "./ap-form/search-form/index.vue.mjs";
78
- import { default as cr } from "./ap-form/modal-form/index.vue.mjs";
79
- import { ApFieldText as Tr } from "./ap-field/text/index.mjs";
80
- import { default as Sr } from "./ap-field/checkbox/index.vue.mjs";
81
- import { default as br } from "./ap-field/date/index.vue.mjs";
82
- import { default as Pr } from "./ap-field/number/index.vue.mjs";
83
- import { default as Rr } from "./ap-field/radio/index.vue.mjs";
84
- import { default as hr } from "./ap-field/switch/index.vue.mjs";
85
- import { default as Br } from "./ap-field/text-area/index.vue.mjs";
86
- import { default as kr } from "./ap-field/date-range/index.vue.mjs";
87
- import { default as Nr } from "./ap-field/select/index.vue.mjs";
88
- import { default as Er } from "./ap-field/text/password.vue.mjs";
89
- import { default as Xr } from "./ap-field/slider/index.vue.mjs";
90
- import { default as Yr } from "./ap-field/segmented/index.vue.mjs";
91
- import { default as Hr } from "./ap-field/rate/index.vue.mjs";
92
- import { default as zr } from "./ap-action/item-modal/index.vue.mjs";
93
- import { default as jr } from "./ap-action/item-popconfirm/index.vue.mjs";
94
- import { default as Jr } from "./ap-action/item-dropdown/index.vue.mjs";
95
- import { default as Vr } from "./ap-action/group/index.vue.mjs";
96
- import { generateTableList as _r } from "./ap-custom-column/utils.mjs";
97
- import { useCacheColumnSetting as ot } from "./ap-custom-column/useCacheColumnSetting.mjs";
98
- import { default as rt } from "./ap-custom-column/custom-column.vue.mjs";
99
- import { default as at } from "./ap-custom-column/column-select.vue.mjs";
100
- import { DictCode as ft } from "./work-order-modal/interfaces.mjs";
101
- import { createWorkOrderModal as lt } from "./work-order-modal/createWorkOrder.mjs";
102
- import { default as st } from "./work-order-modal/work-order-modal.vue.mjs";
103
- import { default as xt } from "./ap-tag/ap-tag.vue.mjs";
104
- import { default as ut } from "./ap-tag/ap-tag-group.vue.mjs";
105
- import { default as ct } from "./ap-layout/ap-info-layout/ap-info-layout.vue.mjs";
106
- import { NeedNameKeyDefault as Tt } from "./ap-upload/apUploadTypes.mjs";
107
- import { default as St } from "./ap-upload/apUpload.vue.mjs";
108
- import { default as bt } from "./ap-download/ap-download.vue.mjs";
109
- import { useTablePaging as Pt } from "./ap-table/hooks/use-table-paging.mjs";
110
- import { default as Rt } from "./ap-table/ap-table.vue.mjs";
111
- import { default as ht } from "./editable-table/index.vue.mjs";
112
- import { default as Bt } from "./editable-table/form-item.vue.mjs";
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
- Vr as ApActionGroup,
117
+ _r as ApActionGroup,
116
118
  co as ApActionItem,
117
- Jr as ApActionItemDropdown,
118
- zr as ApActionItemModal,
119
- jr as ApActionItemPopconfirm,
120
- rt as ApCustomColumn,
121
- at as ApCustomSelect,
122
- bt as ApDownload,
123
- io as ApField,
124
- Sr as ApFieldCheckbox,
125
- br as ApFieldDate,
126
- kr as ApFieldDateRange,
127
- Pr as ApFieldNumber,
128
- Er as ApFieldPassword,
129
- Rr as ApFieldRadio,
130
- Hr as ApFieldRate,
131
- Yr as ApFieldSegmented,
132
- Nr as ApFieldSelect,
133
- Xr as ApFieldSlider,
134
- hr as ApFieldSwitch,
135
- Tr as ApFieldText,
136
- Br as ApFieldTextArea,
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
- lr as ApFormItem,
139
- ar as ApFormItemCheckbox,
140
- Je as ApFormItemDate,
141
- Ve as ApFormItemDateRange,
142
- sr as ApFormItemGroup,
143
- je as ApFormItemNumber,
144
- _e as ApFormItemRadio,
145
- or as ApFormItemSelect,
146
- rr as ApFormItemSwitch,
147
- He as ApFormItemText,
148
- ze as ApFormItemTextArea,
149
- fr as ApFormItemTextPassword,
150
- xr as ApFormList,
151
- cr as ApFormModalForm,
152
- ur as ApFormSearchForm,
153
- ct as ApInfoLayout,
154
- Rt as ApTable,
155
- xt as ApTag,
156
- ut as ApTagGroup,
157
- To as ApTitle,
158
- St as ApUpload,
159
- te as ApiCascader,
160
- pe as ApiRadioGroup,
161
- me as ApiSelect,
162
- de as ApiTransfer,
163
- ie as ApiTree,
164
- Fe as ApiTreeSelect,
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
- jo as CollapseTransition,
172
- Yo as ConfigProvider,
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
- ft as DictCode,
182
+ lt as DictCode,
179
183
  fo as Dropdown,
180
- Ee as EditTableHeaderIcon,
181
- ht as EditableTable,
182
- Bt as EditableTableFormItem,
183
- h as ExpandTransition,
184
- w as ExpandXTransition,
185
- B as FadeTransition,
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
- x as Icon,
191
+ i as Icon,
188
192
  b as IconPicker,
189
- ge as ModalButton,
190
- Tt as NeedNameKeyDefault,
191
- De as PopConfirmButton,
192
- Ae as ProForm,
193
- ke as ProTable,
194
- Ce as ProTableForm,
195
- Ie as ProTableFormInner,
196
- ne as RadioButtonGroup,
197
- M as ScaleRotateTransition,
198
- k as ScaleTransition,
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
- n as SvgIcon,
211
- Ne as TableAction,
212
- Xe as TableImg,
213
- st as WorkOrderModal,
214
- no as adminToken,
215
- uo as aplusToken,
216
- wo as buildLocaleContext,
217
- Bo as buildTranslator,
218
- bo as configProviderContextKey,
219
- So as configProviderProps,
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
- lt as createWorkOrderModal,
222
- yo as defaultNamespace,
223
- zo as en,
224
- _r as generateTableList,
225
- oe as isComponentFormSchema,
226
- ee as isSlotFormSchema,
227
- Do as keysOf,
228
- Mo as localeContextKey,
229
- Eo as namespaceContextKey,
230
- Ro as provideGlobalConfig,
231
- go as tableDefaultConfig,
232
- ko as translate,
233
- ot as useCacheColumnSetting,
234
- Vo as useComponentRegister,
235
- Jo as useDescription,
236
- _o as useForm,
237
- Lo as useGetDerivedNamespace,
238
- vo as useGlobalConfig,
239
- Go as useLocale,
240
- we as useModal,
241
- ve as useModalContext,
242
- Be as useModalInner,
243
- Xo as useNamespace,
244
- Ye as useTable,
245
- Pt as useTablePaging,
246
- Ho as zhCn
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
+ }