@whitesev/pops 2.1.0 → 2.1.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whitesev/pops",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "弹窗库",
5
5
  "$schema": "https://json.schemastore.org/package.json",
6
6
  "main": "dist/index.cjs.js",
package/src/Pops.ts CHANGED
@@ -36,7 +36,7 @@ class Pops {
36
36
  /** 配置 */
37
37
  config = {
38
38
  /** 版本号 */
39
- version: "2025.6.6",
39
+ version: "2025.6.10",
40
40
  cssText: PopsCSS,
41
41
  /** icon图标的svg代码 */
42
42
  iconSVG: PopsIcon.$data,
@@ -162,18 +162,27 @@ table.pops-folder-list-table__body {
162
162
  }
163
163
  .pops-folder-content .pops-folder-list {
164
164
  height: 100%;
165
+ display: flex;
166
+ flex-direction: column;
165
167
  }
166
168
  .pops-folder-content .pops-folder-list-table__body-div {
167
169
  height: 100%;
168
- padding-bottom: 85px;
170
+ flex: 1 auto;
171
+ overflow: auto;
172
+ padding-bottom: 0;
169
173
  }
170
174
  .pops-mobile-folder-content .pops-folder-list-table__body-div {
171
175
  height: 100%;
172
- padding-bottom: 40px;
176
+ flex: 1 auto;
177
+ overflow: auto;
178
+ padding-bottom: 0;
173
179
  }
174
180
  .pops-folder-content table.pops-folder-list-table__body {
175
181
  overflow: auto;
176
182
  }
183
+ .pops-folder-content .pops-folder-list-table__header-div {
184
+ flex: 0;
185
+ }
177
186
  .pops-mobile-folder-content .pops-folder-list-table__header-div {
178
187
  display: none;
179
188
  }
@@ -216,6 +225,7 @@ table.pops-folder-list-table__body {
216
225
  vertical-align: middle;
217
226
  }
218
227
  .pops-folder-list .pops-folder-file-list-breadcrumb-primary {
228
+ flex: 0;
219
229
  display: -webkit-box;
220
230
  display: -webkit-flex;
221
231
  display: -ms-flexbox;