@aplus-frontend/ui 6.17.1 → 6.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/src/ap-grid/index.vue.mjs +8 -1
- package/es/src/ap-grid/utils/table.d.ts +1 -1
- package/es/src/ap-grid/utils/table.mjs +31 -31
- package/es/src/business/ap-draggable-grid/ApDraggableGrid.vue.d.ts +11 -18
- package/es/src/business/ap-draggable-grid/ApDraggableGrid.vue2.mjs +394 -142
- package/es/src/business/ap-draggable-grid/constans.d.ts +4 -8
- package/es/src/business/ap-draggable-grid/constans.mjs +4 -8
- package/es/src/business/ap-draggable-grid/index.d.ts +17 -30
- package/es/src/business/ap-draggable-grid/interface.d.ts +2 -0
- package/es/src/version.d.ts +1 -1
- package/es/src/version.mjs +1 -1
- package/lib/src/ap-grid/index.vue.js +1 -1
- package/lib/src/ap-grid/utils/table.d.ts +1 -1
- package/lib/src/ap-grid/utils/table.js +1 -1
- package/lib/src/business/ap-draggable-grid/ApDraggableGrid.vue.d.ts +11 -18
- package/lib/src/business/ap-draggable-grid/ApDraggableGrid.vue2.js +1 -1
- package/lib/src/business/ap-draggable-grid/constans.d.ts +4 -8
- package/lib/src/business/ap-draggable-grid/constans.js +1 -1
- package/lib/src/business/ap-draggable-grid/index.d.ts +17 -30
- package/lib/src/business/ap-draggable-grid/interface.d.ts +2 -0
- package/lib/src/version.d.ts +1 -1
- package/lib/src/version.js +1 -1
- package/package.json +3 -3
- package/theme/ap-descriptions/ap-descriptions.css +1 -1
- package/theme/ap-descriptions/ap-descriptions.less +1 -1
- package/theme/ap-draggable-grid/ap-draggable-grid.css +8 -5
- package/theme/ap-draggable-grid/ap-draggable-grid.less +10 -4
- package/theme/index.css +9 -6
package/theme/index.css
CHANGED
|
@@ -860,7 +860,7 @@
|
|
|
860
860
|
padding-bottom: var(--ap-descriptions-item-padding-bottom, 16px);
|
|
861
861
|
}
|
|
862
862
|
.aplus-ap-descriptions .ant-descriptions th.ant-descriptions-item {
|
|
863
|
-
padding-bottom:
|
|
863
|
+
padding-bottom: 4px;
|
|
864
864
|
}
|
|
865
865
|
.aplus-ap-descriptions .ant-descriptions .ant-descriptions-row:last-child .ant-descriptions-item {
|
|
866
866
|
padding-bottom: var(--ap-descriptions-last-row-item-padding-bottom, 0px);
|
|
@@ -4111,20 +4111,24 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
4111
4111
|
grid-template-columns: repeat(24, 1fr);
|
|
4112
4112
|
/* 固定24列布局 */
|
|
4113
4113
|
width: 100%;
|
|
4114
|
-
padding: 20px;
|
|
4115
4114
|
box-sizing: border-box;
|
|
4116
4115
|
}
|
|
4117
4116
|
.aplus-ap-draggable-grid__item {
|
|
4118
4117
|
background: #fff;
|
|
4119
|
-
border-radius:
|
|
4118
|
+
border-radius: 4px;
|
|
4120
4119
|
display: flex;
|
|
4121
4120
|
align-items: center;
|
|
4122
4121
|
justify-content: center;
|
|
4123
|
-
transition: all 0.3s ease;
|
|
4124
4122
|
overflow: hidden;
|
|
4123
|
+
transition: all 0.3s ease;
|
|
4124
|
+
}
|
|
4125
|
+
.aplus-ap-draggable-grid--canDrag:hover {
|
|
4126
|
+
border: 1px solid var(--ap-color-primary);
|
|
4125
4127
|
}
|
|
4126
4128
|
.aplus-ap-draggable-grid--dragging {
|
|
4127
4129
|
cursor: move;
|
|
4130
|
+
z-index: 100;
|
|
4131
|
+
opacity: 0.8;
|
|
4128
4132
|
}
|
|
4129
4133
|
.aplus-ap-draggable-grid__dragging {
|
|
4130
4134
|
opacity: 0.5;
|
|
@@ -4132,8 +4136,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
4132
4136
|
z-index: 999;
|
|
4133
4137
|
}
|
|
4134
4138
|
.aplus-ap-draggable-grid__overlay {
|
|
4135
|
-
|
|
4136
|
-
border: 2px dashed #e0ebfa;
|
|
4139
|
+
border: 1px solid var(--ap-color-primary);
|
|
4137
4140
|
}
|
|
4138
4141
|
.aplus-ap-draggable-grid-loading {
|
|
4139
4142
|
display: flex;
|