pb-sxp-ui 1.0.100 → 1.0.102
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.cjs +188 -139
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +10 -3
- package/dist/index.js +189 -139
- package/dist/index.js.map +1 -1
- package/dist/index.min.cjs +3 -3
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.js +3 -3
- package/dist/index.min.js.map +1 -1
- package/dist/pb-ui.js +188 -139
- package/dist/pb-ui.js.map +1 -1
- package/dist/pb-ui.min.js +3 -3
- package/dist/pb-ui.min.js.map +1 -1
- package/es/core/components/SxpPageRender/ExpandableText.js +3 -1
- package/es/core/components/SxpPageRender/Nudge/index.d.ts +2 -0
- package/es/core/components/SxpPageRender/Nudge/index.js +5 -2
- package/es/core/components/SxpPageRender/Tagbar.d.ts +1 -0
- package/es/core/components/SxpPageRender/Tagbar.js +2 -2
- package/es/core/components/SxpPageRender/VideoWidget/VideoPlayer.d.ts +1 -0
- package/es/core/components/SxpPageRender/VideoWidget/VideoPlayer.js +22 -0
- package/es/core/components/SxpPageRender/VideoWidget/index.d.ts +0 -1
- package/es/core/components/SxpPageRender/VideoWidget/index.js +93 -85
- package/es/core/components/SxpPageRender/index.js +10 -27
- package/es/materials/sxp/popup/AppointForm/settingRender.js +2 -2
- package/es/materials/sxp/popup/CommodityDetail/index.js +4 -3
- package/es/materials/sxp/popup/CommodityDetailDiroNew/index.js +4 -3
- package/es/materials/sxp/popup/Prompt/index.d.ts +1 -0
- package/es/materials/sxp/popup/Prompt/index.js +4 -2
- package/es/materials/sxp/popup/Prompt/settingRender.d.ts +12 -0
- package/es/materials/sxp/popup/Prompt/settingRender.js +33 -4
- package/lib/core/components/SxpPageRender/ExpandableText.js +3 -1
- package/lib/core/components/SxpPageRender/Nudge/index.d.ts +2 -0
- package/lib/core/components/SxpPageRender/Nudge/index.js +5 -2
- package/lib/core/components/SxpPageRender/Tagbar.d.ts +1 -0
- package/lib/core/components/SxpPageRender/Tagbar.js +2 -2
- package/lib/core/components/SxpPageRender/VideoWidget/VideoPlayer.d.ts +1 -0
- package/lib/core/components/SxpPageRender/VideoWidget/VideoPlayer.js +26 -0
- package/lib/core/components/SxpPageRender/VideoWidget/index.d.ts +0 -1
- package/lib/core/components/SxpPageRender/VideoWidget/index.js +93 -85
- package/lib/core/components/SxpPageRender/index.js +10 -27
- package/lib/materials/sxp/popup/AppointForm/settingRender.js +2 -2
- package/lib/materials/sxp/popup/CommodityDetail/index.js +4 -3
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/index.js +4 -3
- package/lib/materials/sxp/popup/Prompt/index.d.ts +1 -0
- package/lib/materials/sxp/popup/Prompt/index.js +4 -2
- package/lib/materials/sxp/popup/Prompt/settingRender.d.ts +12 -0
- package/lib/materials/sxp/popup/Prompt/settingRender.js +33 -4
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -14,7 +14,7 @@
|
|
14
14
|
line-height: 50px;
|
15
15
|
}
|
16
16
|
.pb-appoint-form-container {
|
17
|
-
padding:
|
17
|
+
padding: 2px 15px 0;
|
18
18
|
position: absolute;
|
19
19
|
top: 60px;
|
20
20
|
left: 0;
|
@@ -39,16 +39,23 @@
|
|
39
39
|
flex-shrink: 0;
|
40
40
|
}
|
41
41
|
.pb-appoint-form-container-input {
|
42
|
-
|
42
|
+
-webkit-box-flex: 1;
|
43
|
+
-webkit-flex-grow: 1;
|
44
|
+
-ms-flex-positive: 1;
|
45
|
+
flex-grow: 1;
|
43
46
|
border-radius: 4px;
|
44
47
|
height: 35px;
|
45
48
|
border: 1px solid #d9d9d9;
|
46
49
|
padding: 0 10px;
|
47
50
|
}
|
51
|
+
.pb-appoint-form-container-input:focus {
|
52
|
+
outline: 1px solid #000;
|
53
|
+
}
|
48
54
|
.pb-appoint-form-btn-wrapper {
|
49
55
|
position: absolute;
|
50
56
|
bottom: 0;
|
51
|
-
|
57
|
+
left: 0;
|
58
|
+
right: 0;
|
52
59
|
padding: 0 15px;
|
53
60
|
}
|
54
61
|
.pb-appoint-form-btn {
|