@pisell/materials 1.0.419 → 1.0.421

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 (89) hide show
  1. package/build/lowcode/assets-daily.json +11 -11
  2. package/build/lowcode/assets-dev.json +2 -2
  3. package/build/lowcode/assets-prod.json +11 -11
  4. package/build/lowcode/index.js +1 -1
  5. package/build/lowcode/meta.js +2 -2
  6. package/build/lowcode/preview.js +7 -7
  7. package/build/lowcode/render/default/view.css +1 -1
  8. package/build/lowcode/render/default/view.js +19 -19
  9. package/build/lowcode/view.css +1 -1
  10. package/build/lowcode/view.js +20 -20
  11. package/es/components/pisellAdjustPrice/PisellAdjustPriceInputNumber.d.ts +10 -0
  12. package/es/components/pisellAdjustPrice/PisellAdjustPriceInputNumber.js +58 -0
  13. package/es/components/pisellAdjustPrice/index.d.ts +10 -0
  14. package/es/components/pisellAdjustPrice/index.js +136 -0
  15. package/es/components/pisellAdjustPrice/index.less +30 -0
  16. package/es/components/table/Gallery/components/GalleryItem/components/Title/index.less +1 -1
  17. package/es/components/table/Gallery/components/GalleryItem/index.js +10 -3
  18. package/es/components/table/Gallery/components/GalleryItem/index.less +1 -0
  19. package/es/components/table/Gallery/index.js +12 -3
  20. package/es/components/table/types.d.ts +2 -0
  21. package/es/components/virtual-keyboard/Amount/index.d.ts +21 -0
  22. package/es/components/virtual-keyboard/Amount/index.js +61 -0
  23. package/es/components/virtual-keyboard/BaseNumberKeyboard/Presets.d.ts +12 -0
  24. package/es/components/virtual-keyboard/BaseNumberKeyboard/Presets.js +22 -0
  25. package/es/components/virtual-keyboard/BaseNumberKeyboard/Presets.less +18 -0
  26. package/es/components/virtual-keyboard/BaseNumberKeyboard/index.d.ts +19 -0
  27. package/es/components/virtual-keyboard/BaseNumberKeyboard/index.js +210 -0
  28. package/es/components/virtual-keyboard/BaseNumberKeyboard/index.less +9 -0
  29. package/es/components/virtual-keyboard/Keyboard/index.d.ts +8 -6
  30. package/es/components/virtual-keyboard/Keyboard/index.js +59 -15
  31. package/es/components/virtual-keyboard/Keyboard/index.less +35 -24
  32. package/es/components/virtual-keyboard/Number/index.d.ts +14 -0
  33. package/es/components/virtual-keyboard/Number/index.js +35 -0
  34. package/es/components/virtual-keyboard/VirtualInput/index.d.ts +9 -0
  35. package/es/components/virtual-keyboard/VirtualInput/index.js +40 -0
  36. package/es/components/virtual-keyboard/VirtualInput/index.less +46 -0
  37. package/es/components/virtual-keyboard/VirtualKeyInput/index.d.ts +6 -3
  38. package/es/components/virtual-keyboard/VirtualKeyInput/index.js +27 -20
  39. package/es/index.d.ts +4 -0
  40. package/es/index.js +5 -1
  41. package/es/locales/en-US.d.ts +6 -0
  42. package/es/locales/en-US.js +8 -1
  43. package/es/locales/zh-CN.d.ts +6 -0
  44. package/es/locales/zh-CN.js +8 -1
  45. package/es/locales/zh-TW.d.ts +6 -0
  46. package/es/locales/zh-TW.js +8 -1
  47. package/lib/components/pisellAdjustPrice/PisellAdjustPriceInputNumber.d.ts +10 -0
  48. package/lib/components/pisellAdjustPrice/PisellAdjustPriceInputNumber.js +80 -0
  49. package/lib/components/pisellAdjustPrice/index.d.ts +10 -0
  50. package/lib/components/pisellAdjustPrice/index.js +142 -0
  51. package/lib/components/pisellAdjustPrice/index.less +30 -0
  52. package/lib/components/table/Gallery/components/GalleryItem/components/Title/index.less +1 -1
  53. package/lib/components/table/Gallery/components/GalleryItem/index.js +18 -4
  54. package/lib/components/table/Gallery/components/GalleryItem/index.less +1 -0
  55. package/lib/components/table/Gallery/index.js +12 -2
  56. package/lib/components/table/types.d.ts +2 -0
  57. package/lib/components/virtual-keyboard/Amount/index.d.ts +21 -0
  58. package/lib/components/virtual-keyboard/Amount/index.js +92 -0
  59. package/lib/components/virtual-keyboard/BaseNumberKeyboard/Presets.d.ts +12 -0
  60. package/lib/components/virtual-keyboard/BaseNumberKeyboard/Presets.js +46 -0
  61. package/lib/components/virtual-keyboard/BaseNumberKeyboard/Presets.less +18 -0
  62. package/lib/components/virtual-keyboard/BaseNumberKeyboard/index.d.ts +19 -0
  63. package/lib/components/virtual-keyboard/BaseNumberKeyboard/index.js +242 -0
  64. package/lib/components/virtual-keyboard/BaseNumberKeyboard/index.less +9 -0
  65. package/lib/components/virtual-keyboard/Keyboard/index.d.ts +8 -6
  66. package/lib/components/virtual-keyboard/Keyboard/index.js +51 -4
  67. package/lib/components/virtual-keyboard/Keyboard/index.less +35 -24
  68. package/lib/components/virtual-keyboard/Number/index.d.ts +14 -0
  69. package/lib/components/virtual-keyboard/Number/index.js +65 -0
  70. package/lib/components/virtual-keyboard/VirtualInput/index.d.ts +9 -0
  71. package/lib/components/virtual-keyboard/VirtualInput/index.js +62 -0
  72. package/lib/components/virtual-keyboard/VirtualInput/index.less +46 -0
  73. package/lib/components/virtual-keyboard/VirtualKeyInput/index.d.ts +6 -3
  74. package/lib/components/virtual-keyboard/VirtualKeyInput/index.js +20 -11
  75. package/lib/index.d.ts +4 -0
  76. package/lib/index.js +12 -0
  77. package/lib/locales/en-US.d.ts +6 -0
  78. package/lib/locales/en-US.js +8 -1
  79. package/lib/locales/zh-CN.d.ts +6 -0
  80. package/lib/locales/zh-CN.js +8 -1
  81. package/lib/locales/zh-TW.d.ts +6 -0
  82. package/lib/locales/zh-TW.js +8 -1
  83. package/lowcode/pisell-adjust-price/meta.ts +58 -0
  84. package/lowcode/pisell-adjust-price/snippets.ts +10 -0
  85. package/lowcode/pisell-adjust-price-input-number/meta.ts +245 -0
  86. package/lowcode/pisell-number-keyboard/meta.ts +98 -0
  87. package/lowcode/pisell-price-keyboard/meta.ts +174 -0
  88. package/lowcode/table/meta.ts +10 -0
  89. package/package.json +1 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.