resolver-egretimp-plus 0.1.143 → 0.1.145
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/dist/h5/index.js +2 -2
- package/dist/theme/element/index.css +1 -1
- package/dist/theme/element/src/components/collapse.scss +7 -14
- package/dist/web/index.js +2 -2
- package/package.json +1 -1
- package/src/analysisComponent.jsx +94 -41
- package/src/components/helper/eventOrchestration.js +2 -2
- package/src/theme/element/components/collapse.scss +7 -14
- package/src/utils/render.jsx +1 -1
|
@@ -121,24 +121,17 @@
|
|
|
121
121
|
margin-bottom: 16px;
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
-
//
|
|
125
|
-
//
|
|
126
|
-
|
|
127
|
-
// }
|
|
128
|
-
.CustomComponentCollapse.is-card:has(+ .CustomComponentCollapse.is-card) {
|
|
124
|
+
// 当卡片组件、被包裹的折叠组件、页签组件相邻排列时,给前面的组件添加 16px 底部间距
|
|
125
|
+
// 卡片组件后面紧跟被包裹的折叠组件、卡片组件或页签组件时
|
|
126
|
+
.CustomComponentCard.is-card:has(+ .CustomComponentCollapse.is-card, + .CustomComponentCard.is-card, + .CustomComponentTabs) {
|
|
129
127
|
margin-bottom: 16px;
|
|
130
128
|
}
|
|
131
|
-
|
|
132
|
-
.CustomComponentCollapse.is-card:has(+ .CustomComponentCard.is-card) {
|
|
133
|
-
margin-bottom: 16px;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.CustomComponentCard.is-card:has(+ .CustomComponentCollapse.is-card) {
|
|
129
|
+
// 被包裹的折叠组件后面紧跟同类组件、卡片组件或页签组件时
|
|
130
|
+
.CustomComponentCollapse.is-card:has(+ .CustomComponentCollapse.is-card, + .CustomComponentCard.is-card, + .CustomComponentTabs) {
|
|
137
131
|
margin-bottom: 16px;
|
|
138
132
|
}
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
.CustomComponentCard.is-card:has(+ .CustomComponentCard.is-card) {
|
|
133
|
+
// 页签组件后面紧跟被包裹的折叠组件、卡片组件或页签组件时
|
|
134
|
+
.CustomComponentTabs:has(+ .CustomComponentCollapse.is-card, + .CustomComponentCard.is-card, + .CustomComponentTabs) {
|
|
142
135
|
margin-bottom: 16px;
|
|
143
136
|
}
|
|
144
137
|
|