@pareto-engineering/design-system 4.0.0-alpha.63 → 4.0.0-alpha.65

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 (286) hide show
  1. package/dist/cjs/f/FormInput/FormInput.js +13 -43
  2. package/dist/cjs/f/common/Label/Label.js +3 -18
  3. package/dist/cjs/f/common/Label/styles.scss +0 -5
  4. package/dist/cjs/f/common/index.js +1 -21
  5. package/dist/cjs/f/fields/Checkbox/Checkbox.js +10 -20
  6. package/dist/cjs/f/fields/Checkbox/styles.scss +7 -5
  7. package/dist/cjs/f/fields/ChoicesInput/ChoicesInput.js +8 -21
  8. package/dist/cjs/f/fields/ChoicesInput/styles.scss +44 -41
  9. package/dist/cjs/f/fields/EditorInput/EditorInput.js +8 -33
  10. package/dist/cjs/f/fields/EditorInput/styles.scss +92 -90
  11. package/dist/cjs/f/fields/LinkInput/LinkInput.js +10 -20
  12. package/dist/cjs/f/fields/LinkInput/styles.scss +52 -51
  13. package/dist/cjs/f/fields/QueryChoices/QueryChoices.js +2 -26
  14. package/dist/cjs/f/fields/QueryCombobox/QueryCombobox.js +0 -24
  15. package/dist/cjs/f/fields/QueryCombobox/common/Combobox/Combobox.js +10 -17
  16. package/dist/cjs/f/fields/QueryCombobox/common/MultipleCombobox/MultipleCombobox.js +13 -19
  17. package/dist/cjs/f/fields/QueryCombobox/styles.scss +11 -4
  18. package/dist/cjs/f/fields/QuerySelect/QuerySelect.js +2 -10
  19. package/dist/cjs/f/fields/RatingsInput/RatingsInput.js +11 -33
  20. package/dist/cjs/f/fields/RatingsInput/styles.scss +5 -1
  21. package/dist/cjs/f/fields/SelectInput/SelectInput.js +9 -33
  22. package/dist/cjs/f/fields/SelectInput/styles.scss +5 -2
  23. package/dist/cjs/f/fields/TextInput/TextInput.js +15 -37
  24. package/dist/cjs/f/fields/TextInput/styles.scss +37 -30
  25. package/dist/cjs/f/fields/TextareaInput/TextareaInput.js +11 -35
  26. package/dist/cjs/f/fields/TextareaInput/styles.scss +30 -27
  27. package/dist/cjs/f/fields/index.js +1 -26
  28. package/dist/es/f/FormInput/FormInput.js +3 -33
  29. package/dist/es/f/common/Description/Description.js +1 -1
  30. package/dist/es/f/common/Label/Label.js +4 -20
  31. package/dist/es/f/common/Label/styles.scss +0 -5
  32. package/dist/es/f/common/index.js +1 -3
  33. package/dist/es/f/fields/Checkbox/Checkbox.js +11 -20
  34. package/dist/es/f/fields/Checkbox/styles.scss +7 -5
  35. package/dist/es/f/fields/ChoicesInput/ChoicesInput.js +9 -22
  36. package/dist/es/f/fields/ChoicesInput/styles.scss +44 -41
  37. package/dist/es/f/fields/EditorInput/EditorInput.js +9 -34
  38. package/dist/es/f/fields/EditorInput/styles.scss +92 -90
  39. package/dist/es/f/fields/LinkInput/LinkInput.js +11 -19
  40. package/dist/es/f/fields/LinkInput/styles.scss +52 -51
  41. package/dist/es/f/fields/QueryChoices/QueryChoices.js +2 -26
  42. package/dist/es/f/fields/QueryCombobox/QueryCombobox.js +1 -25
  43. package/dist/es/f/fields/QueryCombobox/common/Combobox/Combobox.js +11 -18
  44. package/dist/es/f/fields/QueryCombobox/common/MultipleCombobox/MultipleCombobox.js +14 -20
  45. package/dist/es/f/fields/QueryCombobox/styles.scss +11 -4
  46. package/dist/es/f/fields/QuerySelect/QuerySelect.js +2 -10
  47. package/dist/es/f/fields/RatingsInput/RatingsInput.js +12 -35
  48. package/dist/es/f/fields/RatingsInput/styles.scss +5 -1
  49. package/dist/es/f/fields/SelectInput/SelectInput.js +10 -34
  50. package/dist/es/f/fields/SelectInput/styles.scss +5 -2
  51. package/dist/es/f/fields/TextInput/TextInput.js +16 -36
  52. package/dist/es/f/fields/TextInput/styles.scss +37 -30
  53. package/dist/es/f/fields/TextareaInput/TextareaInput.js +11 -35
  54. package/dist/es/f/fields/TextareaInput/styles.scss +30 -27
  55. package/dist/es/f/fields/index.js +1 -2
  56. package/package.json +3 -3
  57. package/src/stories/f/Checkbox.stories.jsx +13 -21
  58. package/src/stories/f/ChoicesInput.stories.jsx +12 -27
  59. package/src/stories/f/EditorInput.stories.jsx +7 -14
  60. package/src/stories/f/LinkInput.stories.jsx +15 -22
  61. package/src/stories/f/QueryChoices.stories.jsx +12 -19
  62. package/src/stories/f/QueryCombobox.stories.jsx +16 -24
  63. package/src/stories/f/QuerySelect.stories.jsx +12 -19
  64. package/src/stories/f/RatingsInput.stories.jsx +7 -14
  65. package/src/stories/f/SelectInput.stories.jsx +12 -19
  66. package/src/stories/f/TextInput.stories.jsx +16 -23
  67. package/src/stories/f/TextareaInput.stories.jsx +7 -14
  68. package/src/ui/f/FormInput/FormInput.jsx +12 -57
  69. package/src/ui/f/common/Description/Description.jsx +2 -2
  70. package/src/ui/f/common/Label/Label.jsx +2 -20
  71. package/src/ui/f/common/Label/styles.scss +0 -5
  72. package/src/ui/f/common/index.js +0 -2
  73. package/src/ui/f/fields/Checkbox/Checkbox.jsx +22 -33
  74. package/src/ui/f/fields/Checkbox/styles.scss +7 -5
  75. package/src/ui/f/fields/ChoicesInput/ChoicesInput.jsx +43 -57
  76. package/src/ui/f/fields/ChoicesInput/styles.scss +44 -41
  77. package/src/ui/f/fields/EditorInput/EditorInput.jsx +13 -40
  78. package/src/ui/f/fields/EditorInput/styles.scss +92 -90
  79. package/src/ui/f/fields/LinkInput/LinkInput.jsx +35 -44
  80. package/src/ui/f/fields/LinkInput/styles.scss +52 -51
  81. package/src/ui/f/fields/QueryChoices/QueryChoices.jsx +0 -28
  82. package/src/ui/f/fields/QueryCombobox/QueryCombobox.jsx +2 -30
  83. package/src/ui/f/fields/QueryCombobox/common/Combobox/Combobox.jsx +32 -41
  84. package/src/ui/f/fields/QueryCombobox/common/MultipleCombobox/MultipleCombobox.jsx +55 -62
  85. package/src/ui/f/fields/QueryCombobox/styles.scss +11 -4
  86. package/src/ui/f/fields/QuerySelect/QuerySelect.jsx +0 -8
  87. package/src/ui/f/fields/RatingsInput/RatingsInput.jsx +16 -46
  88. package/src/ui/f/fields/RatingsInput/styles.scss +5 -1
  89. package/src/ui/f/fields/SelectInput/SelectInput.jsx +28 -58
  90. package/src/ui/f/fields/SelectInput/styles.scss +5 -2
  91. package/src/ui/f/fields/TextInput/TextInput.jsx +24 -49
  92. package/src/ui/f/fields/TextInput/styles.scss +37 -30
  93. package/src/ui/f/fields/TextareaInput/TextareaInput.jsx +28 -57
  94. package/src/ui/f/fields/TextareaInput/styles.scss +30 -27
  95. package/src/ui/f/fields/index.js +0 -1
  96. package/tests/__snapshots__/Storyshots.test.js.snap +609 -8434
  97. package/dist/cjs/f/common/InputWrapper/InputWrapper.js +0 -73
  98. package/dist/cjs/f/common/InputWrapper/index.js +0 -13
  99. package/dist/cjs/f/common/InputWrapper/styles.scss +0 -13
  100. package/dist/cjs/f/common/V2/Description/Description.js +0 -76
  101. package/dist/cjs/f/common/V2/Description/index.js +0 -13
  102. package/dist/cjs/f/common/V2/Description/styles.scss +0 -10
  103. package/dist/cjs/f/common/V2/Label/Label.js +0 -84
  104. package/dist/cjs/f/common/V2/Label/index.js +0 -13
  105. package/dist/cjs/f/common/V2/Label/styles.scss +0 -9
  106. package/dist/cjs/f/common/V2/index.js +0 -19
  107. package/dist/cjs/f/fields/V2/Checkbox/Checkbox.js +0 -122
  108. package/dist/cjs/f/fields/V2/Checkbox/index.js +0 -13
  109. package/dist/cjs/f/fields/V2/Checkbox/styles.scss +0 -16
  110. package/dist/cjs/f/fields/V2/ChoicesInput/ChoicesInput.js +0 -154
  111. package/dist/cjs/f/fields/V2/ChoicesInput/common/Choice/Choice.js +0 -104
  112. package/dist/cjs/f/fields/V2/ChoicesInput/common/Choice/index.js +0 -13
  113. package/dist/cjs/f/fields/V2/ChoicesInput/common/index.js +0 -12
  114. package/dist/cjs/f/fields/V2/ChoicesInput/index.js +0 -13
  115. package/dist/cjs/f/fields/V2/ChoicesInput/styles.scss +0 -79
  116. package/dist/cjs/f/fields/V2/EditorInput/EditorInput.js +0 -197
  117. package/dist/cjs/f/fields/V2/EditorInput/common/Toolbar.js +0 -257
  118. package/dist/cjs/f/fields/V2/EditorInput/common/TreeViewPlugin.js +0 -18
  119. package/dist/cjs/f/fields/V2/EditorInput/common/index.js +0 -20
  120. package/dist/cjs/f/fields/V2/EditorInput/index.js +0 -13
  121. package/dist/cjs/f/fields/V2/EditorInput/styles.scss +0 -149
  122. package/dist/cjs/f/fields/V2/LinkInput/LinkInput.js +0 -156
  123. package/dist/cjs/f/fields/V2/LinkInput/index.js +0 -13
  124. package/dist/cjs/f/fields/V2/LinkInput/styles.scss +0 -90
  125. package/dist/cjs/f/fields/V2/QueryChoices/QueryChoices.js +0 -137
  126. package/dist/cjs/f/fields/V2/QueryChoices/index.js +0 -13
  127. package/dist/cjs/f/fields/V2/QueryCombobox/QueryCombobox.js +0 -229
  128. package/dist/cjs/f/fields/V2/QueryCombobox/common/Combobox/Combobox.js +0 -236
  129. package/dist/cjs/f/fields/V2/QueryCombobox/common/Combobox/index.js +0 -13
  130. package/dist/cjs/f/fields/V2/QueryCombobox/common/Menu/Menu.js +0 -83
  131. package/dist/cjs/f/fields/V2/QueryCombobox/common/Menu/index.js +0 -13
  132. package/dist/cjs/f/fields/V2/QueryCombobox/common/MultipleCombobox/MultipleCombobox.js +0 -300
  133. package/dist/cjs/f/fields/V2/QueryCombobox/common/MultipleCombobox/index.js +0 -13
  134. package/dist/cjs/f/fields/V2/QueryCombobox/common/index.js +0 -26
  135. package/dist/cjs/f/fields/V2/QueryCombobox/index.js +0 -13
  136. package/dist/cjs/f/fields/V2/QueryCombobox/styles.scss +0 -127
  137. package/dist/cjs/f/fields/V2/QuerySelect/QuerySelect.js +0 -198
  138. package/dist/cjs/f/fields/V2/QuerySelect/index.js +0 -13
  139. package/dist/cjs/f/fields/V2/RatingsInput/RatingsInput.js +0 -130
  140. package/dist/cjs/f/fields/V2/RatingsInput/common/Rating/Rating.js +0 -117
  141. package/dist/cjs/f/fields/V2/RatingsInput/common/Rating/index.js +0 -13
  142. package/dist/cjs/f/fields/V2/RatingsInput/common/index.js +0 -12
  143. package/dist/cjs/f/fields/V2/RatingsInput/index.js +0 -13
  144. package/dist/cjs/f/fields/V2/RatingsInput/styles.scss +0 -48
  145. package/dist/cjs/f/fields/V2/SelectInput/SelectInput.js +0 -154
  146. package/dist/cjs/f/fields/V2/SelectInput/index.js +0 -13
  147. package/dist/cjs/f/fields/V2/SelectInput/styles.scss +0 -87
  148. package/dist/cjs/f/fields/V2/TextInput/TextInput.js +0 -155
  149. package/dist/cjs/f/fields/V2/TextInput/index.js +0 -13
  150. package/dist/cjs/f/fields/V2/TextInput/styles.scss +0 -78
  151. package/dist/cjs/f/fields/V2/TextareaInput/TextareaInput.js +0 -152
  152. package/dist/cjs/f/fields/V2/TextareaInput/index.js +0 -13
  153. package/dist/cjs/f/fields/V2/TextareaInput/styles.scss +0 -53
  154. package/dist/cjs/f/fields/V2/index.js +0 -82
  155. package/dist/es/f/common/InputWrapper/InputWrapper.js +0 -61
  156. package/dist/es/f/common/InputWrapper/index.js +0 -2
  157. package/dist/es/f/common/InputWrapper/styles.scss +0 -13
  158. package/dist/es/f/common/V2/Description/Description.js +0 -68
  159. package/dist/es/f/common/V2/Description/index.js +0 -2
  160. package/dist/es/f/common/V2/Description/styles.scss +0 -10
  161. package/dist/es/f/common/V2/Label/Label.js +0 -76
  162. package/dist/es/f/common/V2/Label/index.js +0 -2
  163. package/dist/es/f/common/V2/Label/styles.scss +0 -9
  164. package/dist/es/f/common/V2/index.js +0 -2
  165. package/dist/es/f/fields/V2/Checkbox/Checkbox.js +0 -114
  166. package/dist/es/f/fields/V2/Checkbox/index.js +0 -2
  167. package/dist/es/f/fields/V2/Checkbox/styles.scss +0 -16
  168. package/dist/es/f/fields/V2/ChoicesInput/ChoicesInput.js +0 -148
  169. package/dist/es/f/fields/V2/ChoicesInput/common/Choice/Choice.js +0 -97
  170. package/dist/es/f/fields/V2/ChoicesInput/common/Choice/index.js +0 -2
  171. package/dist/es/f/fields/V2/ChoicesInput/common/index.js +0 -1
  172. package/dist/es/f/fields/V2/ChoicesInput/index.js +0 -2
  173. package/dist/es/f/fields/V2/ChoicesInput/styles.scss +0 -79
  174. package/dist/es/f/fields/V2/EditorInput/EditorInput.js +0 -192
  175. package/dist/es/f/fields/V2/EditorInput/common/Toolbar.js +0 -246
  176. package/dist/es/f/fields/V2/EditorInput/common/TreeViewPlugin.js +0 -11
  177. package/dist/es/f/fields/V2/EditorInput/common/index.js +0 -2
  178. package/dist/es/f/fields/V2/EditorInput/index.js +0 -2
  179. package/dist/es/f/fields/V2/EditorInput/styles.scss +0 -149
  180. package/dist/es/f/fields/V2/LinkInput/LinkInput.js +0 -148
  181. package/dist/es/f/fields/V2/LinkInput/index.js +0 -2
  182. package/dist/es/f/fields/V2/LinkInput/styles.scss +0 -90
  183. package/dist/es/f/fields/V2/QueryChoices/QueryChoices.js +0 -126
  184. package/dist/es/f/fields/V2/QueryChoices/index.js +0 -2
  185. package/dist/es/f/fields/V2/QueryCombobox/QueryCombobox.js +0 -221
  186. package/dist/es/f/fields/V2/QueryCombobox/common/Combobox/Combobox.js +0 -229
  187. package/dist/es/f/fields/V2/QueryCombobox/common/Combobox/index.js +0 -2
  188. package/dist/es/f/fields/V2/QueryCombobox/common/Menu/Menu.js +0 -73
  189. package/dist/es/f/fields/V2/QueryCombobox/common/Menu/index.js +0 -2
  190. package/dist/es/f/fields/V2/QueryCombobox/common/MultipleCombobox/MultipleCombobox.js +0 -293
  191. package/dist/es/f/fields/V2/QueryCombobox/common/MultipleCombobox/index.js +0 -2
  192. package/dist/es/f/fields/V2/QueryCombobox/common/index.js +0 -3
  193. package/dist/es/f/fields/V2/QueryCombobox/index.js +0 -2
  194. package/dist/es/f/fields/V2/QueryCombobox/styles.scss +0 -127
  195. package/dist/es/f/fields/V2/QuerySelect/QuerySelect.js +0 -186
  196. package/dist/es/f/fields/V2/QuerySelect/index.js +0 -2
  197. package/dist/es/f/fields/V2/RatingsInput/RatingsInput.js +0 -124
  198. package/dist/es/f/fields/V2/RatingsInput/common/Rating/Rating.js +0 -109
  199. package/dist/es/f/fields/V2/RatingsInput/common/Rating/index.js +0 -2
  200. package/dist/es/f/fields/V2/RatingsInput/common/index.js +0 -1
  201. package/dist/es/f/fields/V2/RatingsInput/index.js +0 -2
  202. package/dist/es/f/fields/V2/RatingsInput/styles.scss +0 -48
  203. package/dist/es/f/fields/V2/SelectInput/SelectInput.js +0 -146
  204. package/dist/es/f/fields/V2/SelectInput/index.js +0 -2
  205. package/dist/es/f/fields/V2/SelectInput/styles.scss +0 -87
  206. package/dist/es/f/fields/V2/TextInput/TextInput.js +0 -147
  207. package/dist/es/f/fields/V2/TextInput/index.js +0 -2
  208. package/dist/es/f/fields/V2/TextInput/styles.scss +0 -78
  209. package/dist/es/f/fields/V2/TextareaInput/TextareaInput.js +0 -146
  210. package/dist/es/f/fields/V2/TextareaInput/index.js +0 -2
  211. package/dist/es/f/fields/V2/TextareaInput/styles.scss +0 -53
  212. package/dist/es/f/fields/V2/index.js +0 -11
  213. package/src/stories/f/v2/Checkbox.stories.jsx +0 -102
  214. package/src/stories/f/v2/ChoicesInput.stories.jsx +0 -139
  215. package/src/stories/f/v2/EditorInput.stories.jsx +0 -81
  216. package/src/stories/f/v2/LinkInput.stories.jsx +0 -93
  217. package/src/stories/f/v2/QueryChoices.stories.jsx +0 -144
  218. package/src/stories/f/v2/QueryCombobox.stories.jsx +0 -301
  219. package/src/stories/f/v2/QuerySelect.stories.jsx +0 -150
  220. package/src/stories/f/v2/RatingsInput.stories.jsx +0 -77
  221. package/src/stories/f/v2/SelectInput.stories.jsx +0 -95
  222. package/src/stories/f/v2/TextInput.stories.jsx +0 -120
  223. package/src/stories/f/v2/TextareaInput.stories.jsx +0 -107
  224. package/src/stories/f/v2/__generated__/FormInputAllTaskStatusesQuery.graphql.js +0 -122
  225. package/src/stories/f/v2/__generated__/FormInputAllTeamsQuery.graphql.js +0 -139
  226. package/src/stories/f/v2/__generated__/QueryChoicesAllTaskStatusesQuery.graphql.js +0 -122
  227. package/src/stories/f/v2/__generated__/QueryComboboxAllTeamsQuery.graphql.js +0 -139
  228. package/src/stories/f/v2/__generated__/QuerySelectAllTaskStatusesQuery.graphql.js +0 -122
  229. package/src/ui/f/common/InputWrapper/InputWrapper.jsx +0 -83
  230. package/src/ui/f/common/InputWrapper/index.js +0 -2
  231. package/src/ui/f/common/InputWrapper/styles.scss +0 -13
  232. package/src/ui/f/common/V2/Description/Description.jsx +0 -94
  233. package/src/ui/f/common/V2/Description/index.js +0 -2
  234. package/src/ui/f/common/V2/Description/styles.scss +0 -10
  235. package/src/ui/f/common/V2/Label/Label.jsx +0 -102
  236. package/src/ui/f/common/V2/Label/index.js +0 -2
  237. package/src/ui/f/common/V2/Label/styles.scss +0 -9
  238. package/src/ui/f/common/V2/index.js +0 -2
  239. package/src/ui/f/fields/V2/Checkbox/Checkbox.jsx +0 -146
  240. package/src/ui/f/fields/V2/Checkbox/index.js +0 -2
  241. package/src/ui/f/fields/V2/Checkbox/styles.scss +0 -16
  242. package/src/ui/f/fields/V2/ChoicesInput/ChoicesInput.jsx +0 -183
  243. package/src/ui/f/fields/V2/ChoicesInput/common/Choice/Choice.jsx +0 -125
  244. package/src/ui/f/fields/V2/ChoicesInput/common/Choice/index.js +0 -2
  245. package/src/ui/f/fields/V2/ChoicesInput/common/index.js +0 -1
  246. package/src/ui/f/fields/V2/ChoicesInput/index.js +0 -2
  247. package/src/ui/f/fields/V2/ChoicesInput/styles.scss +0 -79
  248. package/src/ui/f/fields/V2/EditorInput/EditorInput.jsx +0 -244
  249. package/src/ui/f/fields/V2/EditorInput/common/Toolbar.jsx +0 -356
  250. package/src/ui/f/fields/V2/EditorInput/common/TreeViewPlugin.jsx +0 -16
  251. package/src/ui/f/fields/V2/EditorInput/common/index.jsx +0 -2
  252. package/src/ui/f/fields/V2/EditorInput/index.js +0 -2
  253. package/src/ui/f/fields/V2/EditorInput/styles.scss +0 -149
  254. package/src/ui/f/fields/V2/LinkInput/LinkInput.jsx +0 -187
  255. package/src/ui/f/fields/V2/LinkInput/index.js +0 -2
  256. package/src/ui/f/fields/V2/LinkInput/styles.scss +0 -90
  257. package/src/ui/f/fields/V2/QueryChoices/QueryChoices.jsx +0 -153
  258. package/src/ui/f/fields/V2/QueryChoices/index.js +0 -2
  259. package/src/ui/f/fields/V2/QueryCombobox/QueryCombobox.jsx +0 -254
  260. package/src/ui/f/fields/V2/QueryCombobox/common/Combobox/Combobox.jsx +0 -276
  261. package/src/ui/f/fields/V2/QueryCombobox/common/Combobox/index.js +0 -2
  262. package/src/ui/f/fields/V2/QueryCombobox/common/Menu/Menu.jsx +0 -103
  263. package/src/ui/f/fields/V2/QueryCombobox/common/Menu/index.js +0 -2
  264. package/src/ui/f/fields/V2/QueryCombobox/common/MultipleCombobox/MultipleCombobox.jsx +0 -362
  265. package/src/ui/f/fields/V2/QueryCombobox/common/MultipleCombobox/index.js +0 -2
  266. package/src/ui/f/fields/V2/QueryCombobox/common/index.js +0 -3
  267. package/src/ui/f/fields/V2/QueryCombobox/index.js +0 -2
  268. package/src/ui/f/fields/V2/QueryCombobox/styles.scss +0 -127
  269. package/src/ui/f/fields/V2/QuerySelect/QuerySelect.jsx +0 -220
  270. package/src/ui/f/fields/V2/QuerySelect/index.js +0 -2
  271. package/src/ui/f/fields/V2/RatingsInput/RatingsInput.jsx +0 -152
  272. package/src/ui/f/fields/V2/RatingsInput/common/Rating/Rating.jsx +0 -142
  273. package/src/ui/f/fields/V2/RatingsInput/common/Rating/index.js +0 -2
  274. package/src/ui/f/fields/V2/RatingsInput/common/index.js +0 -1
  275. package/src/ui/f/fields/V2/RatingsInput/index.js +0 -2
  276. package/src/ui/f/fields/V2/RatingsInput/styles.scss +0 -48
  277. package/src/ui/f/fields/V2/SelectInput/SelectInput.jsx +0 -187
  278. package/src/ui/f/fields/V2/SelectInput/index.js +0 -2
  279. package/src/ui/f/fields/V2/SelectInput/styles.scss +0 -87
  280. package/src/ui/f/fields/V2/TextInput/TextInput.jsx +0 -192
  281. package/src/ui/f/fields/V2/TextInput/index.js +0 -2
  282. package/src/ui/f/fields/V2/TextInput/styles.scss +0 -78
  283. package/src/ui/f/fields/V2/TextareaInput/TextareaInput.jsx +0 -180
  284. package/src/ui/f/fields/V2/TextareaInput/index.js +0 -2
  285. package/src/ui/f/fields/V2/TextareaInput/styles.scss +0 -53
  286. package/src/ui/f/fields/V2/index.js +0 -11
@@ -1,362 +0,0 @@
1
- /* @pareto-engineering/generator-front 1.0.12 */
2
- import * as React from 'react'
3
-
4
- import { useState, useEffect, useRef } from 'react'
5
-
6
- import PropTypes from 'prop-types'
7
-
8
- import styleNames from '@pareto-engineering/bem/exports'
9
-
10
- import { useCombobox, useMultipleSelection } from 'downshift'
11
-
12
- import { Button } from 'ui/b'
13
-
14
- import { Popover, LoadingCircle } from 'ui/a'
15
-
16
- import { FormDescriptionV2, FormLabelV2 } from 'ui/f'
17
-
18
- import { lookUpInputValueFromFetchedOptions } from '../../../../../common'
19
-
20
- // Local Definitions
21
-
22
- import { Menu } from '../Menu'
23
-
24
- const baseClassName = styleNames.base
25
-
26
- const componentClassName = 'multiple-combobox'
27
-
28
- /**
29
- * @param {Array[Object]} first - first array to check if it has an item not in the second array.
30
- * @param {Array[Object]} second - second array to check against the first array.
31
- *
32
- * @returns {Boolean} - true if the first array has an item not in the second array.
33
- */
34
- const testIfArraysAreUnique = (first, second) => first
35
- .filter((objInFirstArray) => !second
36
- .some((objInSecondArray) => objInFirstArray.value === objInSecondArray.value))
37
- .length > 0
38
-
39
- /**
40
- * This is the component description.
41
- */
42
- const MultipleCombobox = ({
43
- id,
44
- className:userClassName,
45
- style,
46
- label,
47
- labelColor,
48
- name,
49
- optional,
50
- options:items,
51
- getOptions,
52
- setValue,
53
- description,
54
- value,
55
- color,
56
- isFetching,
57
- minLength,
58
- transformSearch,
59
- disabled,
60
- placeholder,
61
- setOptions,
62
- promptCreateNewOption,
63
- // ...otherProps
64
- }) => {
65
- const [searchInputValue, setSearchInputValue] = useState('')
66
- const {
67
- getSelectedItemProps,
68
- getDropdownProps,
69
- addSelectedItem,
70
- removeSelectedItem,
71
- setSelectedItems,
72
- selectedItems,
73
- } = useMultipleSelection({
74
- initialSelectedItems:value || [],
75
- })
76
-
77
- /**
78
- * @returns {Boolean} - Unique items from the options array so that the combobox
79
- * shows only the options that are not yet selected.
80
- */
81
- const getFilteredItems = () => items
82
- .filter((item) => selectedItems
83
- .findIndex((e) => e.label === item.label) < 0)
84
-
85
- const {
86
- isOpen,
87
- getLabelProps,
88
- getMenuProps,
89
- getInputProps,
90
- getComboboxProps,
91
- highlightedIndex,
92
- getItemProps,
93
- inputValue,
94
- setInputValue,
95
- } = useCombobox({
96
- searchInputValue,
97
- defaultHighlightedIndex:0, // after selection, highlight the first item.
98
- selectedItem :null,
99
- items :getFilteredItems(),
100
- circularNavigation :true,
101
- stateReducer :(state, actionAndChanges) => {
102
- const { changes, type } = actionAndChanges
103
- switch (type) {
104
- case useCombobox.stateChangeTypes.InputKeyDownEnter:
105
- case useCombobox.stateChangeTypes.ItemClick:
106
- return {
107
- ...changes,
108
- isOpen:true, // keep the menu open after selection.
109
- }
110
- default:
111
- break
112
- }
113
- return changes
114
- },
115
- onStateChange:({ inputValue:newSearchInputValue, type, selectedItem }) => {
116
- switch (type) {
117
- case useCombobox.stateChangeTypes.InputChange: {
118
- const transformedInput = transformSearch(newSearchInputValue)
119
- if (transformedInput.length > minLength) {
120
- getOptions(transformedInput)
121
- }
122
- setSearchInputValue(newSearchInputValue)
123
- break
124
- }
125
- case useCombobox.stateChangeTypes.InputKeyDownEnter:
126
- case useCombobox.stateChangeTypes.ItemClick:
127
- case useCombobox.stateChangeTypes.InputBlur:
128
- if (selectedItem) {
129
- setSearchInputValue('')
130
- addSelectedItem(selectedItem)
131
- }
132
- break
133
- default:
134
- break
135
- }
136
- },
137
- })
138
-
139
- useEffect(() => {
140
- if (selectedItems?.length > 0) {
141
- setValue(selectedItems)
142
- }
143
- }, [selectedItems])
144
-
145
- useEffect(() => {
146
- if (promptCreateNewOption) {
147
- lookUpInputValueFromFetchedOptions({
148
- items, inputValue, setOptions, minLength,
149
- })
150
- }
151
- }, [inputValue, items, promptCreateNewOption])
152
-
153
- useEffect(() => {
154
- if (value?.length > 0 && (
155
- testIfArraysAreUnique(value, selectedItems)
156
- || testIfArraysAreUnique(selectedItems, value)
157
- )) {
158
- setSelectedItems(value)
159
- }
160
- }, [value])
161
-
162
- const parentRef = useRef(null)
163
-
164
- const resetInputValue = () => setInputValue('')
165
-
166
- return (
167
- <div
168
- id={id}
169
- className={[
170
- baseClassName,
171
- componentClassName,
172
- userClassName,
173
- ]
174
- .filter((e) => e)
175
- .join(' ')}
176
- style={style}
177
- ref={parentRef}
178
- {...getComboboxProps()}
179
- >
180
- <FormLabelV2
181
- className={[
182
- baseClassName,
183
- componentClassName,
184
- ]
185
- .filter((e) => e)
186
- .join(' ')}
187
- {...getLabelProps()}
188
- name={name}
189
- optional={optional}
190
- color={labelColor}
191
- >
192
- {label}
193
- </FormLabelV2>
194
-
195
- {selectedItems?.length > 0 && (
196
- <div className="selected-items">
197
- {selectedItems.map((selectedItem, index) => (
198
- <div
199
- key={selectedItem.label}
200
- {...getSelectedItemProps({ selectedItem, index })}
201
- className="item"
202
- >
203
- <Button
204
- onClick={(e) => {
205
- e.stopPropagation()
206
- removeSelectedItem(selectedItem)
207
- }}
208
- isCompact
209
- color={color}
210
- >
211
- <span>{selectedItem.label}</span>
212
- <span className="icon close">Y</span>
213
- </Button>
214
- </div>
215
- ))}
216
- </div>
217
- )}
218
- <input
219
- {...getInputProps(
220
- getDropdownProps({ preventKeyAction: isOpen }),
221
- )}
222
- className="input"
223
- disabled={disabled}
224
- placeholder={placeholder}
225
- />
226
- {isFetching && (
227
- <LoadingCircle className="x-main" />
228
- )}
229
- {inputValue.length > minLength && !isFetching && (
230
- <Button
231
- isSimple
232
- isCompact
233
- color="interactive"
234
- onClick={resetInputValue}
235
- >
236
- <span className="icon">
237
- Y
238
- </span>
239
- </Button>
240
- )}
241
-
242
- <FormDescriptionV2 className="s-1" description={description} name={name} />
243
- <Popover
244
- isOpen={isOpen}
245
- parentRef={parentRef}
246
- >
247
- <Menu
248
- className={`y-${color}`}
249
- isOpen={isOpen}
250
- getItemProps={getItemProps}
251
- highlightedIndex={highlightedIndex}
252
- items={getFilteredItems()}
253
- {...getMenuProps()}
254
- />
255
- </Popover>
256
-
257
- </div>
258
- )
259
- }
260
-
261
- MultipleCombobox.propTypes = {
262
- /**
263
- * The HTML id for this element
264
- */
265
- id:PropTypes.string,
266
-
267
- /**
268
- * The HTML class names for this element
269
- */
270
- className:PropTypes.string,
271
-
272
- /**
273
- * The React-written, css properties for this element.
274
- */
275
- style:PropTypes.objectOf(PropTypes.string),
276
-
277
- /**
278
- * The label of the custom select input
279
- */
280
- label:PropTypes.string,
281
-
282
- /**
283
- * The custom select input options from the backend
284
- */
285
- options:PropTypes.arrayOf(
286
- PropTypes.shape({
287
- value:PropTypes.string,
288
- label:PropTypes.string,
289
- }),
290
- ),
291
-
292
- /**
293
- * The name of the custom select input
294
- */
295
- name:PropTypes.string,
296
-
297
- /**
298
- * The function to fetch the options from the backend
299
- */
300
- getOptions:PropTypes.func,
301
-
302
- /**
303
- * The function to set the value of the custom select input
304
- */
305
- setValue:PropTypes.func.isRequired,
306
-
307
- /**
308
- * The custom select input description
309
- */
310
- description:PropTypes.string,
311
-
312
- /**
313
- * The value of the custom select input
314
- */
315
- value:PropTypes.arrayOf(
316
- PropTypes.shape({
317
- value:PropTypes.string,
318
- label:PropTypes.string,
319
- }),
320
- ),
321
-
322
- /**
323
- * The base color of the custom select input
324
- */
325
- color:PropTypes.string,
326
-
327
- /**
328
- * Whether the query getting the combobox options is inFlight
329
- */
330
- isFetching:PropTypes.bool.isRequired,
331
-
332
- /**
333
- * The minimum length of the search input to start fetching the options
334
- */
335
- minLength:PropTypes.number,
336
-
337
- /**
338
- * The function to transform the search input
339
- */
340
- transformSearch:PropTypes.func,
341
-
342
- /**
343
- * Whether the input filed shpuld be disabled
344
- */
345
- disabled:PropTypes.bool,
346
-
347
- /**
348
- * Whether the input is optional or not
349
- */
350
- optional:PropTypes.bool,
351
-
352
- /**
353
- * The placeholder text for the input
354
- */
355
- placeholder:PropTypes.string,
356
- }
357
-
358
- MultipleCombobox.defaultProps = {
359
- // someProp: false
360
- }
361
-
362
- export default MultipleCombobox
@@ -1,2 +0,0 @@
1
- /* @pareto-engineering/generator-front 1.0.12 */
2
- export { default as MultipleCombobox } from './MultipleCombobox'
@@ -1,3 +0,0 @@
1
- export { Menu } from './Menu'
2
- export { Combobox } from './Combobox'
3
- export { MultipleCombobox } from './MultipleCombobox'
@@ -1,2 +0,0 @@
1
- /* @pareto-engineering/generator-front 1.0.12 */
2
- export { default as QueryCombobox } from './QueryCombobox'
@@ -1,127 +0,0 @@
1
- /* @pareto-engineering/generator-front 1.0.12 */
2
- /* stylelint-disable max-nesting-depth -- needed here */
3
- /* stylelint-disable selector-max-compound-selectors -- needed here */
4
-
5
- @use "@pareto-engineering/bem";
6
- @use "@pareto-engineering/styles/src/mixins";
7
- @use "@pareto-engineering/styles/src/globals" as *;
8
-
9
- $default-input-padding: .55em .75em;
10
- $default-gap: var(--gap);
11
- $default-loading-circle-displacement: .5em;
12
- $default-input-border-radius: var(--theme-default-input-border-radius);
13
- $default-border: var(--theme-default-input-border);
14
- $hover-border: var(--theme-hover-input-border);
15
- $focus-border: var(--theme-focus-input-border);
16
- $default-background: var(--background-inputs);
17
- $on-default-background: var(--paragraph);
18
- $disabled-background: var(--background-inputs-30);
19
- $on-disabled-background: var(--on-background-inputs-30);
20
-
21
- .#{bem.$base}.combobox,
22
- .#{bem.$base}.multiple-combobox {
23
- display: flex;
24
- flex-direction: column;
25
- outline: none;
26
- position: relative;
27
-
28
- > .#{bem.$base}.form-label {
29
- margin-bottom: var(--gap);
30
- }
31
-
32
-
33
- .#{bem.$base}.popover {
34
- border: $default-border;
35
- border-radius: $default-input-border-radius;
36
- width: 100%;
37
-
38
- >.menu {
39
- list-style: none;
40
- margin: 0;
41
- outline: 0;
42
- padding: 0;
43
-
44
- >.item {
45
- border-radius: $default-input-border-radius;
46
- padding: $default-input-padding;
47
-
48
- > p {
49
- margin: 0;
50
- }
51
-
52
- &.#{bem.$modifier-active} {
53
- background-color: var(--y);
54
-
55
- > p {
56
- color: var(--on-y);
57
- }
58
- }
59
- }
60
- }
61
- }
62
-
63
- >.#{bem.$base}.loading-circle,
64
- >.#{bem.$base}.button {
65
- position: absolute;
66
- right: $default-loading-circle-displacement;
67
- }
68
-
69
- >.#{bem.$base}.loading-circle {
70
- top: calc($default-loading-circle-displacement * 1.5);
71
- }
72
-
73
- >.#{bem.$base}.button {
74
- top: $default-loading-circle-displacement;
75
- }
76
-
77
- > .input {
78
- background: $default-background;
79
- border: $default-border;
80
- border-radius: calc(var(--theme-default-border-radius) / 2);
81
- color: $on-default-background;
82
- outline: none;
83
- padding: $default-input-padding;
84
-
85
- &::placeholder {
86
- color: var(--metadata);
87
- }
88
-
89
- &:disabled {
90
- background-color: $disabled-background;
91
- color: $on-disabled-background;
92
- }
93
-
94
- &:not(:disabled) {
95
- &:hover,
96
- &:active {
97
- border: $hover-border;
98
- }
99
-
100
- &:focus {
101
- border: $focus-border;
102
- }
103
- }
104
- }
105
- }
106
-
107
-
108
- .#{bem.$base}.multiple-combobox {
109
- >.selected-items {
110
- display: flex;
111
- flex-wrap: wrap;
112
- gap: calc($default-gap / 2);
113
- margin-bottom: calc($default-gap / 2);
114
-
115
- >.item {
116
- >.#{bem.$base}.button {
117
- align-items: center;
118
- display: flex;
119
- gap: calc($default-gap / 2);
120
- }
121
-
122
- .close {
123
- font-size: calc(var(--s-3) * 1em);
124
- }
125
- }
126
- }
127
- }
@@ -1,220 +0,0 @@
1
- /* @pareto-engineering/generator-front 1.0.12 */
2
- import * as React from 'react'
3
-
4
- import { useState, useEffect } from 'react'
5
-
6
- import { useRelayEnvironment, fetchQuery } from 'react-relay'
7
-
8
- import { useField } from 'formik'
9
-
10
- import PropTypes from 'prop-types'
11
-
12
- // Local Definitions
13
-
14
- import { SelectInput } from 'ui/f'
15
-
16
- /**
17
- * This is the component description.
18
- */
19
- const QuerySelect = ({
20
- id,
21
- className:userClassName,
22
- style,
23
- name,
24
- label,
25
- labelColor,
26
- optional,
27
- query,
28
- variables,
29
- optionsKeyMap,
30
- description,
31
- disabled,
32
- color,
33
- loadingOption,
34
- defaultOption,
35
- validate,
36
- // ...otherProps
37
- }) => {
38
- const [, , helpers] = useField({ name, validate })
39
-
40
- const { setError } = helpers
41
-
42
- const environment = useRelayEnvironment()
43
-
44
- const [isFetching, setIsFetching] = useState(false)
45
-
46
- const [options, setOptions] = useState([])
47
-
48
- const { graphql, accessor } = query
49
-
50
- const getOptions = () => {
51
- if (isFetching) return
52
-
53
- fetchQuery(
54
- environment,
55
- graphql,
56
- variables,
57
- )
58
- .subscribe({
59
- start:() => {
60
- setIsFetching(true)
61
- setOptions([loadingOption])
62
- },
63
- complete:() => {
64
- setIsFetching(false)
65
- },
66
- error:(fetchError) => {
67
- setIsFetching(false)
68
- if (setError)setError(fetchError.message)
69
- },
70
- next:(data) => {
71
- setOptions([
72
- defaultOption,
73
- ...data[accessor].edges.map(({ node }) => ({
74
- value:node[optionsKeyMap.value],
75
- label:optionsKeyMap.getLabel(node),
76
- })),
77
- ])
78
- },
79
- })
80
- }
81
-
82
- useEffect(() => {
83
- getOptions()
84
- }, [variables])
85
-
86
- return (
87
- <SelectInput
88
- id={id}
89
- className={userClassName}
90
- style={style}
91
- name={name}
92
- label={label}
93
- optional={optional}
94
- color={color}
95
- labelColor={labelColor}
96
- description={description}
97
- disabled={isFetching || disabled}
98
- options={options}
99
- isLoading={isFetching}
100
- />
101
- )
102
- }
103
-
104
- QuerySelect.propTypes = {
105
- /**
106
- * The HTML id for this element
107
- */
108
- id:PropTypes.string,
109
-
110
- /**
111
- * The HTML class names for this element
112
- */
113
- className:PropTypes.string,
114
-
115
- /**
116
- * The React-written, css properties for this element.
117
- */
118
- style:PropTypes.objectOf(PropTypes.string),
119
-
120
- /**
121
- * The name of the custom select input
122
- */
123
- name:PropTypes.string,
124
-
125
- /**
126
- * The label of the custom select input
127
- */
128
- label:PropTypes.string,
129
-
130
- /**
131
- * The custom select input description
132
- */
133
- description:PropTypes.string,
134
-
135
- /**
136
- * Whether the input should be disabled
137
- */
138
- disabled:PropTypes.bool,
139
-
140
- /**
141
- * The base color of the custom select input
142
- */
143
- color:PropTypes.string,
144
-
145
- /**
146
- * The label color of the custom select input
147
- */
148
- labelColor:PropTypes.string,
149
-
150
- /**
151
- * The graphql query to fetch the options and the accessor to destructure the results from
152
- */
153
- query:PropTypes.shape({
154
- accessor:PropTypes.string,
155
- graphql :PropTypes.oneOfType([
156
- PropTypes.string,
157
- PropTypes.object,
158
- ]).isRequired,
159
- }),
160
-
161
- /**
162
- * The variables that might be required to be used in the query to fetch
163
- * select options.
164
- */
165
- variables:PropTypes.objectOf(PropTypes.string),
166
-
167
- /**
168
- * The select option keys to be used to map the data to the select options.
169
- * i.e `{ value: 'id', label: 'name' }`
170
- */
171
- optionsKeyMap:PropTypes.shape({
172
- value :PropTypes.string.isRequired,
173
- getLabel:PropTypes.func.isRequired,
174
- }).isRequired,
175
-
176
- /**
177
- * The default select option for the query select
178
- */
179
- defaultOption:PropTypes.shape({
180
- value :PropTypes.string.isRequired,
181
- label :PropTypes.string.isRequired,
182
- disabled:PropTypes.bool.isRequired,
183
- }),
184
-
185
- /**
186
- * The option to dipslayed when the select options are being fetched
187
- */
188
- loadingOption:PropTypes.shape({
189
- value :PropTypes.string.isRequired,
190
- label :PropTypes.string.isRequired,
191
- disabled:PropTypes.bool.isRequired,
192
- }),
193
-
194
- /**
195
- * The query select field validator function
196
- */
197
- validate:PropTypes.func,
198
-
199
- /*
200
- * Whether the input is optional or not
201
- */
202
- optional:PropTypes.bool,
203
- }
204
-
205
- QuerySelect.defaultProps = {
206
- disabled :false,
207
- color :'paragraph',
208
- defaultOption:{
209
- value :'',
210
- label :'Select an option',
211
- disabled:true,
212
- },
213
- loadingOption:{
214
- value :'',
215
- label :'Fetching Options',
216
- disabled:true,
217
- },
218
- }
219
-
220
- export default QuerySelect
@@ -1,2 +0,0 @@
1
- /* @pareto-engineering/generator-front 1.0.12 */
2
- export { default as QuerySelect } from './QuerySelect'