@douyinfe/semi-ui 2.13.0 → 2.14.0-beta.1

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 (209) hide show
  1. package/autoComplete/_story/CustomTrigger/index.jsx +1 -1
  2. package/avatar/_story/avatar.stories.js +62 -5
  3. package/avatar/avatarGroup.tsx +16 -4
  4. package/avatar/index.tsx +88 -17
  5. package/backtop/index.tsx +11 -7
  6. package/badge/index.tsx +1 -1
  7. package/banner/index.tsx +5 -5
  8. package/breadcrumb/index.tsx +5 -3
  9. package/button/Button.tsx +10 -8
  10. package/calendar/_story/calendar.stories.js +125 -1
  11. package/card/index.tsx +43 -41
  12. package/carousel/CarouselArrow.tsx +2 -0
  13. package/carousel/index.tsx +1 -0
  14. package/cascader/_story/cascader.stories.js +21 -0
  15. package/cascader/index.tsx +99 -120
  16. package/cascader/item.tsx +1 -1
  17. package/checkbox/checkbox.tsx +13 -2
  18. package/collapsible/index.tsx +8 -1
  19. package/datePicker/dateInput.tsx +1 -0
  20. package/datePicker/datePicker.tsx +13 -5
  21. package/dist/css/semi.css +51 -35
  22. package/dist/css/semi.min.css +1 -1
  23. package/dist/umd/semi-ui.js +933 -530
  24. package/dist/umd/semi-ui.js.map +1 -1
  25. package/dist/umd/semi-ui.min.js +1 -1
  26. package/dist/umd/semi-ui.min.js.map +1 -1
  27. package/divider/index.tsx +8 -4
  28. package/dropdown/index.tsx +1 -1
  29. package/empty/index.tsx +13 -5
  30. package/form/hoc/withField.tsx +1 -1
  31. package/form/label.tsx +1 -1
  32. package/grid/col.tsx +1 -1
  33. package/grid/row.tsx +1 -1
  34. package/iconButton/index.tsx +2 -1
  35. package/input/_story/input.stories.js +32 -3
  36. package/input/index.tsx +45 -23
  37. package/input/inputGroup.tsx +3 -1
  38. package/input/textarea.tsx +2 -14
  39. package/lib/cjs/_base/base.css +14 -14
  40. package/lib/cjs/avatar/avatarGroup.d.ts +1 -1
  41. package/lib/cjs/avatar/avatarGroup.js +36 -9
  42. package/lib/cjs/avatar/index.d.ts +5 -0
  43. package/lib/cjs/avatar/index.js +121 -41
  44. package/lib/cjs/backtop/index.js +2 -1
  45. package/lib/cjs/badge/index.js +2 -1
  46. package/lib/cjs/banner/index.js +9 -4
  47. package/lib/cjs/breadcrumb/index.js +4 -3
  48. package/lib/cjs/button/Button.js +13 -3
  49. package/lib/cjs/card/index.js +10 -5
  50. package/lib/cjs/carousel/CarouselArrow.js +6 -2
  51. package/lib/cjs/carousel/index.js +2 -1
  52. package/lib/cjs/cascader/index.js +11 -6
  53. package/lib/cjs/cascader/item.js +2 -1
  54. package/lib/cjs/checkbox/checkbox.js +6 -2
  55. package/lib/cjs/collapsible/index.js +2 -1
  56. package/lib/cjs/datePicker/dateInput.js +2 -1
  57. package/lib/cjs/datePicker/datePicker.js +4 -2
  58. package/lib/cjs/divider/index.js +2 -1
  59. package/lib/cjs/dropdown/index.js +2 -1
  60. package/lib/cjs/empty/index.js +8 -4
  61. package/lib/cjs/form/baseForm.d.ts +1 -1
  62. package/lib/cjs/form/field.d.ts +1 -1
  63. package/lib/cjs/form/hoc/withField.js +2 -1
  64. package/lib/cjs/form/label.js +2 -1
  65. package/lib/cjs/grid/col.js +2 -1
  66. package/lib/cjs/grid/row.js +2 -1
  67. package/lib/cjs/iconButton/index.js +3 -1
  68. package/lib/cjs/input/index.d.ts +0 -1
  69. package/lib/cjs/input/index.js +41 -36
  70. package/lib/cjs/input/inputGroup.js +2 -3
  71. package/lib/cjs/input/textarea.js +8 -15
  72. package/lib/cjs/list/index.js +6 -3
  73. package/lib/cjs/modal/ConfirmModal.js +2 -1
  74. package/lib/cjs/modal/Modal.js +6 -2
  75. package/lib/cjs/modal/ModalContent.js +13 -6
  76. package/lib/cjs/notification/notice.js +6 -3
  77. package/lib/cjs/pagination/index.js +4 -2
  78. package/lib/cjs/popconfirm/index.js +6 -3
  79. package/lib/cjs/radio/radio.d.ts +4 -0
  80. package/lib/cjs/radio/radio.js +32 -9
  81. package/lib/cjs/radio/radioInner.d.ts +6 -0
  82. package/lib/cjs/radio/radioInner.js +13 -4
  83. package/lib/cjs/rating/item.js +2 -1
  84. package/lib/cjs/scrollList/index.js +6 -3
  85. package/lib/cjs/select/index.js +10 -4
  86. package/lib/cjs/select/option.js +2 -1
  87. package/lib/cjs/sideSheet/SideSheetContent.js +6 -3
  88. package/lib/cjs/skeleton/index.js +3 -1
  89. package/lib/cjs/space/index.js +2 -1
  90. package/lib/cjs/spin/index.js +7 -3
  91. package/lib/cjs/switch/index.js +6 -4
  92. package/lib/cjs/table/Table.js +6 -3
  93. package/lib/cjs/tabs/TabBar.js +2 -1
  94. package/lib/cjs/tabs/TabPane.js +5 -2
  95. package/lib/cjs/tagInput/index.js +25 -15
  96. package/lib/cjs/timePicker/Combobox.js +3 -1
  97. package/lib/cjs/timePicker/TimePicker.js +2 -0
  98. package/lib/cjs/toast/toast.js +6 -3
  99. package/lib/cjs/tooltip/index.js +6 -1
  100. package/lib/cjs/transfer/index.js +2 -1
  101. package/lib/cjs/tree/treeNode.js +2 -1
  102. package/lib/cjs/treeSelect/index.js +10 -3
  103. package/lib/cjs/typography/base.js +2 -1
  104. package/lib/cjs/typography/title.d.ts +1 -1
  105. package/lib/cjs/upload/index.d.ts +1 -1
  106. package/lib/cjs/upload/index.js +13 -6
  107. package/lib/es/_base/base.css +14 -14
  108. package/lib/es/avatar/avatarGroup.d.ts +1 -1
  109. package/lib/es/avatar/avatarGroup.js +37 -9
  110. package/lib/es/avatar/index.d.ts +5 -0
  111. package/lib/es/avatar/index.js +119 -38
  112. package/lib/es/backtop/index.js +2 -1
  113. package/lib/es/badge/index.js +2 -1
  114. package/lib/es/banner/index.js +9 -4
  115. package/lib/es/breadcrumb/index.js +4 -3
  116. package/lib/es/button/Button.js +11 -3
  117. package/lib/es/card/index.js +10 -5
  118. package/lib/es/carousel/CarouselArrow.js +6 -2
  119. package/lib/es/carousel/index.js +2 -1
  120. package/lib/es/cascader/index.js +11 -6
  121. package/lib/es/cascader/item.js +2 -1
  122. package/lib/es/checkbox/checkbox.js +6 -2
  123. package/lib/es/collapsible/index.js +2 -1
  124. package/lib/es/datePicker/dateInput.js +2 -1
  125. package/lib/es/datePicker/datePicker.js +4 -2
  126. package/lib/es/divider/index.js +2 -1
  127. package/lib/es/dropdown/index.js +2 -1
  128. package/lib/es/empty/index.js +8 -4
  129. package/lib/es/form/baseForm.d.ts +1 -1
  130. package/lib/es/form/field.d.ts +1 -1
  131. package/lib/es/form/hoc/withField.js +2 -1
  132. package/lib/es/form/label.js +2 -1
  133. package/lib/es/grid/col.js +2 -1
  134. package/lib/es/grid/row.js +2 -1
  135. package/lib/es/iconButton/index.js +3 -1
  136. package/lib/es/input/index.d.ts +0 -1
  137. package/lib/es/input/index.js +41 -36
  138. package/lib/es/input/inputGroup.js +2 -3
  139. package/lib/es/input/textarea.js +8 -15
  140. package/lib/es/list/index.js +6 -3
  141. package/lib/es/modal/ConfirmModal.js +2 -1
  142. package/lib/es/modal/Modal.js +6 -2
  143. package/lib/es/modal/ModalContent.js +13 -6
  144. package/lib/es/notification/notice.js +6 -3
  145. package/lib/es/pagination/index.js +4 -2
  146. package/lib/es/popconfirm/index.js +6 -3
  147. package/lib/es/radio/radio.d.ts +4 -0
  148. package/lib/es/radio/radio.js +32 -9
  149. package/lib/es/radio/radioInner.d.ts +6 -0
  150. package/lib/es/radio/radioInner.js +13 -4
  151. package/lib/es/rating/item.js +2 -1
  152. package/lib/es/scrollList/index.js +6 -3
  153. package/lib/es/select/index.js +10 -4
  154. package/lib/es/select/option.js +2 -1
  155. package/lib/es/sideSheet/SideSheetContent.js +6 -3
  156. package/lib/es/skeleton/index.js +3 -1
  157. package/lib/es/space/index.js +2 -1
  158. package/lib/es/spin/index.js +7 -3
  159. package/lib/es/switch/index.js +6 -4
  160. package/lib/es/table/Table.js +6 -3
  161. package/lib/es/tabs/TabBar.js +2 -1
  162. package/lib/es/tabs/TabPane.js +5 -2
  163. package/lib/es/tagInput/index.js +25 -15
  164. package/lib/es/timePicker/Combobox.js +3 -1
  165. package/lib/es/timePicker/TimePicker.js +2 -0
  166. package/lib/es/toast/toast.js +6 -3
  167. package/lib/es/tooltip/index.js +6 -1
  168. package/lib/es/transfer/index.js +2 -1
  169. package/lib/es/tree/treeNode.js +2 -1
  170. package/lib/es/treeSelect/index.js +10 -3
  171. package/lib/es/typography/base.js +2 -1
  172. package/lib/es/typography/title.d.ts +1 -1
  173. package/lib/es/upload/index.d.ts +1 -1
  174. package/lib/es/upload/index.js +13 -6
  175. package/list/index.tsx +16 -4
  176. package/modal/ConfirmModal.tsx +1 -1
  177. package/modal/Modal.tsx +2 -0
  178. package/modal/ModalContent.tsx +27 -14
  179. package/notification/notice.tsx +16 -4
  180. package/package.json +8 -8
  181. package/pagination/index.tsx +16 -2
  182. package/popconfirm/index.tsx +11 -3
  183. package/radio/_story/radio.stories.js +9 -6
  184. package/radio/radio.tsx +37 -7
  185. package/radio/radioInner.tsx +11 -2
  186. package/rating/item.tsx +1 -1
  187. package/scrollList/index.tsx +19 -3
  188. package/select/index.tsx +13 -4
  189. package/select/option.tsx +5 -1
  190. package/sideSheet/SideSheetContent.tsx +3 -3
  191. package/skeleton/index.tsx +1 -1
  192. package/space/index.tsx +1 -1
  193. package/spin/index.tsx +15 -9
  194. package/switch/index.tsx +9 -14
  195. package/table/Table.tsx +5 -3
  196. package/tabs/TabBar.tsx +1 -1
  197. package/tabs/TabPane.tsx +9 -4
  198. package/tagInput/index.tsx +23 -4
  199. package/timePicker/Combobox.tsx +6 -1
  200. package/timePicker/TimePicker.tsx +1 -0
  201. package/toast/toast.tsx +3 -3
  202. package/tooltip/index.tsx +4 -1
  203. package/transfer/index.tsx +1 -0
  204. package/tree/treeNode.tsx +1 -1
  205. package/treeSelect/_story/treeSelect.stories.js +161 -2
  206. package/treeSelect/index.tsx +17 -3
  207. package/typography/base.tsx +1 -1
  208. package/upload/index.tsx +107 -38
  209. package/yarn-error.log +26235 -0

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.