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.
Files changed (48) hide show
  1. package/dist/index.cjs +188 -139
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.css +10 -3
  4. package/dist/index.js +189 -139
  5. package/dist/index.js.map +1 -1
  6. package/dist/index.min.cjs +3 -3
  7. package/dist/index.min.cjs.map +1 -1
  8. package/dist/index.min.js +3 -3
  9. package/dist/index.min.js.map +1 -1
  10. package/dist/pb-ui.js +188 -139
  11. package/dist/pb-ui.js.map +1 -1
  12. package/dist/pb-ui.min.js +3 -3
  13. package/dist/pb-ui.min.js.map +1 -1
  14. package/es/core/components/SxpPageRender/ExpandableText.js +3 -1
  15. package/es/core/components/SxpPageRender/Nudge/index.d.ts +2 -0
  16. package/es/core/components/SxpPageRender/Nudge/index.js +5 -2
  17. package/es/core/components/SxpPageRender/Tagbar.d.ts +1 -0
  18. package/es/core/components/SxpPageRender/Tagbar.js +2 -2
  19. package/es/core/components/SxpPageRender/VideoWidget/VideoPlayer.d.ts +1 -0
  20. package/es/core/components/SxpPageRender/VideoWidget/VideoPlayer.js +22 -0
  21. package/es/core/components/SxpPageRender/VideoWidget/index.d.ts +0 -1
  22. package/es/core/components/SxpPageRender/VideoWidget/index.js +93 -85
  23. package/es/core/components/SxpPageRender/index.js +10 -27
  24. package/es/materials/sxp/popup/AppointForm/settingRender.js +2 -2
  25. package/es/materials/sxp/popup/CommodityDetail/index.js +4 -3
  26. package/es/materials/sxp/popup/CommodityDetailDiroNew/index.js +4 -3
  27. package/es/materials/sxp/popup/Prompt/index.d.ts +1 -0
  28. package/es/materials/sxp/popup/Prompt/index.js +4 -2
  29. package/es/materials/sxp/popup/Prompt/settingRender.d.ts +12 -0
  30. package/es/materials/sxp/popup/Prompt/settingRender.js +33 -4
  31. package/lib/core/components/SxpPageRender/ExpandableText.js +3 -1
  32. package/lib/core/components/SxpPageRender/Nudge/index.d.ts +2 -0
  33. package/lib/core/components/SxpPageRender/Nudge/index.js +5 -2
  34. package/lib/core/components/SxpPageRender/Tagbar.d.ts +1 -0
  35. package/lib/core/components/SxpPageRender/Tagbar.js +2 -2
  36. package/lib/core/components/SxpPageRender/VideoWidget/VideoPlayer.d.ts +1 -0
  37. package/lib/core/components/SxpPageRender/VideoWidget/VideoPlayer.js +26 -0
  38. package/lib/core/components/SxpPageRender/VideoWidget/index.d.ts +0 -1
  39. package/lib/core/components/SxpPageRender/VideoWidget/index.js +93 -85
  40. package/lib/core/components/SxpPageRender/index.js +10 -27
  41. package/lib/materials/sxp/popup/AppointForm/settingRender.js +2 -2
  42. package/lib/materials/sxp/popup/CommodityDetail/index.js +4 -3
  43. package/lib/materials/sxp/popup/CommodityDetailDiroNew/index.js +4 -3
  44. package/lib/materials/sxp/popup/Prompt/index.d.ts +1 -0
  45. package/lib/materials/sxp/popup/Prompt/index.js +4 -2
  46. package/lib/materials/sxp/popup/Prompt/settingRender.d.ts +12 -0
  47. package/lib/materials/sxp/popup/Prompt/settingRender.js +33 -4
  48. 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: 0 15px;
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
- width: 100%;
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
- width: 100%;
57
+ left: 0;
58
+ right: 0;
52
59
  padding: 0 15px;
53
60
  }
54
61
  .pb-appoint-form-btn {