@whitesev/pops 2.3.7 → 2.3.8
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 +7 -4
- package/dist/index.amd.js.map +1 -1
- package/dist/index.cjs.js +7 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +7 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/index.iife.js +7 -4
- package/dist/index.iife.js.map +1 -1
- package/dist/index.system.js +7 -4
- package/dist/index.system.js.map +1 -1
- package/dist/index.umd.js +7 -4
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -11033,7 +11033,7 @@ const PopsSearchSuggestion = {
|
|
|
11033
11033
|
let $el = popsDOMUtils.createElement("div", {
|
|
11034
11034
|
className: `pops pops-${popsType}-search-suggestion`,
|
|
11035
11035
|
innerHTML: /*html*/ `
|
|
11036
|
-
<style>
|
|
11036
|
+
<style type="text/css">
|
|
11037
11037
|
.pops-${popsType}-animation{
|
|
11038
11038
|
-moz-animation: searchSelectFalIn 0.5s 1 linear;
|
|
11039
11039
|
-webkit-animation: searchSelectFalIn 0.5s 1 linear;
|
|
@@ -11041,7 +11041,7 @@ const PopsSearchSuggestion = {
|
|
|
11041
11041
|
-ms-animation: searchSelectFalIn 0.5s 1 linear;
|
|
11042
11042
|
}
|
|
11043
11043
|
</style>
|
|
11044
|
-
<style>
|
|
11044
|
+
<style type="text/css">
|
|
11045
11045
|
.pops-${popsType}-search-suggestion-arrow{
|
|
11046
11046
|
--suggestion-arrow-box-shadow-left-color: rgba(0, 0, 0, 0.24);
|
|
11047
11047
|
--suggestion-arrow-box-shadow-right-color: rgba(0, 0, 0, 0.12);
|
|
@@ -11107,7 +11107,7 @@ const PopsSearchSuggestion = {
|
|
|
11107
11107
|
content: "";
|
|
11108
11108
|
}
|
|
11109
11109
|
</style>
|
|
11110
|
-
<style data-dynamic="true">
|
|
11110
|
+
<style type="text/css" data-dynamic="true">
|
|
11111
11111
|
${this.getDynamicCSS()}
|
|
11112
11112
|
</style>
|
|
11113
11113
|
<style>
|
|
@@ -11129,6 +11129,9 @@ const PopsSearchSuggestion = {
|
|
|
11129
11129
|
transform: scaleY(1);
|
|
11130
11130
|
}
|
|
11131
11131
|
</style>
|
|
11132
|
+
<style type="text/css" data-user-css>
|
|
11133
|
+
${config.style || ""}
|
|
11134
|
+
</style>
|
|
11132
11135
|
<ul class="pops-${popsType}-search-suggestion-hint ${PopsCommonCSSClassName.userSelectNone}">${config.toSearhNotResultHTML}</ul>
|
|
11133
11136
|
${config.useArrow ? /*html*/ `<div class="pops-${popsType}-search-suggestion-arrow"></div>` : ""}
|
|
11134
11137
|
`,
|
|
@@ -11645,7 +11648,7 @@ class Pops {
|
|
|
11645
11648
|
/** 配置 */
|
|
11646
11649
|
config = {
|
|
11647
11650
|
/** 版本号 */
|
|
11648
|
-
version: "2025.
|
|
11651
|
+
version: "2025.9.2",
|
|
11649
11652
|
cssText: PopsCSS,
|
|
11650
11653
|
/** icon图标的svg代码 */
|
|
11651
11654
|
iconSVG: PopsIcon.$data,
|