@whitesev/pops 1.9.3 → 1.9.5

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": "1.9.3",
3
+ "version": "1.9.5",
4
4
  "description": "弹窗库",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
package/src/Pops.ts CHANGED
@@ -83,7 +83,7 @@ class Pops {
83
83
  /** 配置 */
84
84
  config = {
85
85
  /** 版本号 */
86
- version: "2024.11.24",
86
+ version: "2024.12.8",
87
87
  cssText: {
88
88
  /** 主CSS */
89
89
  index: indexCSS,
@@ -1068,4 +1068,11 @@ section.pops-panel-container
1068
1068
  align-items: center;
1069
1069
  cursor: pointer;
1070
1070
  }
1071
+ /* 修复safari上图标大小未正常显示 */
1072
+ .pops-panel-deepMenu-container
1073
+ .pops-panel-deepMenu-container-left-arrow-icon
1074
+ > svg {
1075
+ width: inherit;
1076
+ height: inherit;
1077
+ }
1071
1078
  /* deepMenu的css */
package/src/css/index.css CHANGED
@@ -22,6 +22,7 @@
22
22
  border-radius: 4px;
23
23
  border: 1px solid rgb(235, 238, 245, var(--pops-bd-opacity));
24
24
  font-size: var(--pops-font-size);
25
+ line-height: normal;
25
26
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
26
27
  box-sizing: border-box;
27
28
  overflow: hidden;