@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/dist/index.amd.js +3 -3
- package/dist/index.amd.js.map +1 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.iife.js +3 -3
- package/dist/index.iife.js.map +1 -1
- package/dist/index.system.js +3 -3
- package/dist/index.system.js.map +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/Pops.ts +1 -1
- package/src/components/panel/index.css +7 -0
- package/src/css/index.css +1 -0
package/package.json
CHANGED
package/src/Pops.ts
CHANGED
|
@@ -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