tntd 2.7.23 → 2.7.24

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 (370) hide show
  1. package/es/index.js +1 -0
  2. package/es/index.js.map +1 -1
  3. package/es/locale/en_US.js +5 -2
  4. package/es/locale/en_US.js.map +1 -1
  5. package/es/locale/zh_CN.js +4 -1
  6. package/es/locale/zh_CN.js.map +1 -1
  7. package/es/tntd-cascader/AntdCascader/component/defaultRenderEmpty.js +1 -1
  8. package/es/tntd-cascader/AntdCascader/component/defaultRenderEmpty.js.map +1 -1
  9. package/es/tntd-rc-select/_util/DisabledContext.js +8 -0
  10. package/es/tntd-rc-select/_util/DisabledContext.js.map +1 -0
  11. package/es/tntd-rc-select/_util/FormItemInputContext.js +3 -0
  12. package/es/tntd-rc-select/_util/FormItemInputContext.js.map +1 -0
  13. package/es/tntd-rc-select/_util/PurePanel.js +55 -0
  14. package/es/tntd-rc-select/_util/PurePanel.js.map +1 -0
  15. package/es/tntd-rc-select/_util/SizeContext.js +3 -0
  16. package/es/tntd-rc-select/_util/SizeContext.js.map +1 -0
  17. package/es/tntd-rc-select/_util/context.js +14 -0
  18. package/es/tntd-rc-select/_util/context.js.map +1 -0
  19. package/es/tntd-rc-select/_util/defaultRenderEmpty.js +20 -0
  20. package/es/tntd-rc-select/_util/defaultRenderEmpty.js.map +1 -0
  21. package/es/tntd-rc-select/_util/getIcons.js +52 -0
  22. package/es/tntd-rc-select/_util/getIcons.js.map +1 -0
  23. package/es/tntd-rc-select/_util/interface.js +5 -0
  24. package/es/tntd-rc-select/_util/interface.js.map +1 -0
  25. package/es/tntd-rc-select/_util/motion.js +38 -0
  26. package/es/tntd-rc-select/_util/motion.js.map +1 -0
  27. package/es/tntd-rc-select/_util/type.js +4 -0
  28. package/es/tntd-rc-select/_util/type.js.map +1 -0
  29. package/es/tntd-rc-select/_util/useCompactItemContext.js +24 -0
  30. package/es/tntd-rc-select/_util/useCompactItemContext.js.map +1 -0
  31. package/es/tntd-rc-select/_util/warning.js +15 -0
  32. package/es/tntd-rc-select/_util/warning.js.map +1 -0
  33. package/es/tntd-rc-select/img/no-data-s.png +0 -0
  34. package/es/tntd-rc-select/index.js +103 -0
  35. package/es/tntd-rc-select/index.js.map +1 -0
  36. package/es/tntd-rc-select/style/index.less +1657 -0
  37. package/es/tntd-select/_util/DisabledContext.js +8 -0
  38. package/es/tntd-select/_util/DisabledContext.js.map +1 -0
  39. package/es/tntd-select/_util/FormItemInputContext.js +3 -0
  40. package/es/tntd-select/_util/FormItemInputContext.js.map +1 -0
  41. package/es/tntd-select/_util/PurePanel.js +4 -17
  42. package/es/tntd-select/_util/PurePanel.js.map +1 -1
  43. package/es/tntd-select/_util/SizeContext.js +3 -0
  44. package/es/tntd-select/_util/SizeContext.js.map +1 -0
  45. package/es/tntd-select/_util/context.js +14 -0
  46. package/es/tntd-select/_util/context.js.map +1 -0
  47. package/es/tntd-select/_util/defaultRenderEmpty.js +20 -0
  48. package/es/tntd-select/_util/defaultRenderEmpty.js.map +1 -0
  49. package/es/tntd-select/_util/getIcons.js +52 -0
  50. package/es/tntd-select/_util/getIcons.js.map +1 -0
  51. package/es/tntd-select/_util/interface.js +5 -0
  52. package/es/tntd-select/_util/interface.js.map +1 -0
  53. package/es/tntd-select/_util/motion.js +15 -8
  54. package/es/tntd-select/_util/motion.js.map +1 -1
  55. package/es/tntd-select/_util/type.js +4 -0
  56. package/es/tntd-select/_util/type.js.map +1 -0
  57. package/es/tntd-select/_util/useCompactItemContext.js +24 -0
  58. package/es/tntd-select/_util/useCompactItemContext.js.map +1 -0
  59. package/es/tntd-select/_util/warning.js +14 -5
  60. package/es/tntd-select/_util/warning.js.map +1 -1
  61. package/es/tntd-select/index.js +7 -1
  62. package/es/tntd-select/index.js.map +1 -1
  63. package/es/tntd-select/rc-select/BaseSelect.js +429 -0
  64. package/es/tntd-select/rc-select/BaseSelect.js.map +1 -0
  65. package/es/tntd-select/rc-select/OptGroup.js +5 -0
  66. package/es/tntd-select/rc-select/OptGroup.js.map +1 -0
  67. package/es/tntd-select/rc-select/Option.js +5 -0
  68. package/es/tntd-select/rc-select/Option.js.map +1 -0
  69. package/es/tntd-select/rc-select/OptionList.js +257 -0
  70. package/es/tntd-select/rc-select/OptionList.js.map +1 -0
  71. package/es/tntd-select/rc-select/Select.js +428 -0
  72. package/es/tntd-select/rc-select/Select.js.map +1 -0
  73. package/es/tntd-select/rc-select/SelectContext.js +4 -0
  74. package/es/tntd-select/rc-select/SelectContext.js.map +1 -0
  75. package/es/tntd-select/rc-select/SelectTrigger.js +91 -0
  76. package/es/tntd-select/rc-select/SelectTrigger.js.map +1 -0
  77. package/es/tntd-select/rc-select/Selector/Input.js +47 -0
  78. package/es/tntd-select/rc-select/Selector/Input.js.map +1 -0
  79. package/es/tntd-select/rc-select/Selector/MultipleSelector.js +97 -0
  80. package/es/tntd-select/rc-select/Selector/MultipleSelector.js.map +1 -0
  81. package/es/tntd-select/rc-select/Selector/SingleSelector.js +45 -0
  82. package/es/tntd-select/rc-select/Selector/SingleSelector.js.map +1 -0
  83. package/es/tntd-select/rc-select/Selector/index.js +136 -0
  84. package/es/tntd-select/rc-select/Selector/index.js.map +1 -0
  85. package/es/tntd-select/rc-select/TransBtn.js +22 -0
  86. package/es/tntd-select/rc-select/TransBtn.js.map +1 -0
  87. package/es/tntd-select/rc-select/hooks/useAllowClear.js +25 -0
  88. package/es/tntd-select/rc-select/hooks/useAllowClear.js.map +1 -0
  89. package/es/tntd-select/rc-select/hooks/useBaseProps.js +10 -0
  90. package/es/tntd-select/rc-select/hooks/useBaseProps.js.map +1 -0
  91. package/es/tntd-select/rc-select/hooks/useCache.js +34 -0
  92. package/es/tntd-select/rc-select/hooks/useCache.js.map +1 -0
  93. package/es/tntd-select/rc-select/hooks/useDelayReset.js +24 -0
  94. package/es/tntd-select/rc-select/hooks/useDelayReset.js.map +1 -0
  95. package/es/tntd-select/rc-select/hooks/useFilterOptions.js +55 -0
  96. package/es/tntd-select/rc-select/hooks/useFilterOptions.js.map +1 -0
  97. package/es/tntd-select/rc-select/hooks/useId.js +28 -0
  98. package/es/tntd-select/rc-select/hooks/useId.js.map +1 -0
  99. package/es/tntd-select/rc-select/hooks/useLayoutEffect.js +18 -0
  100. package/es/tntd-select/rc-select/hooks/useLayoutEffect.js.map +1 -0
  101. package/es/tntd-select/rc-select/hooks/useLock.js +26 -0
  102. package/es/tntd-select/rc-select/hooks/useLock.js.map +1 -0
  103. package/es/tntd-select/rc-select/hooks/useOptions.js +45 -0
  104. package/es/tntd-select/rc-select/hooks/useOptions.js.map +1 -0
  105. package/es/tntd-select/rc-select/hooks/useRefFunc.js +14 -0
  106. package/es/tntd-select/rc-select/hooks/useRefFunc.js.map +1 -0
  107. package/es/tntd-select/rc-select/hooks/useSelectTriggerControl.js +32 -0
  108. package/es/tntd-select/rc-select/hooks/useSelectTriggerControl.js.map +1 -0
  109. package/es/tntd-select/rc-select/index.js +8 -0
  110. package/es/tntd-select/rc-select/index.js.map +1 -0
  111. package/es/tntd-select/rc-select/interface.js +2 -0
  112. package/es/tntd-select/rc-select/interface.js.map +1 -0
  113. package/es/tntd-select/rc-select/utils/commonUtil.js +32 -0
  114. package/es/tntd-select/rc-select/utils/commonUtil.js.map +1 -0
  115. package/es/tntd-select/rc-select/utils/keyUtil.js +34 -0
  116. package/es/tntd-select/rc-select/utils/keyUtil.js.map +1 -0
  117. package/es/tntd-select/rc-select/utils/legacyUtil.js +32 -0
  118. package/es/tntd-select/rc-select/utils/legacyUtil.js.map +1 -0
  119. package/es/tntd-select/rc-select/utils/platformUtil.js +5 -0
  120. package/es/tntd-select/rc-select/utils/platformUtil.js.map +1 -0
  121. package/es/tntd-select/rc-select/utils/valueUtil.js +99 -0
  122. package/es/tntd-select/rc-select/utils/valueUtil.js.map +1 -0
  123. package/es/tntd-select/rc-select/utils/warningPropsUtil.js +100 -0
  124. package/es/tntd-select/rc-select/utils/warningPropsUtil.js.map +1 -0
  125. package/lib/index.d.ts +1 -0
  126. package/lib/index.d.ts.map +1 -1
  127. package/lib/index.js +3 -1
  128. package/lib/index.js.map +1 -1
  129. package/lib/locale/default.d.ts +4 -1
  130. package/lib/locale/default.d.ts.map +1 -1
  131. package/lib/locale/en_US.d.ts +4 -1
  132. package/lib/locale/en_US.d.ts.map +1 -1
  133. package/lib/locale/en_US.js +5 -2
  134. package/lib/locale/en_US.js.map +1 -1
  135. package/lib/locale/zh_CN.d.ts +4 -1
  136. package/lib/locale/zh_CN.d.ts.map +1 -1
  137. package/lib/locale/zh_CN.js +4 -1
  138. package/lib/locale/zh_CN.js.map +1 -1
  139. package/lib/tntd-cascader/AntdCascader/component/defaultRenderEmpty.js +1 -1
  140. package/lib/tntd-cascader/AntdCascader/component/defaultRenderEmpty.js.map +1 -1
  141. package/lib/tntd-rc-select/_util/DisabledContext.d.ts +10 -0
  142. package/lib/tntd-rc-select/_util/DisabledContext.d.ts.map +1 -0
  143. package/lib/tntd-rc-select/_util/DisabledContext.js +35 -0
  144. package/lib/tntd-rc-select/_util/DisabledContext.js.map +1 -0
  145. package/lib/tntd-rc-select/_util/FormItemInputContext.d.ts +4 -0
  146. package/lib/tntd-rc-select/_util/FormItemInputContext.d.ts.map +1 -0
  147. package/lib/tntd-rc-select/_util/FormItemInputContext.js +29 -0
  148. package/lib/tntd-rc-select/_util/FormItemInputContext.js.map +1 -0
  149. package/lib/tntd-rc-select/_util/PurePanel.d.ts +9 -0
  150. package/lib/tntd-rc-select/_util/PurePanel.d.ts.map +1 -0
  151. package/lib/tntd-rc-select/_util/PurePanel.js +84 -0
  152. package/lib/tntd-rc-select/_util/PurePanel.js.map +1 -0
  153. package/lib/tntd-rc-select/_util/SizeContext.d.ts +4 -0
  154. package/lib/tntd-rc-select/_util/SizeContext.d.ts.map +1 -0
  155. package/lib/tntd-rc-select/_util/SizeContext.js +29 -0
  156. package/lib/tntd-rc-select/_util/SizeContext.js.map +1 -0
  157. package/lib/tntd-rc-select/_util/context.d.ts +42 -0
  158. package/lib/tntd-rc-select/_util/context.d.ts.map +1 -0
  159. package/lib/tntd-rc-select/_util/context.js +20 -0
  160. package/lib/tntd-rc-select/_util/context.js.map +1 -0
  161. package/lib/tntd-rc-select/_util/defaultRenderEmpty.d.ts +5 -0
  162. package/lib/tntd-rc-select/_util/defaultRenderEmpty.d.ts.map +1 -0
  163. package/lib/tntd-rc-select/_util/defaultRenderEmpty.js +48 -0
  164. package/lib/tntd-rc-select/_util/defaultRenderEmpty.js.map +1 -0
  165. package/lib/tntd-rc-select/_util/getIcons.d.ts +25 -0
  166. package/lib/tntd-rc-select/_util/getIcons.d.ts.map +1 -0
  167. package/lib/tntd-rc-select/_util/getIcons.js +78 -0
  168. package/lib/tntd-rc-select/_util/getIcons.js.map +1 -0
  169. package/lib/tntd-rc-select/_util/interface.d.ts +25 -0
  170. package/lib/tntd-rc-select/_util/interface.d.ts.map +1 -0
  171. package/lib/tntd-rc-select/_util/interface.js +9 -0
  172. package/lib/tntd-rc-select/_util/interface.js.map +1 -0
  173. package/lib/tntd-rc-select/_util/motion.d.ts +9 -0
  174. package/lib/tntd-rc-select/_util/motion.d.ts.map +1 -0
  175. package/lib/tntd-rc-select/_util/motion.js +42 -0
  176. package/lib/tntd-rc-select/_util/motion.js.map +1 -0
  177. package/lib/tntd-rc-select/_util/type.d.ts +10 -0
  178. package/lib/tntd-rc-select/_util/type.d.ts.map +1 -0
  179. package/lib/tntd-rc-select/_util/type.js +9 -0
  180. package/lib/tntd-rc-select/_util/type.js.map +1 -0
  181. package/lib/tntd-rc-select/_util/useCompactItemContext.d.ts +9 -0
  182. package/lib/tntd-rc-select/_util/useCompactItemContext.d.ts.map +1 -0
  183. package/lib/tntd-rc-select/_util/useCompactItemContext.js +54 -0
  184. package/lib/tntd-rc-select/_util/useCompactItemContext.js.map +1 -0
  185. package/lib/tntd-rc-select/_util/warning.d.ts +4 -0
  186. package/lib/tntd-rc-select/_util/warning.d.ts.map +1 -0
  187. package/lib/tntd-rc-select/_util/warning.js +40 -0
  188. package/lib/tntd-rc-select/_util/warning.js.map +1 -0
  189. package/lib/tntd-rc-select/img/no-data-s.png +0 -0
  190. package/lib/tntd-rc-select/index.d.ts +44 -0
  191. package/lib/tntd-rc-select/index.d.ts.map +1 -0
  192. package/lib/tntd-rc-select/index.js +131 -0
  193. package/lib/tntd-rc-select/index.js.map +1 -0
  194. package/lib/tntd-rc-select/style/index.less +1657 -0
  195. package/lib/tntd-select/_util/DisabledContext.d.ts +10 -0
  196. package/lib/tntd-select/_util/DisabledContext.d.ts.map +1 -0
  197. package/lib/tntd-select/_util/DisabledContext.js +35 -0
  198. package/lib/tntd-select/_util/DisabledContext.js.map +1 -0
  199. package/lib/tntd-select/_util/FormItemInputContext.d.ts +4 -0
  200. package/lib/tntd-select/_util/FormItemInputContext.d.ts.map +1 -0
  201. package/lib/tntd-select/_util/FormItemInputContext.js +29 -0
  202. package/lib/tntd-select/_util/FormItemInputContext.js.map +1 -0
  203. package/lib/tntd-select/_util/PurePanel.d.ts +3 -2
  204. package/lib/tntd-select/_util/PurePanel.d.ts.map +1 -1
  205. package/lib/tntd-select/_util/PurePanel.js +4 -19
  206. package/lib/tntd-select/_util/PurePanel.js.map +1 -1
  207. package/lib/tntd-select/_util/SizeContext.d.ts +4 -0
  208. package/lib/tntd-select/_util/SizeContext.d.ts.map +1 -0
  209. package/lib/tntd-select/_util/SizeContext.js +29 -0
  210. package/lib/tntd-select/_util/SizeContext.js.map +1 -0
  211. package/lib/tntd-select/_util/context.d.ts +42 -0
  212. package/lib/tntd-select/_util/context.d.ts.map +1 -0
  213. package/lib/tntd-select/_util/context.js +20 -0
  214. package/lib/tntd-select/_util/context.js.map +1 -0
  215. package/lib/tntd-select/_util/defaultRenderEmpty.d.ts +5 -0
  216. package/lib/tntd-select/_util/defaultRenderEmpty.d.ts.map +1 -0
  217. package/lib/tntd-select/_util/defaultRenderEmpty.js +48 -0
  218. package/lib/tntd-select/_util/defaultRenderEmpty.js.map +1 -0
  219. package/lib/tntd-select/_util/getIcons.d.ts +25 -0
  220. package/lib/tntd-select/_util/getIcons.d.ts.map +1 -0
  221. package/lib/tntd-select/_util/getIcons.js +78 -0
  222. package/lib/tntd-select/_util/getIcons.js.map +1 -0
  223. package/lib/tntd-select/_util/interface.d.ts +25 -0
  224. package/lib/tntd-select/_util/interface.d.ts.map +1 -0
  225. package/lib/tntd-select/_util/interface.js +9 -0
  226. package/lib/tntd-select/_util/interface.js.map +1 -0
  227. package/lib/tntd-select/_util/motion.d.ts +5 -4
  228. package/lib/tntd-select/_util/motion.d.ts.map +1 -1
  229. package/lib/tntd-select/_util/motion.js +16 -8
  230. package/lib/tntd-select/_util/motion.js.map +1 -1
  231. package/lib/tntd-select/_util/type.d.ts +10 -0
  232. package/lib/tntd-select/_util/type.d.ts.map +1 -0
  233. package/lib/tntd-select/_util/type.js +9 -0
  234. package/lib/tntd-select/_util/type.js.map +1 -0
  235. package/lib/tntd-select/_util/useCompactItemContext.d.ts +9 -0
  236. package/lib/tntd-select/_util/useCompactItemContext.d.ts.map +1 -0
  237. package/lib/tntd-select/_util/useCompactItemContext.js +54 -0
  238. package/lib/tntd-select/_util/useCompactItemContext.js.map +1 -0
  239. package/lib/tntd-select/_util/warning.d.ts +3 -4
  240. package/lib/tntd-select/_util/warning.d.ts.map +1 -1
  241. package/lib/tntd-select/_util/warning.js +13 -5
  242. package/lib/tntd-select/_util/warning.js.map +1 -1
  243. package/lib/tntd-select/index.d.ts.map +1 -1
  244. package/lib/tntd-select/index.js +7 -1
  245. package/lib/tntd-select/index.js.map +1 -1
  246. package/lib/tntd-select/rc-select/BaseSelect.d.ts +114 -0
  247. package/lib/tntd-select/rc-select/BaseSelect.d.ts.map +1 -0
  248. package/lib/tntd-select/rc-select/BaseSelect.js +459 -0
  249. package/lib/tntd-select/rc-select/BaseSelect.js.map +1 -0
  250. package/lib/tntd-select/rc-select/OptGroup.d.ts +13 -0
  251. package/lib/tntd-select/rc-select/OptGroup.d.ts.map +1 -0
  252. package/lib/tntd-select/rc-select/OptGroup.js +7 -0
  253. package/lib/tntd-select/rc-select/OptGroup.js.map +1 -0
  254. package/lib/tntd-select/rc-select/Option.d.ts +15 -0
  255. package/lib/tntd-select/rc-select/Option.d.ts.map +1 -0
  256. package/lib/tntd-select/rc-select/Option.js +7 -0
  257. package/lib/tntd-select/rc-select/Option.js.map +1 -0
  258. package/lib/tntd-select/rc-select/OptionList.d.ts +11 -0
  259. package/lib/tntd-select/rc-select/OptionList.d.ts.map +1 -0
  260. package/lib/tntd-select/rc-select/OptionList.js +285 -0
  261. package/lib/tntd-select/rc-select/OptionList.js.map +1 -0
  262. package/lib/tntd-select/rc-select/Select.d.ts +115 -0
  263. package/lib/tntd-select/rc-select/Select.d.ts.map +1 -0
  264. package/lib/tntd-select/rc-select/Select.js +456 -0
  265. package/lib/tntd-select/rc-select/Select.js.map +1 -0
  266. package/lib/tntd-select/rc-select/SelectContext.d.ts +23 -0
  267. package/lib/tntd-select/rc-select/SelectContext.d.ts.map +1 -0
  268. package/lib/tntd-select/rc-select/SelectContext.js +29 -0
  269. package/lib/tntd-select/rc-select/SelectContext.js.map +1 -0
  270. package/lib/tntd-select/rc-select/SelectTrigger.d.ts +31 -0
  271. package/lib/tntd-select/rc-select/SelectTrigger.d.ts.map +1 -0
  272. package/lib/tntd-select/rc-select/SelectTrigger.js +119 -0
  273. package/lib/tntd-select/rc-select/SelectTrigger.js.map +1 -0
  274. package/lib/tntd-select/rc-select/Selector/Input.d.ts +27 -0
  275. package/lib/tntd-select/rc-select/Selector/Input.d.ts.map +1 -0
  276. package/lib/tntd-select/rc-select/Selector/Input.js +75 -0
  277. package/lib/tntd-select/rc-select/Selector/Input.js.map +1 -0
  278. package/lib/tntd-select/rc-select/Selector/MultipleSelector.d.ts +17 -0
  279. package/lib/tntd-select/rc-select/Selector/MultipleSelector.d.ts.map +1 -0
  280. package/lib/tntd-select/rc-select/Selector/MultipleSelector.js +125 -0
  281. package/lib/tntd-select/rc-select/Selector/MultipleSelector.js.map +1 -0
  282. package/lib/tntd-select/rc-select/Selector/SingleSelector.d.ts +9 -0
  283. package/lib/tntd-select/rc-select/Selector/SingleSelector.d.ts.map +1 -0
  284. package/lib/tntd-select/rc-select/Selector/SingleSelector.js +73 -0
  285. package/lib/tntd-select/rc-select/Selector/SingleSelector.js.map +1 -0
  286. package/lib/tntd-select/rc-select/Selector/index.d.ts +83 -0
  287. package/lib/tntd-select/rc-select/Selector/index.d.ts.map +1 -0
  288. package/lib/tntd-select/rc-select/Selector/index.js +164 -0
  289. package/lib/tntd-select/rc-select/Selector/index.js.map +1 -0
  290. package/lib/tntd-select/rc-select/TransBtn.d.ts +13 -0
  291. package/lib/tntd-select/rc-select/TransBtn.d.ts.map +1 -0
  292. package/lib/tntd-select/rc-select/TransBtn.js +50 -0
  293. package/lib/tntd-select/rc-select/TransBtn.js.map +1 -0
  294. package/lib/tntd-select/rc-select/hooks/useAllowClear.d.ts +9 -0
  295. package/lib/tntd-select/rc-select/hooks/useAllowClear.d.ts.map +1 -0
  296. package/lib/tntd-select/rc-select/hooks/useAllowClear.js +32 -0
  297. package/lib/tntd-select/rc-select/hooks/useAllowClear.js.map +1 -0
  298. package/lib/tntd-select/rc-select/hooks/useBaseProps.d.ts +14 -0
  299. package/lib/tntd-select/rc-select/hooks/useBaseProps.d.ts.map +1 -0
  300. package/lib/tntd-select/rc-select/hooks/useBaseProps.js +37 -0
  301. package/lib/tntd-select/rc-select/hooks/useBaseProps.js.map +1 -0
  302. package/lib/tntd-select/rc-select/hooks/useCache.d.ts +8 -0
  303. package/lib/tntd-select/rc-select/hooks/useCache.d.ts.map +1 -0
  304. package/lib/tntd-select/rc-select/hooks/useCache.js +59 -0
  305. package/lib/tntd-select/rc-select/hooks/useCache.js.map +1 -0
  306. package/lib/tntd-select/rc-select/hooks/useDelayReset.d.ts +6 -0
  307. package/lib/tntd-select/rc-select/hooks/useDelayReset.d.ts.map +1 -0
  308. package/lib/tntd-select/rc-select/hooks/useDelayReset.js +50 -0
  309. package/lib/tntd-select/rc-select/hooks/useDelayReset.js.map +1 -0
  310. package/lib/tntd-select/rc-select/hooks/useFilterOptions.d.ts +4 -0
  311. package/lib/tntd-select/rc-select/hooks/useFilterOptions.d.ts.map +1 -0
  312. package/lib/tntd-select/rc-select/hooks/useFilterOptions.js +80 -0
  313. package/lib/tntd-select/rc-select/hooks/useFilterOptions.js.map +1 -0
  314. package/lib/tntd-select/rc-select/hooks/useId.d.ts +6 -0
  315. package/lib/tntd-select/rc-select/hooks/useId.d.ts.map +1 -0
  316. package/lib/tntd-select/rc-select/hooks/useId.js +59 -0
  317. package/lib/tntd-select/rc-select/hooks/useId.js.map +1 -0
  318. package/lib/tntd-select/rc-select/hooks/useLayoutEffect.d.ts +6 -0
  319. package/lib/tntd-select/rc-select/hooks/useLayoutEffect.d.ts.map +1 -0
  320. package/lib/tntd-select/rc-select/hooks/useLayoutEffect.js +44 -0
  321. package/lib/tntd-select/rc-select/hooks/useLayoutEffect.js.map +1 -0
  322. package/lib/tntd-select/rc-select/hooks/useLock.d.ts +8 -0
  323. package/lib/tntd-select/rc-select/hooks/useLock.d.ts.map +1 -0
  324. package/lib/tntd-select/rc-select/hooks/useLock.js +52 -0
  325. package/lib/tntd-select/rc-select/hooks/useLock.js.map +1 -0
  326. package/lib/tntd-select/rc-select/hooks/useOptions.d.ts +12 -0
  327. package/lib/tntd-select/rc-select/hooks/useOptions.d.ts.map +1 -0
  328. package/lib/tntd-select/rc-select/hooks/useOptions.js +71 -0
  329. package/lib/tntd-select/rc-select/hooks/useOptions.js.map +1 -0
  330. package/lib/tntd-select/rc-select/hooks/useRefFunc.d.ts +6 -0
  331. package/lib/tntd-select/rc-select/hooks/useRefFunc.d.ts.map +1 -0
  332. package/lib/tntd-select/rc-select/hooks/useRefFunc.js +40 -0
  333. package/lib/tntd-select/rc-select/hooks/useRefFunc.js.map +1 -0
  334. package/lib/tntd-select/rc-select/hooks/useSelectTriggerControl.d.ts +2 -0
  335. package/lib/tntd-select/rc-select/hooks/useSelectTriggerControl.d.ts.map +1 -0
  336. package/lib/tntd-select/rc-select/hooks/useSelectTriggerControl.js +58 -0
  337. package/lib/tntd-select/rc-select/hooks/useSelectTriggerControl.js.map +1 -0
  338. package/lib/tntd-select/rc-select/index.d.ts +11 -0
  339. package/lib/tntd-select/rc-select/index.d.ts.map +1 -0
  340. package/lib/tntd-select/rc-select/index.js +17 -0
  341. package/lib/tntd-select/rc-select/index.js.map +1 -0
  342. package/lib/tntd-select/rc-select/interface.d.ts +23 -0
  343. package/lib/tntd-select/rc-select/interface.d.ts.map +1 -0
  344. package/lib/tntd-select/rc-select/interface.js +3 -0
  345. package/lib/tntd-select/rc-select/interface.js.map +1 -0
  346. package/lib/tntd-select/rc-select/utils/commonUtil.d.ts +10 -0
  347. package/lib/tntd-select/rc-select/utils/commonUtil.d.ts.map +1 -0
  348. package/lib/tntd-select/rc-select/utils/commonUtil.js +39 -0
  349. package/lib/tntd-select/rc-select/utils/commonUtil.js.map +1 -0
  350. package/lib/tntd-select/rc-select/utils/keyUtil.d.ts +3 -0
  351. package/lib/tntd-select/rc-select/utils/keyUtil.d.ts.map +1 -0
  352. package/lib/tntd-select/rc-select/utils/keyUtil.js +41 -0
  353. package/lib/tntd-select/rc-select/utils/keyUtil.js.map +1 -0
  354. package/lib/tntd-select/rc-select/utils/legacyUtil.d.ts +4 -0
  355. package/lib/tntd-select/rc-select/utils/legacyUtil.d.ts.map +1 -0
  356. package/lib/tntd-select/rc-select/utils/legacyUtil.js +62 -0
  357. package/lib/tntd-select/rc-select/utils/legacyUtil.js.map +1 -0
  358. package/lib/tntd-select/rc-select/utils/platformUtil.d.ts +2 -0
  359. package/lib/tntd-select/rc-select/utils/platformUtil.d.ts.map +1 -0
  360. package/lib/tntd-select/rc-select/utils/platformUtil.js +9 -0
  361. package/lib/tntd-select/rc-select/utils/platformUtil.js.map +1 -0
  362. package/lib/tntd-select/rc-select/utils/valueUtil.d.ts +24 -0
  363. package/lib/tntd-select/rc-select/utils/valueUtil.d.ts.map +1 -0
  364. package/lib/tntd-select/rc-select/utils/valueUtil.js +109 -0
  365. package/lib/tntd-select/rc-select/utils/valueUtil.js.map +1 -0
  366. package/lib/tntd-select/rc-select/utils/warningPropsUtil.d.ts +5 -0
  367. package/lib/tntd-select/rc-select/utils/warningPropsUtil.d.ts.map +1 -0
  368. package/lib/tntd-select/rc-select/utils/warningPropsUtil.js +130 -0
  369. package/lib/tntd-select/rc-select/utils/warningPropsUtil.js.map +1 -0
  370. package/package.json +1 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"commonUtil.d.ts","sourceRoot":"","sources":["../../../../src/tntd-select/rc-select/utils/commonUtil.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAEtD,wBAAgB,OAAO,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,EAAE,CAK9C;AAED,eAAO,MAAM,QAAQ,qBACgE,CAAC;AAEtF,mCAAmC;AACnC,eAAO,MAAM,eAAe,qBAA8C,CAAC;AAE3E,wBAAgB,QAAQ,CAAC,KAAK,KAAA,WAE7B;AAED,4CAA4C;AAC5C,wBAAgB,cAAc,CAAC,KAAK,KAAA,WAEnC;AAMD,wBAAgB,QAAQ,CAAC,IAAI,EAAE,gBAAgB,GAAG,MAAM,CAWvD"}
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getTitle = exports.isComboNoValue = exports.hasValue = exports.isBrowserClient = exports.isClient = exports.toArray = void 0;
4
+ function toArray(value) {
5
+ if (Array.isArray(value)) {
6
+ return value;
7
+ }
8
+ return value !== undefined ? [value] : [];
9
+ }
10
+ exports.toArray = toArray;
11
+ exports.isClient = typeof window !== 'undefined' && window.document && window.document.documentElement;
12
+ /** Is client side and not jsdom */
13
+ exports.isBrowserClient = process.env.NODE_ENV !== 'test' && exports.isClient;
14
+ function hasValue(value) {
15
+ return value !== undefined && value !== null;
16
+ }
17
+ exports.hasValue = hasValue;
18
+ /** combo mode no value judgment function */
19
+ function isComboNoValue(value) {
20
+ return !value && value !== 0;
21
+ }
22
+ exports.isComboNoValue = isComboNoValue;
23
+ function isTitleType(title) {
24
+ return ['string', 'number'].includes(typeof title);
25
+ }
26
+ function getTitle(item) {
27
+ let title = undefined;
28
+ if (item) {
29
+ if (isTitleType(item.title)) {
30
+ title = item.title.toString();
31
+ }
32
+ else if (isTitleType(item.label)) {
33
+ title = item.label.toString();
34
+ }
35
+ }
36
+ return title;
37
+ }
38
+ exports.getTitle = getTitle;
39
+ //# sourceMappingURL=commonUtil.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"commonUtil.js","sourceRoot":"","sources":["../../../../src/tntd-select/rc-select/utils/commonUtil.ts"],"names":[],"mappings":";;;AAEA,SAAgB,OAAO,CAAI,KAAc;IACvC,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;QACxB,OAAO,KAAK,CAAC;KACd;IACD,OAAO,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;AAC5C,CAAC;AALD,0BAKC;AAEY,QAAA,QAAQ,GACnB,OAAO,MAAM,KAAK,WAAW,IAAI,MAAM,CAAC,QAAQ,IAAI,MAAM,CAAC,QAAQ,CAAC,eAAe,CAAC;AAEtF,mCAAmC;AACtB,QAAA,eAAe,GAAG,OAAO,CAAC,GAAG,CAAC,QAAQ,KAAK,MAAM,IAAI,gBAAQ,CAAC;AAE3E,SAAgB,QAAQ,CAAC,KAAK;IAC5B,OAAO,KAAK,KAAK,SAAS,IAAI,KAAK,KAAK,IAAI,CAAC;AAC/C,CAAC;AAFD,4BAEC;AAED,4CAA4C;AAC5C,SAAgB,cAAc,CAAC,KAAK;IAClC,OAAO,CAAC,KAAK,IAAI,KAAK,KAAK,CAAC,CAAC;AAC/B,CAAC;AAFD,wCAEC;AAED,SAAS,WAAW,CAAC,KAAU;IAC7B,OAAO,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC,QAAQ,CAAC,OAAO,KAAK,CAAC,CAAC;AACrD,CAAC;AAED,SAAgB,QAAQ,CAAC,IAAsB;IAC7C,IAAI,KAAK,GAAW,SAAS,CAAC;IAC9B,IAAI,IAAI,EAAE;QACR,IAAI,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;YAC3B,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,QAAQ,EAAE,CAAC;SAC/B;aAAM,IAAI,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;YAClC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,QAAQ,EAAE,CAAC;SAC/B;KACF;IAED,OAAO,KAAK,CAAC;AACf,CAAC;AAXD,4BAWC","sourcesContent":["import type { DisplayValueType } from '../BaseSelect';\n\nexport function toArray<T>(value: T | T[]): T[] {\n if (Array.isArray(value)) {\n return value;\n }\n return value !== undefined ? [value] : [];\n}\n\nexport const isClient =\n typeof window !== 'undefined' && window.document && window.document.documentElement;\n\n/** Is client side and not jsdom */\nexport const isBrowserClient = process.env.NODE_ENV !== 'test' && isClient;\n\nexport function hasValue(value) {\n return value !== undefined && value !== null;\n}\n\n/** combo mode no value judgment function */\nexport function isComboNoValue(value) {\n return !value && value !== 0;\n}\n\nfunction isTitleType(title: any) {\n return ['string', 'number'].includes(typeof title);\n}\n\nexport function getTitle(item: DisplayValueType): string {\n let title: string = undefined;\n if (item) {\n if (isTitleType(item.title)) {\n title = item.title.toString();\n } else if (isTitleType(item.label)) {\n title = item.label.toString();\n }\n }\n\n return title;\n}\n"]}
@@ -0,0 +1,3 @@
1
+ /** keyCode Judgment function */
2
+ export declare function isValidateOpenKey(currentKeyCode: number): boolean;
3
+ //# sourceMappingURL=keyUtil.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"keyUtil.d.ts","sourceRoot":"","sources":["../../../../src/tntd-select/rc-select/utils/keyUtil.ts"],"names":[],"mappings":"AAEA,gCAAgC;AAChC,wBAAgB,iBAAiB,CAAC,cAAc,EAAE,MAAM,GAAG,OAAO,CA8BjE"}
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.isValidateOpenKey = void 0;
7
+ const KeyCode_1 = __importDefault(require("rc-util/lib/KeyCode"));
8
+ /** keyCode Judgment function */
9
+ function isValidateOpenKey(currentKeyCode) {
10
+ return ![
11
+ // System function button
12
+ KeyCode_1.default.ESC,
13
+ KeyCode_1.default.SHIFT,
14
+ KeyCode_1.default.BACKSPACE,
15
+ KeyCode_1.default.TAB,
16
+ KeyCode_1.default.WIN_KEY,
17
+ KeyCode_1.default.ALT,
18
+ KeyCode_1.default.META,
19
+ KeyCode_1.default.WIN_KEY_RIGHT,
20
+ KeyCode_1.default.CTRL,
21
+ KeyCode_1.default.SEMICOLON,
22
+ KeyCode_1.default.EQUALS,
23
+ KeyCode_1.default.CAPS_LOCK,
24
+ KeyCode_1.default.CONTEXT_MENU,
25
+ // F1-F12
26
+ KeyCode_1.default.F1,
27
+ KeyCode_1.default.F2,
28
+ KeyCode_1.default.F3,
29
+ KeyCode_1.default.F4,
30
+ KeyCode_1.default.F5,
31
+ KeyCode_1.default.F6,
32
+ KeyCode_1.default.F7,
33
+ KeyCode_1.default.F8,
34
+ KeyCode_1.default.F9,
35
+ KeyCode_1.default.F10,
36
+ KeyCode_1.default.F11,
37
+ KeyCode_1.default.F12,
38
+ ].includes(currentKeyCode);
39
+ }
40
+ exports.isValidateOpenKey = isValidateOpenKey;
41
+ //# sourceMappingURL=keyUtil.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"keyUtil.js","sourceRoot":"","sources":["../../../../src/tntd-select/rc-select/utils/keyUtil.ts"],"names":[],"mappings":";;;;;;AAAA,kEAA0C;AAE1C,gCAAgC;AAChC,SAAgB,iBAAiB,CAAC,cAAsB;IACtD,OAAO,CAAC;QACN,yBAAyB;QACzB,iBAAO,CAAC,GAAG;QACX,iBAAO,CAAC,KAAK;QACb,iBAAO,CAAC,SAAS;QACjB,iBAAO,CAAC,GAAG;QACX,iBAAO,CAAC,OAAO;QACf,iBAAO,CAAC,GAAG;QACX,iBAAO,CAAC,IAAI;QACZ,iBAAO,CAAC,aAAa;QACrB,iBAAO,CAAC,IAAI;QACZ,iBAAO,CAAC,SAAS;QACjB,iBAAO,CAAC,MAAM;QACd,iBAAO,CAAC,SAAS;QACjB,iBAAO,CAAC,YAAY;QACpB,SAAS;QACT,iBAAO,CAAC,EAAE;QACV,iBAAO,CAAC,EAAE;QACV,iBAAO,CAAC,EAAE;QACV,iBAAO,CAAC,EAAE;QACV,iBAAO,CAAC,EAAE;QACV,iBAAO,CAAC,EAAE;QACV,iBAAO,CAAC,EAAE;QACV,iBAAO,CAAC,EAAE;QACV,iBAAO,CAAC,EAAE;QACV,iBAAO,CAAC,GAAG;QACX,iBAAO,CAAC,GAAG;QACX,iBAAO,CAAC,GAAG;KACZ,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAC;AAC7B,CAAC;AA9BD,8CA8BC","sourcesContent":["import KeyCode from 'rc-util/lib/KeyCode';\n\n/** keyCode Judgment function */\nexport function isValidateOpenKey(currentKeyCode: number): boolean {\n return ![\n // System function button\n KeyCode.ESC,\n KeyCode.SHIFT,\n KeyCode.BACKSPACE,\n KeyCode.TAB,\n KeyCode.WIN_KEY,\n KeyCode.ALT,\n KeyCode.META,\n KeyCode.WIN_KEY_RIGHT,\n KeyCode.CTRL,\n KeyCode.SEMICOLON,\n KeyCode.EQUALS,\n KeyCode.CAPS_LOCK,\n KeyCode.CONTEXT_MENU,\n // F1-F12\n KeyCode.F1,\n KeyCode.F2,\n KeyCode.F3,\n KeyCode.F4,\n KeyCode.F5,\n KeyCode.F6,\n KeyCode.F7,\n KeyCode.F8,\n KeyCode.F9,\n KeyCode.F10,\n KeyCode.F11,\n KeyCode.F12,\n ].includes(currentKeyCode);\n}\n"]}
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import type { BaseOptionType, DefaultOptionType } from '../Select';
3
+ export declare function convertChildrenToData<OptionType extends BaseOptionType = DefaultOptionType>(nodes: React.ReactNode, optionOnly?: boolean): OptionType[];
4
+ //# sourceMappingURL=legacyUtil.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"legacyUtil.d.ts","sourceRoot":"","sources":["../../../../src/tntd-select/rc-select/utils/legacyUtil.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,KAAK,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAanE,wBAAgB,qBAAqB,CAAC,UAAU,SAAS,cAAc,GAAG,iBAAiB,EACzF,KAAK,EAAE,KAAK,CAAC,SAAS,EACtB,UAAU,GAAE,OAAe,GAC1B,UAAU,EAAE,CA2Bd"}
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ var __rest = (this && this.__rest) || function (s, e) {
26
+ var t = {};
27
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
28
+ t[p] = s[p];
29
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
30
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
31
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
32
+ t[p[i]] = s[p[i]];
33
+ }
34
+ return t;
35
+ };
36
+ var __importDefault = (this && this.__importDefault) || function (mod) {
37
+ return (mod && mod.__esModule) ? mod : { "default": mod };
38
+ };
39
+ Object.defineProperty(exports, "__esModule", { value: true });
40
+ exports.convertChildrenToData = void 0;
41
+ const React = __importStar(require("react"));
42
+ const toArray_1 = __importDefault(require("rc-util/lib/Children/toArray"));
43
+ function convertNodeToOption(node) {
44
+ const _a = node, { key } = _a, _b = _a.props, { children, value } = _b, restProps = __rest(_b, ["children", "value"]);
45
+ return Object.assign({ key, value: value !== undefined ? value : key, children }, restProps);
46
+ }
47
+ function convertChildrenToData(nodes, optionOnly = false) {
48
+ return (0, toArray_1.default)(nodes)
49
+ .map((node, index) => {
50
+ if (!React.isValidElement(node) || !node.type) {
51
+ return null;
52
+ }
53
+ const _a = node, { type: { isSelectOptGroup }, key } = _a, _b = _a.props, { children } = _b, restProps = __rest(_b, ["children"]);
54
+ if (optionOnly || !isSelectOptGroup) {
55
+ return convertNodeToOption(node);
56
+ }
57
+ return Object.assign(Object.assign({ key: `__RC_SELECT_GRP__${key === null ? index : key}__`, label: key }, restProps), { options: convertChildrenToData(children) });
58
+ })
59
+ .filter((data) => data);
60
+ }
61
+ exports.convertChildrenToData = convertChildrenToData;
62
+ //# sourceMappingURL=legacyUtil.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"legacyUtil.js","sourceRoot":"","sources":["../../../../src/tntd-select/rc-select/utils/legacyUtil.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA+B;AAC/B,2EAAmD;AAGnD,SAAS,mBAAmB,CAC1B,IAAwB;IAExB,MAAM,KAGF,IAA0B,EAHxB,EACJ,GAAG,OAEyB,EAD5B,aAAwC,EAAxC,EAAS,QAAQ,EAAE,KAAK,OAAgB,EAAX,SAAS,cAA/B,qBAAiC,CACZ,CAAC;IAE/B,uBAAS,GAAG,EAAE,KAAK,EAAE,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,EAAE,QAAQ,IAAK,SAAS,EAAG;AACnF,CAAC;AAED,SAAgB,qBAAqB,CACnC,KAAsB,EACtB,aAAsB,KAAK;IAE3B,OAAO,IAAA,iBAAO,EAAC,KAAK,CAAC;SAClB,GAAG,CAAC,CAAC,IAAwB,EAAE,KAAa,EAAqB,EAAE;QAClE,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE;YAC7C,OAAO,IAAI,CAAC;SACb;QAED,MAAM,KAIF,IAEH,EANK,EACJ,IAAI,EAAE,EAAE,gBAAgB,EAAE,EAC1B,GAAG,OAIJ,EAHC,aAAiC,EAAjC,EAAS,QAAQ,OAAgB,EAAX,SAAS,cAAxB,YAA0B,CAGlC,CAAC;QAEF,IAAI,UAAU,IAAI,CAAC,gBAAgB,EAAE;YACnC,OAAO,mBAAmB,CAAC,IAAI,CAAC,CAAC;SAClC;QAED,qCACE,GAAG,EAAE,oBAAoB,GAAG,KAAK,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,EACvD,KAAK,EAAE,GAAG,IACP,SAAS,KACZ,OAAO,EAAE,qBAAqB,CAAC,QAAQ,CAAC,IACxC;IACJ,CAAC,CAAC;SACD,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC;AAC5B,CAAC;AA9BD,sDA8BC","sourcesContent":["import * as React from 'react';\nimport toArray from 'rc-util/lib/Children/toArray';\nimport type { BaseOptionType, DefaultOptionType } from '../Select';\n\nfunction convertNodeToOption<OptionType extends BaseOptionType = DefaultOptionType>(\n node: React.ReactElement,\n): OptionType {\n const {\n key,\n props: { children, value, ...restProps },\n } = node as React.ReactElement;\n\n return { key, value: value !== undefined ? value : key, children, ...restProps };\n}\n\nexport function convertChildrenToData<OptionType extends BaseOptionType = DefaultOptionType>(\n nodes: React.ReactNode,\n optionOnly: boolean = false,\n): OptionType[] {\n return toArray(nodes)\n .map((node: React.ReactElement, index: number): OptionType | null => {\n if (!React.isValidElement(node) || !node.type) {\n return null;\n }\n\n const {\n type: { isSelectOptGroup },\n key,\n props: { children, ...restProps },\n } = node as React.ReactElement & {\n type: { isSelectOptGroup?: boolean };\n };\n\n if (optionOnly || !isSelectOptGroup) {\n return convertNodeToOption(node);\n }\n\n return {\n key: `__RC_SELECT_GRP__${key === null ? index : key}__`,\n label: key,\n ...restProps,\n options: convertChildrenToData(children),\n };\n })\n .filter((data) => data);\n}\n"]}
@@ -0,0 +1,2 @@
1
+ export declare function isPlatformMac(): boolean;
2
+ //# sourceMappingURL=platformUtil.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"platformUtil.d.ts","sourceRoot":"","sources":["../../../../src/tntd-select/rc-select/utils/platformUtil.ts"],"names":[],"mappings":"AACA,wBAAgB,aAAa,IAAI,OAAO,CAEvC"}
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.isPlatformMac = void 0;
4
+ /* istanbul ignore file */
5
+ function isPlatformMac() {
6
+ return /(mac\sos|macintosh)/i.test(navigator.appVersion);
7
+ }
8
+ exports.isPlatformMac = isPlatformMac;
9
+ //# sourceMappingURL=platformUtil.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"platformUtil.js","sourceRoot":"","sources":["../../../../src/tntd-select/rc-select/utils/platformUtil.ts"],"names":[],"mappings":";;;AAAA,0BAA0B;AAC1B,SAAgB,aAAa;IAC3B,OAAO,sBAAsB,CAAC,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC;AAC3D,CAAC;AAFD,sCAEC","sourcesContent":["/* istanbul ignore file */\nexport function isPlatformMac(): boolean {\n return /(mac\\sos|macintosh)/i.test(navigator.appVersion);\n}\n"]}
@@ -0,0 +1,24 @@
1
+ import type { BaseOptionType, DefaultOptionType } from '../Select';
2
+ import type { FieldNames } from '../Select';
3
+ import type { FlattenOptionData } from '../interface';
4
+ export declare function fillFieldNames(fieldNames: FieldNames | undefined, childrenAsData: boolean): {
5
+ label: string;
6
+ value: string;
7
+ options: string;
8
+ groupLabel: string;
9
+ };
10
+ /**
11
+ * Flat options into flatten list.
12
+ * We use `optionOnly` here is aim to avoid user use nested option group.
13
+ * Here is simply set `key` to the index if not provided.
14
+ */
15
+ export declare function flattenOptions<OptionType extends BaseOptionType = DefaultOptionType>(options: OptionType[], { fieldNames, childrenAsData }?: {
16
+ fieldNames?: FieldNames;
17
+ childrenAsData?: boolean;
18
+ }): FlattenOptionData<OptionType>[];
19
+ /**
20
+ * Inject `props` into `option` for legacy usage
21
+ */
22
+ export declare function injectPropsWithOption<T extends object>(option: T): T;
23
+ export declare function getSeparatedContent(text: string, tokens: string[]): string[];
24
+ //# sourceMappingURL=valueUtil.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"valueUtil.d.ts","sourceRoot":"","sources":["../../../../src/tntd-select/rc-select/utils/valueUtil.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAEnE,OAAO,KAAK,EAAgB,UAAU,EAAE,MAAM,WAAW,CAAC;AAC1D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAmBtD,wBAAgB,cAAc,CAAC,UAAU,EAAE,UAAU,GAAG,SAAS,EAAE,cAAc,EAAE,OAAO;;;;;EAUzF;AAED;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,UAAU,SAAS,cAAc,GAAG,iBAAiB,EAClF,OAAO,EAAE,UAAU,EAAE,EACrB,EAAE,UAAU,EAAE,cAAc,EAAE,GAAE;IAAE,UAAU,CAAC,EAAE,UAAU,CAAC;IAAC,cAAc,CAAC,EAAE,OAAO,CAAA;CAAO,GACzF,iBAAiB,CAAC,UAAU,CAAC,EAAE,CA6CjC;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,CAAC,SAAS,MAAM,EAAE,MAAM,EAAE,CAAC,GAAG,CAAC,CAepE;AAED,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAsB5E"}
@@ -0,0 +1,109 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.getSeparatedContent = exports.injectPropsWithOption = exports.flattenOptions = exports.fillFieldNames = void 0;
7
+ const warning_1 = __importDefault(require("rc-util/lib/warning"));
8
+ function getKey(data, index) {
9
+ const { key } = data;
10
+ let value;
11
+ if ('value' in data) {
12
+ ({ value } = data);
13
+ }
14
+ if (key !== null && key !== undefined) {
15
+ return key;
16
+ }
17
+ if (value !== undefined) {
18
+ return value;
19
+ }
20
+ return `rc-index-key-${index}`;
21
+ }
22
+ function fillFieldNames(fieldNames, childrenAsData) {
23
+ const { label, value, options, groupLabel } = fieldNames || {};
24
+ const mergedLabel = label || (childrenAsData ? 'children' : 'label');
25
+ return {
26
+ label: mergedLabel,
27
+ value: value || 'value',
28
+ options: options || 'options',
29
+ groupLabel: groupLabel || mergedLabel,
30
+ };
31
+ }
32
+ exports.fillFieldNames = fillFieldNames;
33
+ /**
34
+ * Flat options into flatten list.
35
+ * We use `optionOnly` here is aim to avoid user use nested option group.
36
+ * Here is simply set `key` to the index if not provided.
37
+ */
38
+ function flattenOptions(options, { fieldNames, childrenAsData } = {}) {
39
+ const flattenList = [];
40
+ const { label: fieldLabel, value: fieldValue, options: fieldOptions, groupLabel } = fillFieldNames(fieldNames, false);
41
+ function dig(list, isGroupOption) {
42
+ list.forEach((data) => {
43
+ if (isGroupOption || !(fieldOptions in data)) {
44
+ const value = data[fieldValue];
45
+ // Option
46
+ flattenList.push({
47
+ key: getKey(data, flattenList.length),
48
+ groupOption: isGroupOption,
49
+ data,
50
+ label: data[fieldLabel],
51
+ value,
52
+ });
53
+ }
54
+ else {
55
+ let grpLabel = data[groupLabel];
56
+ if (grpLabel === undefined && childrenAsData) {
57
+ grpLabel = data.label;
58
+ }
59
+ // Option Group
60
+ flattenList.push({
61
+ key: getKey(data, flattenList.length),
62
+ group: true,
63
+ data,
64
+ label: grpLabel,
65
+ });
66
+ dig(data[fieldOptions], true);
67
+ }
68
+ });
69
+ }
70
+ dig(options, false);
71
+ return flattenList;
72
+ }
73
+ exports.flattenOptions = flattenOptions;
74
+ /**
75
+ * Inject `props` into `option` for legacy usage
76
+ */
77
+ function injectPropsWithOption(option) {
78
+ const newOption = Object.assign({}, option);
79
+ if (!('props' in newOption)) {
80
+ Object.defineProperty(newOption, 'props', {
81
+ get() {
82
+ (0, warning_1.default)(false, 'Return type is option instead of Option instance. Please read value directly instead of reading from `props`.');
83
+ return newOption;
84
+ },
85
+ });
86
+ }
87
+ return newOption;
88
+ }
89
+ exports.injectPropsWithOption = injectPropsWithOption;
90
+ function getSeparatedContent(text, tokens) {
91
+ if (!tokens || !tokens.length) {
92
+ return null;
93
+ }
94
+ let match = false;
95
+ function separate(str, [token, ...restTokens]) {
96
+ if (!token) {
97
+ return [str];
98
+ }
99
+ const list = str.split(token);
100
+ match = match || list.length > 1;
101
+ return list
102
+ .reduce((prevList, unitStr) => [...prevList, ...separate(unitStr, restTokens)], [])
103
+ .filter((unit) => unit);
104
+ }
105
+ const list = separate(text, tokens);
106
+ return match ? list : null;
107
+ }
108
+ exports.getSeparatedContent = getSeparatedContent;
109
+ //# sourceMappingURL=valueUtil.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"valueUtil.js","sourceRoot":"","sources":["../../../../src/tntd-select/rc-select/utils/valueUtil.ts"],"names":[],"mappings":";;;;;;AACA,kEAA0C;AAI1C,SAAS,MAAM,CAAC,IAAoB,EAAE,KAAa;IACjD,MAAM,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC;IACrB,IAAI,KAAmB,CAAC;IAExB,IAAI,OAAO,IAAI,IAAI,EAAE;QACnB,CAAC,EAAE,KAAK,EAAE,GAAG,IAAI,CAAC,CAAC;KACpB;IAED,IAAI,GAAG,KAAK,IAAI,IAAI,GAAG,KAAK,SAAS,EAAE;QACrC,OAAO,GAAG,CAAC;KACZ;IACD,IAAI,KAAK,KAAK,SAAS,EAAE;QACvB,OAAO,KAAK,CAAC;KACd;IACD,OAAO,gBAAgB,KAAK,EAAE,CAAC;AACjC,CAAC;AAED,SAAgB,cAAc,CAAC,UAAkC,EAAE,cAAuB;IACxF,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,GAAG,UAAU,IAAI,EAAE,CAAC;IAC/D,MAAM,WAAW,GAAG,KAAK,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;IAErE,OAAO;QACL,KAAK,EAAE,WAAW;QAClB,KAAK,EAAE,KAAK,IAAI,OAAO;QACvB,OAAO,EAAE,OAAO,IAAI,SAAS;QAC7B,UAAU,EAAE,UAAU,IAAI,WAAW;KACtC,CAAC;AACJ,CAAC;AAVD,wCAUC;AAED;;;;GAIG;AACH,SAAgB,cAAc,CAC5B,OAAqB,EACrB,EAAE,UAAU,EAAE,cAAc,KAA4D,EAAE;IAE1F,MAAM,WAAW,GAAoC,EAAE,CAAC;IAExD,MAAM,EACJ,KAAK,EAAE,UAAU,EACjB,KAAK,EAAE,UAAU,EACjB,OAAO,EAAE,YAAY,EACrB,UAAU,EACX,GAAG,cAAc,CAAC,UAAU,EAAE,KAAK,CAAC,CAAC;IAEtC,SAAS,GAAG,CAAC,IAAkB,EAAE,aAAsB;QACrD,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE;YACpB,IAAI,aAAa,IAAI,CAAC,CAAC,YAAY,IAAI,IAAI,CAAC,EAAE;gBAC5C,MAAM,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC;gBAE/B,SAAS;gBACT,WAAW,CAAC,IAAI,CAAC;oBACf,GAAG,EAAE,MAAM,CAAC,IAAI,EAAE,WAAW,CAAC,MAAM,CAAC;oBACrC,WAAW,EAAE,aAAa;oBAC1B,IAAI;oBACJ,KAAK,EAAE,IAAI,CAAC,UAAU,CAAC;oBACvB,KAAK;iBACN,CAAC,CAAC;aACJ;iBAAM;gBACL,IAAI,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC;gBAChC,IAAI,QAAQ,KAAK,SAAS,IAAI,cAAc,EAAE;oBAC5C,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC;iBACvB;gBAED,eAAe;gBACf,WAAW,CAAC,IAAI,CAAC;oBACf,GAAG,EAAE,MAAM,CAAC,IAAI,EAAE,WAAW,CAAC,MAAM,CAAC;oBACrC,KAAK,EAAE,IAAI;oBACX,IAAI;oBACJ,KAAK,EAAE,QAAQ;iBAChB,CAAC,CAAC;gBAEH,GAAG,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,IAAI,CAAC,CAAC;aAC/B;QACH,CAAC,CAAC,CAAC;IACL,CAAC;IAED,GAAG,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;IAEpB,OAAO,WAAW,CAAC;AACrB,CAAC;AAhDD,wCAgDC;AAED;;GAEG;AACH,SAAgB,qBAAqB,CAAmB,MAAS;IAC/D,MAAM,SAAS,qBAAQ,MAAM,CAAE,CAAC;IAChC,IAAI,CAAC,CAAC,OAAO,IAAI,SAAS,CAAC,EAAE;QAC3B,MAAM,CAAC,cAAc,CAAC,SAAS,EAAE,OAAO,EAAE;YACxC,GAAG;gBACD,IAAA,iBAAO,EACL,KAAK,EACL,+GAA+G,CAChH,CAAC;gBACF,OAAO,SAAS,CAAC;YACnB,CAAC;SACF,CAAC,CAAC;KACJ;IAED,OAAO,SAAS,CAAC;AACnB,CAAC;AAfD,sDAeC;AAED,SAAgB,mBAAmB,CAAC,IAAY,EAAE,MAAgB;IAChE,IAAI,CAAC,MAAM,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE;QAC7B,OAAO,IAAI,CAAC;KACb;IAED,IAAI,KAAK,GAAG,KAAK,CAAC;IAElB,SAAS,QAAQ,CAAC,GAAW,EAAE,CAAC,KAAK,EAAE,GAAG,UAAU,CAAW;QAC7D,IAAI,CAAC,KAAK,EAAE;YACV,OAAO,CAAC,GAAG,CAAC,CAAC;SACd;QAED,MAAM,IAAI,GAAG,GAAG,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;QAC9B,KAAK,GAAG,KAAK,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;QAEjC,OAAO,IAAI;aACR,MAAM,CAAC,CAAC,QAAQ,EAAE,OAAO,EAAE,EAAE,CAAC,CAAC,GAAG,QAAQ,EAAE,GAAG,QAAQ,CAAC,OAAO,EAAE,UAAU,CAAC,CAAC,EAAE,EAAE,CAAC;aAClF,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC;IAC5B,CAAC;IAED,MAAM,IAAI,GAAG,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;IACpC,OAAO,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC;AAC7B,CAAC;AAtBD,kDAsBC","sourcesContent":["import type { BaseOptionType, DefaultOptionType } from '../Select';\nimport warning from 'rc-util/lib/warning';\nimport type { RawValueType, FieldNames } from '../Select';\nimport type { FlattenOptionData } from '../interface';\n\nfunction getKey(data: BaseOptionType, index: number) {\n const { key } = data;\n let value: RawValueType;\n\n if ('value' in data) {\n ({ value } = data);\n }\n\n if (key !== null && key !== undefined) {\n return key;\n }\n if (value !== undefined) {\n return value;\n }\n return `rc-index-key-${index}`;\n}\n\nexport function fillFieldNames(fieldNames: FieldNames | undefined, childrenAsData: boolean) {\n const { label, value, options, groupLabel } = fieldNames || {};\n const mergedLabel = label || (childrenAsData ? 'children' : 'label');\n\n return {\n label: mergedLabel,\n value: value || 'value',\n options: options || 'options',\n groupLabel: groupLabel || mergedLabel,\n };\n}\n\n/**\n * Flat options into flatten list.\n * We use `optionOnly` here is aim to avoid user use nested option group.\n * Here is simply set `key` to the index if not provided.\n */\nexport function flattenOptions<OptionType extends BaseOptionType = DefaultOptionType>(\n options: OptionType[],\n { fieldNames, childrenAsData }: { fieldNames?: FieldNames; childrenAsData?: boolean } = {},\n): FlattenOptionData<OptionType>[] {\n const flattenList: FlattenOptionData<OptionType>[] = [];\n\n const {\n label: fieldLabel,\n value: fieldValue,\n options: fieldOptions,\n groupLabel\n } = fillFieldNames(fieldNames, false);\n\n function dig(list: OptionType[], isGroupOption: boolean) {\n list.forEach((data) => {\n if (isGroupOption || !(fieldOptions in data)) {\n const value = data[fieldValue];\n\n // Option\n flattenList.push({\n key: getKey(data, flattenList.length),\n groupOption: isGroupOption,\n data,\n label: data[fieldLabel],\n value,\n });\n } else {\n let grpLabel = data[groupLabel];\n if (grpLabel === undefined && childrenAsData) {\n grpLabel = data.label;\n }\n\n // Option Group\n flattenList.push({\n key: getKey(data, flattenList.length),\n group: true,\n data,\n label: grpLabel,\n });\n\n dig(data[fieldOptions], true);\n }\n });\n }\n\n dig(options, false);\n\n return flattenList;\n}\n\n/**\n * Inject `props` into `option` for legacy usage\n */\nexport function injectPropsWithOption<T extends object>(option: T): T {\n const newOption = { ...option };\n if (!('props' in newOption)) {\n Object.defineProperty(newOption, 'props', {\n get() {\n warning(\n false,\n 'Return type is option instead of Option instance. Please read value directly instead of reading from `props`.',\n );\n return newOption;\n },\n });\n }\n\n return newOption;\n}\n\nexport function getSeparatedContent(text: string, tokens: string[]): string[] {\n if (!tokens || !tokens.length) {\n return null;\n }\n\n let match = false;\n\n function separate(str: string, [token, ...restTokens]: string[]) {\n if (!token) {\n return [str];\n }\n\n const list = str.split(token);\n match = match || list.length > 1;\n\n return list\n .reduce((prevList, unitStr) => [...prevList, ...separate(unitStr, restTokens)], [])\n .filter((unit) => unit);\n }\n\n const list = separate(text, tokens);\n return match ? list : null;\n}\n"]}
@@ -0,0 +1,5 @@
1
+ import type { DefaultOptionType, FieldNames, SelectProps } from '../Select';
2
+ declare function warningProps(props: SelectProps): void;
3
+ export declare function warningNullOptions(options: DefaultOptionType[], fieldNames: FieldNames): void;
4
+ export default warningProps;
5
+ //# sourceMappingURL=warningPropsUtil.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"warningPropsUtil.d.ts","sourceRoot":"","sources":["../../../../src/tntd-select/rc-select/utils/warningPropsUtil.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAEV,iBAAiB,EACjB,UAAU,EAGV,WAAW,EACZ,MAAM,WAAW,CAAC;AAInB,iBAAS,YAAY,CAAC,KAAK,EAAE,WAAW,QA8IvC;AAID,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,iBAAiB,EAAE,EAAE,UAAU,EAAE,UAAU,QAuBtF;AAED,eAAe,YAAY,CAAC"}
@@ -0,0 +1,130 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ var __importDefault = (this && this.__importDefault) || function (mod) {
26
+ return (mod && mod.__esModule) ? mod : { "default": mod };
27
+ };
28
+ Object.defineProperty(exports, "__esModule", { value: true });
29
+ exports.warningNullOptions = void 0;
30
+ const toArray_1 = __importDefault(require("rc-util/lib/Children/toArray"));
31
+ const warning_1 = __importStar(require("rc-util/lib/warning"));
32
+ const React = __importStar(require("react"));
33
+ const BaseSelect_1 = require("../BaseSelect");
34
+ const commonUtil_1 = require("./commonUtil");
35
+ const legacyUtil_1 = require("./legacyUtil");
36
+ function warningProps(props) {
37
+ const { mode, options, children, backfill, allowClear, placeholder, getInputElement, showSearch, onSearch, defaultOpen, autoFocus, labelInValue, value, inputValue, optionLabelProp, } = props;
38
+ const multiple = (0, BaseSelect_1.isMultiple)(mode);
39
+ const mergedShowSearch = showSearch !== undefined ? showSearch : multiple || mode === 'combobox';
40
+ const mergedOptions = options || (0, legacyUtil_1.convertChildrenToData)(children);
41
+ // `tags` should not set option as disabled
42
+ (0, warning_1.default)(mode !== 'tags' || mergedOptions.every((opt) => !opt.disabled), 'Please avoid setting option to disabled in tags mode since user can always type text as tag.');
43
+ // `combobox` & `tags` should option be `string` type
44
+ if (mode === 'tags' || mode === 'combobox') {
45
+ const hasNumberValue = mergedOptions.some((item) => {
46
+ if (item.options) {
47
+ return item.options.some((opt) => typeof ('value' in opt ? opt.value : opt.key) === 'number');
48
+ }
49
+ return typeof ('value' in item ? item.value : item.key) === 'number';
50
+ });
51
+ (0, warning_1.default)(!hasNumberValue, '`value` of Option should not use number type when `mode` is `tags` or `combobox`.');
52
+ }
53
+ // `combobox` should not use `optionLabelProp`
54
+ (0, warning_1.default)(mode !== 'combobox' || !optionLabelProp, '`combobox` mode not support `optionLabelProp`. Please set `value` on Option directly.');
55
+ // Only `combobox` support `backfill`
56
+ (0, warning_1.default)(mode === 'combobox' || !backfill, '`backfill` only works with `combobox` mode.');
57
+ // Only `combobox` support `getInputElement`
58
+ (0, warning_1.default)(mode === 'combobox' || !getInputElement, '`getInputElement` only work with `combobox` mode.');
59
+ // Customize `getInputElement` should not use `allowClear` & `placeholder`
60
+ (0, warning_1.noteOnce)(mode !== 'combobox' || !getInputElement || !allowClear || !placeholder, 'Customize `getInputElement` should customize clear and placeholder logic instead of configuring `allowClear` and `placeholder`.');
61
+ // `onSearch` should use in `combobox` or `showSearch`
62
+ if (onSearch && !mergedShowSearch && mode !== 'combobox' && mode !== 'tags') {
63
+ (0, warning_1.default)(false, '`onSearch` should work with `showSearch` instead of use alone.');
64
+ }
65
+ (0, warning_1.noteOnce)(!defaultOpen || autoFocus, '`defaultOpen` makes Select open without focus which means it will not close by click outside. You can set `autoFocus` if needed.');
66
+ if (value !== undefined && value !== null) {
67
+ const values = (0, commonUtil_1.toArray)(value);
68
+ (0, warning_1.default)(!labelInValue ||
69
+ values.every((val) => typeof val === 'object' && ('key' in val || 'value' in val)), '`value` should in shape of `{ value: string | number, label?: ReactNode }` when you set `labelInValue` to `true`');
70
+ (0, warning_1.default)(!multiple || Array.isArray(value), '`value` should be array when `mode` is `multiple` or `tags`');
71
+ }
72
+ // Syntactic sugar should use correct children type
73
+ if (children) {
74
+ let invalidateChildType = null;
75
+ (0, toArray_1.default)(children).some((node) => {
76
+ if (!React.isValidElement(node) || !node.type) {
77
+ return false;
78
+ }
79
+ const { type } = node;
80
+ if (type.isSelectOption) {
81
+ return false;
82
+ }
83
+ if (type.isSelectOptGroup) {
84
+ const allChildrenValid = (0, toArray_1.default)(node.props.children).every((subNode) => {
85
+ if (!React.isValidElement(subNode) ||
86
+ !node.type ||
87
+ subNode.type.isSelectOption) {
88
+ return true;
89
+ }
90
+ invalidateChildType = subNode.type;
91
+ return false;
92
+ });
93
+ if (allChildrenValid) {
94
+ return false;
95
+ }
96
+ return true;
97
+ }
98
+ invalidateChildType = type;
99
+ return true;
100
+ });
101
+ if (invalidateChildType) {
102
+ (0, warning_1.default)(false, `\`children\` should be \`Select.Option\` or \`Select.OptGroup\` instead of \`${invalidateChildType.displayName || invalidateChildType.name || invalidateChildType}\`.`);
103
+ }
104
+ (0, warning_1.default)(inputValue === undefined, '`inputValue` is deprecated, please use `searchValue` instead.');
105
+ }
106
+ }
107
+ // value in Select option should not be null
108
+ // note: OptGroup has options too
109
+ function warningNullOptions(options, fieldNames) {
110
+ if (options) {
111
+ const recursiveOptions = (optionsList, inGroup = false) => {
112
+ for (let i = 0; i < optionsList.length; i++) {
113
+ const option = optionsList[i];
114
+ if (option[fieldNames === null || fieldNames === void 0 ? void 0 : fieldNames.value] === null) {
115
+ (0, warning_1.default)(false, '`value` in Select options should not be `null`.');
116
+ return true;
117
+ }
118
+ if (!inGroup &&
119
+ Array.isArray(option[fieldNames === null || fieldNames === void 0 ? void 0 : fieldNames.options]) &&
120
+ recursiveOptions(option[fieldNames === null || fieldNames === void 0 ? void 0 : fieldNames.options], true)) {
121
+ break;
122
+ }
123
+ }
124
+ };
125
+ recursiveOptions(options);
126
+ }
127
+ }
128
+ exports.warningNullOptions = warningNullOptions;
129
+ exports.default = warningProps;
130
+ //# sourceMappingURL=warningPropsUtil.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"warningPropsUtil.js","sourceRoot":"","sources":["../../../../src/tntd-select/rc-select/utils/warningPropsUtil.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2EAAuD;AACvD,+DAAwD;AACxD,6CAA+B;AAC/B,8CAA2C;AAS3C,6CAAuC;AACvC,6CAAqD;AAErD,SAAS,YAAY,CAAC,KAAkB;IACtC,MAAM,EACJ,IAAI,EACJ,OAAO,EACP,QAAQ,EACR,QAAQ,EACR,UAAU,EACV,WAAW,EACX,eAAe,EACf,UAAU,EACV,QAAQ,EACR,WAAW,EACX,SAAS,EACT,YAAY,EACZ,KAAK,EACL,UAAU,EACV,eAAe,GAChB,GAAG,KAAK,CAAC;IAEV,MAAM,QAAQ,GAAG,IAAA,uBAAU,EAAC,IAAI,CAAC,CAAC;IAClC,MAAM,gBAAgB,GAAG,UAAU,KAAK,SAAS,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,QAAQ,IAAI,IAAI,KAAK,UAAU,CAAC;IACjG,MAAM,aAAa,GAAG,OAAO,IAAI,IAAA,kCAAqB,EAAC,QAAQ,CAAC,CAAC;IAEjE,2CAA2C;IAC3C,IAAA,iBAAO,EACL,IAAI,KAAK,MAAM,IAAI,aAAa,CAAC,KAAK,CAAC,CAAC,GAA2B,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,EACtF,8FAA8F,CAC/F,CAAC;IAEF,qDAAqD;IACrD,IAAI,IAAI,KAAK,MAAM,IAAI,IAAI,KAAK,UAAU,EAAE;QAC1C,MAAM,cAAc,GAAG,aAAa,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE;YACjD,IAAI,IAAI,CAAC,OAAO,EAAE;gBAChB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CACtB,CAAC,GAAmB,EAAE,EAAE,CAAC,OAAO,CAAC,OAAO,IAAI,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,QAAQ,CACpF,CAAC;aACH;YACD,OAAO,OAAO,CAAC,OAAO,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,QAAQ,CAAC;QACvE,CAAC,CAAC,CAAC;QAEH,IAAA,iBAAO,EACL,CAAC,cAAc,EACf,mFAAmF,CACpF,CAAC;KACH;IAED,8CAA8C;IAC9C,IAAA,iBAAO,EACL,IAAI,KAAK,UAAU,IAAI,CAAC,eAAe,EACvC,uFAAuF,CACxF,CAAC;IAEF,qCAAqC;IACrC,IAAA,iBAAO,EAAC,IAAI,KAAK,UAAU,IAAI,CAAC,QAAQ,EAAE,6CAA6C,CAAC,CAAC;IAEzF,4CAA4C;IAC5C,IAAA,iBAAO,EACL,IAAI,KAAK,UAAU,IAAI,CAAC,eAAe,EACvC,mDAAmD,CACpD,CAAC;IAEF,0EAA0E;IAC1E,IAAA,kBAAQ,EACN,IAAI,KAAK,UAAU,IAAI,CAAC,eAAe,IAAI,CAAC,UAAU,IAAI,CAAC,WAAW,EACtE,iIAAiI,CAClI,CAAC;IAEF,sDAAsD;IACtD,IAAI,QAAQ,IAAI,CAAC,gBAAgB,IAAI,IAAI,KAAK,UAAU,IAAI,IAAI,KAAK,MAAM,EAAE;QAC3E,IAAA,iBAAO,EAAC,KAAK,EAAE,gEAAgE,CAAC,CAAC;KAClF;IAED,IAAA,kBAAQ,EACN,CAAC,WAAW,IAAI,SAAS,EACzB,kIAAkI,CACnI,CAAC;IAEF,IAAI,KAAK,KAAK,SAAS,IAAI,KAAK,KAAK,IAAI,EAAE;QACzC,MAAM,MAAM,GAAG,IAAA,oBAAO,EAAkC,KAAK,CAAC,CAAC;QAC/D,IAAA,iBAAO,EACL,CAAC,YAAY;YACX,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,OAAO,GAAG,KAAK,QAAQ,IAAI,CAAC,KAAK,IAAI,GAAG,IAAI,OAAO,IAAI,GAAG,CAAC,CAAC,EACpF,kHAAkH,CACnH,CAAC;QAEF,IAAA,iBAAO,EACL,CAAC,QAAQ,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EACjC,6DAA6D,CAC9D,CAAC;KACH;IAED,mDAAmD;IACnD,IAAI,QAAQ,EAAE;QACZ,IAAI,mBAAmB,GAAG,IAAI,CAAC;QAC/B,IAAA,iBAAW,EAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,IAAqB,EAAE,EAAE;YACnD,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE;gBAC7C,OAAO,KAAK,CAAC;aACd;YAED,MAAM,EAAE,IAAI,EAAE,GAAG,IAA0E,CAAC;YAE5F,IAAI,IAAI,CAAC,cAAc,EAAE;gBACvB,OAAO,KAAK,CAAC;aACd;YACD,IAAI,IAAI,CAAC,gBAAgB,EAAE;gBACzB,MAAM,gBAAgB,GAAG,IAAA,iBAAW,EAAC,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,KAAK,CAC7D,CAAC,OAA2B,EAAE,EAAE;oBAC9B,IACE,CAAC,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC;wBAC9B,CAAC,IAAI,CAAC,IAAI;wBACT,OAAO,CAAC,IAAqC,CAAC,cAAc,EAC7D;wBACA,OAAO,IAAI,CAAC;qBACb;oBACD,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC;oBACnC,OAAO,KAAK,CAAC;gBACf,CAAC,CACF,CAAC;gBAEF,IAAI,gBAAgB,EAAE;oBACpB,OAAO,KAAK,CAAC;iBACd;gBACD,OAAO,IAAI,CAAC;aACb;YACD,mBAAmB,GAAG,IAAI,CAAC;YAC3B,OAAO,IAAI,CAAC;QACd,CAAC,CAAC,CAAC;QAEH,IAAI,mBAAmB,EAAE;YACvB,IAAA,iBAAO,EACL,KAAK,EACL,gFACE,mBAAmB,CAAC,WAAW,IAAI,mBAAmB,CAAC,IAAI,IAAI,mBACjE,KAAK,CACN,CAAC;SACH;QAED,IAAA,iBAAO,EACL,UAAU,KAAK,SAAS,EACxB,+DAA+D,CAChE,CAAC;KACH;AACH,CAAC;AAED,4CAA4C;AAC5C,iCAAiC;AACjC,SAAgB,kBAAkB,CAAC,OAA4B,EAAE,UAAsB;IACrF,IAAI,OAAO,EAAE;QACX,MAAM,gBAAgB,GAAG,CAAC,WAAgC,EAAE,UAAmB,KAAK,EAAE,EAAE;YACtF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;gBAC3C,MAAM,MAAM,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;gBAE9B,IAAI,MAAM,CAAC,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK,CAAC,KAAK,IAAI,EAAE;oBACtC,IAAA,iBAAO,EAAC,KAAK,EAAE,iDAAiD,CAAC,CAAC;oBAClE,OAAO,IAAI,CAAC;iBACb;gBAED,IACE,CAAC,OAAO;oBACR,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,OAAO,CAAC,CAAC;oBAC1C,gBAAgB,CAAC,MAAM,CAAC,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,OAAO,CAAC,EAAE,IAAI,CAAC,EACnD;oBACA,MAAM;iBACP;aACF;QACH,CAAC,CAAC;QAEF,gBAAgB,CAAC,OAAO,CAAC,CAAC;KAC3B;AACH,CAAC;AAvBD,gDAuBC;AAED,kBAAe,YAAY,CAAC","sourcesContent":["import toNodeArray from 'rc-util/lib/Children/toArray';\nimport warning, { noteOnce } from 'rc-util/lib/warning';\nimport * as React from 'react';\nimport { isMultiple } from '../BaseSelect';\nimport type {\n BaseOptionType,\n DefaultOptionType,\n FieldNames,\n LabelInValueType,\n RawValueType,\n SelectProps,\n} from '../Select';\nimport { toArray } from './commonUtil';\nimport { convertChildrenToData } from './legacyUtil';\n\nfunction warningProps(props: SelectProps) {\n const {\n mode,\n options,\n children,\n backfill,\n allowClear,\n placeholder,\n getInputElement,\n showSearch,\n onSearch,\n defaultOpen,\n autoFocus,\n labelInValue,\n value,\n inputValue,\n optionLabelProp,\n } = props;\n\n const multiple = isMultiple(mode);\n const mergedShowSearch = showSearch !== undefined ? showSearch : multiple || mode === 'combobox';\n const mergedOptions = options || convertChildrenToData(children);\n\n // `tags` should not set option as disabled\n warning(\n mode !== 'tags' || mergedOptions.every((opt: { disabled?: boolean }) => !opt.disabled),\n 'Please avoid setting option to disabled in tags mode since user can always type text as tag.',\n );\n\n // `combobox` & `tags` should option be `string` type\n if (mode === 'tags' || mode === 'combobox') {\n const hasNumberValue = mergedOptions.some((item) => {\n if (item.options) {\n return item.options.some(\n (opt: BaseOptionType) => typeof ('value' in opt ? opt.value : opt.key) === 'number',\n );\n }\n return typeof ('value' in item ? item.value : item.key) === 'number';\n });\n\n warning(\n !hasNumberValue,\n '`value` of Option should not use number type when `mode` is `tags` or `combobox`.',\n );\n }\n\n // `combobox` should not use `optionLabelProp`\n warning(\n mode !== 'combobox' || !optionLabelProp,\n '`combobox` mode not support `optionLabelProp`. Please set `value` on Option directly.',\n );\n\n // Only `combobox` support `backfill`\n warning(mode === 'combobox' || !backfill, '`backfill` only works with `combobox` mode.');\n\n // Only `combobox` support `getInputElement`\n warning(\n mode === 'combobox' || !getInputElement,\n '`getInputElement` only work with `combobox` mode.',\n );\n\n // Customize `getInputElement` should not use `allowClear` & `placeholder`\n noteOnce(\n mode !== 'combobox' || !getInputElement || !allowClear || !placeholder,\n 'Customize `getInputElement` should customize clear and placeholder logic instead of configuring `allowClear` and `placeholder`.',\n );\n\n // `onSearch` should use in `combobox` or `showSearch`\n if (onSearch && !mergedShowSearch && mode !== 'combobox' && mode !== 'tags') {\n warning(false, '`onSearch` should work with `showSearch` instead of use alone.');\n }\n\n noteOnce(\n !defaultOpen || autoFocus,\n '`defaultOpen` makes Select open without focus which means it will not close by click outside. You can set `autoFocus` if needed.',\n );\n\n if (value !== undefined && value !== null) {\n const values = toArray<RawValueType | LabelInValueType>(value);\n warning(\n !labelInValue ||\n values.every((val) => typeof val === 'object' && ('key' in val || 'value' in val)),\n '`value` should in shape of `{ value: string | number, label?: ReactNode }` when you set `labelInValue` to `true`',\n );\n\n warning(\n !multiple || Array.isArray(value),\n '`value` should be array when `mode` is `multiple` or `tags`',\n );\n }\n\n // Syntactic sugar should use correct children type\n if (children) {\n let invalidateChildType = null;\n toNodeArray(children).some((node: React.ReactNode) => {\n if (!React.isValidElement(node) || !node.type) {\n return false;\n }\n\n const { type } = node as { type: { isSelectOption?: boolean; isSelectOptGroup?: boolean } };\n\n if (type.isSelectOption) {\n return false;\n }\n if (type.isSelectOptGroup) {\n const allChildrenValid = toNodeArray(node.props.children).every(\n (subNode: React.ReactElement) => {\n if (\n !React.isValidElement(subNode) ||\n !node.type ||\n (subNode.type as { isSelectOption?: boolean }).isSelectOption\n ) {\n return true;\n }\n invalidateChildType = subNode.type;\n return false;\n },\n );\n\n if (allChildrenValid) {\n return false;\n }\n return true;\n }\n invalidateChildType = type;\n return true;\n });\n\n if (invalidateChildType) {\n warning(\n false,\n `\\`children\\` should be \\`Select.Option\\` or \\`Select.OptGroup\\` instead of \\`${\n invalidateChildType.displayName || invalidateChildType.name || invalidateChildType\n }\\`.`,\n );\n }\n\n warning(\n inputValue === undefined,\n '`inputValue` is deprecated, please use `searchValue` instead.',\n );\n }\n}\n\n// value in Select option should not be null\n// note: OptGroup has options too\nexport function warningNullOptions(options: DefaultOptionType[], fieldNames: FieldNames) {\n if (options) {\n const recursiveOptions = (optionsList: DefaultOptionType[], inGroup: boolean = false) => {\n for (let i = 0; i < optionsList.length; i++) {\n const option = optionsList[i];\n\n if (option[fieldNames?.value] === null) {\n warning(false, '`value` in Select options should not be `null`.');\n return true;\n }\n\n if (\n !inGroup &&\n Array.isArray(option[fieldNames?.options]) &&\n recursiveOptions(option[fieldNames?.options], true)\n ) {\n break;\n }\n }\n };\n\n recursiveOptions(options);\n }\n}\n\nexport default warningProps;\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tntd",
3
- "version": "2.7.23",
3
+ "version": "2.7.24",
4
4
  "license": "MIT",
5
5
  "dependencies": {
6
6
  "@icon-park/react": "^1.3.5",