@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,5 +1,4 @@
1
1
  /* @pareto-engineering/generator-front 1.0.12 */
2
- /* stylelint-disable max-nesting-depth -- required here */
3
2
 
4
3
  @use "@pareto-engineering/bem";
5
4
  @use "@pareto-engineering/styles/src/mixins";
@@ -18,124 +17,127 @@ $disabled-background: var(--background-inputs-30);
18
17
  $default-color-menu-padding: .5em .25em;
19
18
 
20
19
  .#{bem.$base}.editor-input {
21
- &.#{bem.$base}.input-wrapper {
20
+ display: flex;
21
+ flex-direction: column;
22
+
23
+ > .#{bem.$base}.form-label {
24
+ margin-bottom: var(--gap);
25
+ }
26
+
27
+ > .#{bem.$base}.toolbar {
22
28
  display: flex;
23
- flex-direction: column;
24
-
25
- > .#{bem.$base}.toolbar {
26
- display: flex;
27
- gap: $default-gap;
28
- margin-bottom: .25em;
29
-
30
- > .group {
31
- > button {
32
- background: $default-background;
33
- border: $default-border;
34
- color: $default-icon-color;
35
- padding: $default-padding;
36
-
37
- &.active {
38
- background-color: $active-background;
39
- }
29
+ gap: $default-gap;
30
+ margin-bottom: .25em;
31
+
32
+ > .group {
33
+ > button {
34
+ background: $default-background;
35
+ border: $default-border;
36
+ color: $default-icon-color;
37
+ padding: $default-padding;
38
+
39
+ &.active {
40
+ background-color: $active-background;
40
41
  }
41
42
  }
42
-
43
- .flip {
44
- transform: scaleX(-1);
45
- }
46
43
  }
47
44
 
48
- &:not(.disabled) {
49
- &:hover,
50
- &:focus,
51
- &:active {
52
- > .textarea {
53
- border: $focus-border;
54
- }
55
- }
45
+ .flip {
46
+ transform: scaleX(-1);
56
47
  }
48
+ }
57
49
 
58
- &.disabled {
50
+ &:not(.disabled) {
51
+ &:hover,
52
+ &:focus,
53
+ &:active {
59
54
  > .textarea {
60
- background: $disabled-background;
61
- color: var(--metadata);
62
- cursor: not-allowed;
55
+ border: $focus-border;
63
56
  }
64
57
  }
58
+ }
65
59
 
66
- .color-menu-button {
67
- &:hover {
68
- > .#{bem.$base}.popover {
69
- display: block;
70
- }
71
- }
60
+ &.disabled {
61
+ > .textarea {
62
+ background: $disabled-background;
63
+ color: var(--metadata);
64
+ cursor: not-allowed;
65
+ }
66
+ }
72
67
 
68
+ .color-menu-button {
69
+ &:hover {
73
70
  > .#{bem.$base}.popover {
74
- padding: $default-color-menu-padding;
75
-
76
- .color-menu {
77
- display: flex;
78
- flex-wrap: wrap;
79
- gap: calc($default-gap / 2);
80
- justify-content: center;
81
- max-width: 10em;
82
- min-width: 5em;
83
- }
84
-
85
- .color-option:hover {
86
- opacity: .5;
87
- }
71
+ display: block;
88
72
  }
89
73
  }
90
74
 
91
- > .content-editable {
92
- background: $default-background;
93
- border: $default-border;
94
- border-radius: $default-input-border-radius;
95
- color: var(--y);
96
- height: var(--rows);
97
- outline: none;
98
- overflow: auto;
99
- padding: $default-padding;
100
- resize: var(--resize);
101
- width: 100%;
102
-
103
- li:has(ol, ul) {
104
- list-style-type: none;
75
+ > .#{bem.$base}.popover {
76
+ padding: $default-color-menu-padding;
77
+
78
+ .color-menu {
79
+ display: flex;
80
+ flex-wrap: wrap;
81
+ gap: calc($default-gap / 2);
82
+ justify-content: center;
83
+ max-width: 10em;
84
+ min-width: 5em;
105
85
  }
106
86
 
107
- p,
108
- span,
109
- strong,
110
- em,
111
- li {
112
- &.underlined {
113
- text-decoration: underline;
114
-
115
- &.strikethrough {
116
- text-decoration: underline line-through;
117
- }
118
- }
87
+ .color-option:hover {
88
+ opacity: .5;
89
+ }
90
+ }
91
+ }
119
92
 
120
- &.strikethrough {
121
- text-decoration: line-through;
122
- }
93
+ > .content-editable {
94
+ background: $default-background;
95
+ border: $default-border;
96
+ border-radius: $default-input-border-radius;
97
+ color: var(--y);
98
+ height: var(--rows);
99
+ outline: none;
100
+ overflow: auto;
101
+ padding: $default-padding;
102
+ resize: var(--resize);
103
+ width: 100%;
123
104
 
124
- &.italic {
125
- font-style: italic;
105
+ li:has(ol, ul) {
106
+ list-style-type: none;
107
+ }
108
+
109
+ p,
110
+ span,
111
+ strong,
112
+ em,
113
+ li {
114
+ &.underlined {
115
+ text-decoration: underline;
116
+
117
+ &.strikethrough {
118
+ text-decoration: underline line-through;
126
119
  }
127
120
  }
128
121
 
129
- :first-child {
130
- margin-top: 0;
122
+ &.strikethrough {
123
+ text-decoration: line-through;
131
124
  }
132
125
 
133
- &::placeholder {
134
- color: var(--metadata);
126
+ &.italic {
127
+ font-style: italic;
135
128
  }
136
129
  }
130
+
131
+ :first-child {
132
+ margin-top: 0;
133
+ }
134
+
135
+ &::placeholder {
136
+ color: var(--metadata);
137
+ }
137
138
  }
138
139
 
140
+
139
141
  > .tree-view-output {
140
142
  background: $default-background;
141
143
  border: $default-border;
@@ -14,9 +14,7 @@ require("./styles.scss");
14
14
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
15
  function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
16
16
  function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
17
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } /* @pareto-engineering/generator-front 1.0.12 */
18
- // Local Definitions
19
-
17
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } /* @pareto-engineering/generator-front 1.0.12 */ // Local Definitions
20
18
  const baseClassName = _exports.default.base;
21
19
  const componentClassName = 'link-input';
22
20
 
@@ -37,31 +35,23 @@ const LinkInput = _ref => {
37
35
  disabled,
38
36
  placeholder,
39
37
  optional,
40
- autoComplete,
41
- labelSpan,
42
- desktopLabelSpan,
43
- inputSpan,
44
- desktopInputSpan
38
+ autoComplete
45
39
  // ...otherProps
46
40
  } = _ref;
47
41
  const [field] = (0, _formik.useField)({
48
42
  name,
49
43
  validate
50
44
  });
51
- return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(_common.FormLabel, {
45
+ return /*#__PURE__*/React.createElement("div", {
46
+ id: id,
47
+ className: [baseClassName, componentClassName, userClassName, `y-${color}`].filter(e => e).join(' '),
48
+ style: style
49
+ }, /*#__PURE__*/React.createElement(_common.FormLabel, {
52
50
  name: name,
53
51
  color: labelColor,
54
- optional: optional,
55
- columnSpan: labelSpan,
56
- desktopColumnSpan: desktopLabelSpan
52
+ optional: optional
57
53
  // {...otherProps}
58
- }, label), /*#__PURE__*/React.createElement(_common.InputWrapper, {
59
- id: id,
60
- className: [baseClassName, componentClassName, userClassName, `y-${color}`].filter(e => e).join(' '),
61
- style: style,
62
- columnSpan: inputSpan,
63
- desktopColumnSpan: desktopInputSpan
64
- }, /*#__PURE__*/React.createElement("div", {
54
+ }, label), /*#__PURE__*/React.createElement("div", {
65
55
  className: "input-link-wrapper"
66
56
  }, /*#__PURE__*/React.createElement("input", _extends({
67
57
  id: name,
@@ -78,7 +68,7 @@ const LinkInput = _ref => {
78
68
  className: "s-1",
79
69
  description: description,
80
70
  name: name
81
- })));
71
+ }));
82
72
  };
83
73
  LinkInput.propTypes = {
84
74
  /**
@@ -1,5 +1,4 @@
1
1
  /* @pareto-engineering/generator-front 1.0.12 */
2
- /* stylelint-disable max-nesting-depth -- required here */
3
2
 
4
3
  @use "@pareto-engineering/bem";
5
4
  @use "@pareto-engineering/styles/src/mixins";
@@ -20,68 +19,70 @@ $default-background: var(--background-inputs);
20
19
  $disabled-background: var(--background-inputs-30);
21
20
 
22
21
  .#{bem.$base}.link-input {
23
- &.#{bem.$base}.input-wrapper {
24
- display: flex;
25
- flex-direction: column;
26
- position: relative;
22
+ display: flex;
23
+ flex-direction: column;
24
+ position: relative;
27
25
 
28
- &.has-symbol {
29
- &::before {
30
- color: var(--y);
31
- content: var(--symbol);
32
- left: $default-symbol-left;
33
- position: absolute;
34
- top: 50%;
35
- transform: translate(-50%, -50%);
36
- }
26
+ > .#{bem.$base}.form-label {
27
+ margin-bottom: var(--gap);
28
+ }
37
29
 
38
- input {
39
- padding: $default-padding-with-symbol;
40
- }
30
+ &.has-symbol {
31
+ &::before {
32
+ color: var(--y);
33
+ content: var(--symbol);
34
+ left: $default-symbol-left;
35
+ position: absolute;
36
+ top: 50%;
37
+ transform: translate(-50%, -50%);
41
38
  }
42
39
 
43
- > .input-link-wrapper {
44
- display: flex;
45
- gap: calc(var(--gap) / 2);
40
+ input {
41
+ padding: $default-padding-with-symbol;
42
+ }
43
+ }
46
44
 
47
- > a {
48
- align-self: center;
49
- border: 1px solid var(--interactive);
50
- border-radius: var(--theme-default-input-border-radius);
51
- padding: .5em;
45
+ > .input-link-wrapper {
46
+ display: flex;
47
+ gap: calc(var(--gap) / 2);
52
48
 
53
- &:hover {
54
- background-color: var(--interactive);
55
- color: var(--on-interactive);
56
- }
49
+ > a {
50
+ align-self: center;
51
+ border: 1px solid var(--interactive);
52
+ border-radius: var(--theme-default-input-border-radius);
53
+ padding: .5em;
54
+
55
+ &:hover {
56
+ background-color: var(--interactive);
57
+ color: var(--on-interactive);
57
58
  }
59
+ }
58
60
 
59
- > input {
60
- background-color: $default-background;
61
- border: $default-border;
62
- border-radius: $default-input-border-radius;
63
- color: var(--y);
64
- outline: none;
65
- padding: $default-padding;
66
- width: 100%;
61
+ > input {
62
+ background-color: $default-background;
63
+ border: $default-border;
64
+ border-radius: $default-input-border-radius;
65
+ color: var(--y);
66
+ outline: none;
67
+ padding: $default-padding;
68
+ width: 100%;
67
69
 
68
- &::placeholder {
69
- color: var(--metadata);
70
- }
70
+ &::placeholder {
71
+ color: var(--metadata);
72
+ }
71
73
 
72
- &:disabled {
73
- background-color: $disabled-background;
74
- }
74
+ &:disabled {
75
+ background-color: $disabled-background;
76
+ }
75
77
 
76
- &:not(:disabled) {
77
- &:hover,
78
- &:active {
79
- border: $hover-border;
80
- }
78
+ &:not(:disabled) {
79
+ &:hover,
80
+ &:active {
81
+ border: $hover-border;
82
+ }
81
83
 
82
- &:focus {
83
- border: $focus-border;
84
- }
84
+ &:focus {
85
+ border: $focus-border;
85
86
  }
86
87
  }
87
88
  }
@@ -26,10 +26,6 @@ const QueryChoices = _ref => {
26
26
  validate,
27
27
  loadingOption,
28
28
  extraVariables,
29
- labelSpan,
30
- desktopLabelSpan,
31
- inputSpan,
32
- desktopInputSpan,
33
29
  ...otherProps
34
30
  } = _ref;
35
31
  const [,, helpers] = (0, _formik.useField)({
@@ -85,11 +81,7 @@ const QueryChoices = _ref => {
85
81
  return /*#__PURE__*/React.createElement(_ChoicesInput.ChoicesInput, _extends({
86
82
  name: name,
87
83
  validate: validate,
88
- options: options,
89
- labelSpan: labelSpan,
90
- desktopLabelSpan: desktopLabelSpan,
91
- inputSpan: inputSpan,
92
- desktopInputSpan: desktopInputSpan
84
+ options: options
93
85
  }, otherProps));
94
86
  };
95
87
  QueryChoices.propTypes = {
@@ -133,23 +125,7 @@ QueryChoices.propTypes = {
133
125
  * The extra variables that might be required to be used in the query to fetch
134
126
  * select options.
135
127
  */
136
- extraVariables: _propTypes.default.objectOf(_propTypes.default.string),
137
- /**
138
- * The number of columns the label should span
139
- */
140
- labelSpan: _propTypes.default.number,
141
- /**
142
- * The number of columns the input should span
143
- */
144
- inputSpan: _propTypes.default.number,
145
- /**
146
- * The number of columns the label should span on desktop
147
- */
148
- desktopLabelSpan: _propTypes.default.number,
149
- /**
150
- * The number of columns the input should span on desktop
151
- */
152
- desktopInputSpan: _propTypes.default.number
128
+ extraVariables: _propTypes.default.objectOf(_propTypes.default.string)
153
129
  };
154
130
  QueryChoices.defaultProps = {
155
131
  loadingOption: {
@@ -42,10 +42,6 @@ const QueryCombobox = _ref => {
42
42
  minLength,
43
43
  transformSearch,
44
44
  validate,
45
- labelSpan,
46
- desktopLabelSpan,
47
- inputSpan,
48
- desktopInputSpan,
49
45
  placeholder,
50
46
  promptCreateNewOption
51
47
  // ...otherProps
@@ -123,10 +119,6 @@ const QueryCombobox = _ref => {
123
119
  className,
124
120
  minLength,
125
121
  transformSearch,
126
- labelSpan,
127
- desktopLabelSpan,
128
- inputSpan,
129
- desktopInputSpan,
130
122
  placeholder,
131
123
  promptCreateNewOption
132
124
  };
@@ -217,22 +209,6 @@ QueryCombobox.propTypes = {
217
209
  * Whether the input is optional or not
218
210
  */
219
211
  optional: _propTypes.default.bool,
220
- /**
221
- * The number of columns the label should span
222
- */
223
- labelSpan: _propTypes.default.number,
224
- /**
225
- * The number of columns the input should span
226
- */
227
- inputSpan: _propTypes.default.number,
228
- /**
229
- * The number of columns the label should span on desktop
230
- */
231
- desktopLabelSpan: _propTypes.default.number,
232
- /**
233
- * The number of columns the input should span on desktop
234
- */
235
- desktopInputSpan: _propTypes.default.number,
236
212
  /**
237
213
  * Whether to prompt the user to create a new option if the search input
238
214
  * does not match any of the options
@@ -44,10 +44,6 @@ const Combobox = _ref => {
44
44
  transformSearch,
45
45
  disabled,
46
46
  optional,
47
- labelSpan,
48
- desktopLabelSpan,
49
- inputSpan,
50
- desktopInputSpan,
51
47
  placeholder,
52
48
  promptCreateNewOption
53
49
  // ...otherProps
@@ -105,21 +101,18 @@ const Combobox = _ref => {
105
101
  }, [value]);
106
102
  const parentRef = (0, _react.useRef)(null);
107
103
  const resetInputValue = () => setInputValue('');
108
- return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(_.FormLabel, _extends({}, getLabelProps(), {
109
- name: name,
110
- optional: optional,
111
- color: labelColor,
112
- columnSpan: labelSpan,
113
- desktopColumnSpan: desktopLabelSpan
114
- }), label), /*#__PURE__*/React.createElement(_common.InputWrapper, _extends({
104
+ return /*#__PURE__*/React.createElement("div", _extends({
115
105
  id: id,
116
106
  className: [baseClassName, componentClassName, userClassName, `y-${color}`].filter(e => e).join(' '),
117
107
  style: style,
118
108
  ref: parentRef
119
- }, getComboboxProps(), {
120
- columnSpan: inputSpan,
121
- desktopColumnSpan: desktopInputSpan
122
- }), /*#__PURE__*/React.createElement("input", _extends({}, getInputProps(), {
109
+ }, getComboboxProps()), /*#__PURE__*/React.createElement(_.FormLabel, _extends({}, getLabelProps(), {
110
+ name: name,
111
+ optional: optional,
112
+ color: labelColor
113
+ }), label), /*#__PURE__*/React.createElement("div", {
114
+ className: "input-container"
115
+ }, /*#__PURE__*/React.createElement("input", _extends({}, getInputProps(), {
123
116
  className: "input",
124
117
  disabled: disabled,
125
118
  placeholder: placeholder
@@ -132,7 +125,7 @@ const Combobox = _ref => {
132
125
  onClick: resetInputValue
133
126
  }, /*#__PURE__*/React.createElement("span", {
134
127
  className: "icon"
135
- }, "Y")), /*#__PURE__*/React.createElement(_.FormDescription, {
128
+ }, "Y"))), /*#__PURE__*/React.createElement(_.FormDescription, {
136
129
  className: "s-1",
137
130
  description: description,
138
131
  name: name
@@ -145,7 +138,7 @@ const Combobox = _ref => {
145
138
  getItemProps: getItemProps,
146
139
  highlightedIndex: highlightedIndex,
147
140
  items: items
148
- }, getMenuProps())))));
141
+ }, getMenuProps()))));
149
142
  };
150
143
  Combobox.propTypes = {
151
144
  /**
@@ -51,11 +51,7 @@ const MultipleCombobox = _ref => {
51
51
  minLength,
52
52
  transformSearch,
53
53
  disabled,
54
- labelSpan,
55
- desktopLabelSpan,
56
- inputSpan,
57
54
  placeholder,
58
- desktopInputSpan,
59
55
  setOptions,
60
56
  promptCreateNewOption
61
57
  // ...otherProps
@@ -163,22 +159,18 @@ const MultipleCombobox = _ref => {
163
159
  }, [value]);
164
160
  const parentRef = (0, _react.useRef)(null);
165
161
  const resetInputValue = () => setInputValue('');
166
- return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(_.FormLabel, _extends({
162
+ return /*#__PURE__*/React.createElement("div", _extends({
163
+ id: id,
164
+ className: [baseClassName, componentClassName, userClassName].filter(e => e).join(' '),
165
+ style: style,
166
+ ref: parentRef
167
+ }, getComboboxProps()), /*#__PURE__*/React.createElement(_.FormLabel, _extends({
167
168
  className: [baseClassName, componentClassName].filter(e => e).join(' ')
168
169
  }, getLabelProps(), {
169
170
  name: name,
170
171
  optional: optional,
171
- color: labelColor,
172
- columnSpan: labelSpan,
173
- desktopColumnSpan: desktopLabelSpan
174
- }), label), /*#__PURE__*/React.createElement(_common.InputWrapper, _extends({
175
- id: id,
176
- className: [baseClassName, componentClassName, userClassName].filter(e => e).join(' '),
177
- style: style,
178
- ref: parentRef,
179
- columnSpan: inputSpan,
180
- desktopColumnSpan: desktopInputSpan
181
- }, getComboboxProps()), selectedItems?.length > 0 && /*#__PURE__*/React.createElement("div", {
172
+ color: labelColor
173
+ }), label), selectedItems?.length > 0 && /*#__PURE__*/React.createElement("div", {
182
174
  className: "selected-items"
183
175
  }, selectedItems.map((selectedItem, index) => /*#__PURE__*/React.createElement("div", _extends({
184
176
  key: selectedItem.label
@@ -196,7 +188,9 @@ const MultipleCombobox = _ref => {
196
188
  color: color
197
189
  }, /*#__PURE__*/React.createElement("span", null, selectedItem.label), /*#__PURE__*/React.createElement("span", {
198
190
  className: "icon close"
199
- }, "Y"))))), /*#__PURE__*/React.createElement("input", _extends({}, getInputProps(getDropdownProps({
191
+ }, "Y"))))), /*#__PURE__*/React.createElement("div", {
192
+ className: "input-container"
193
+ }, /*#__PURE__*/React.createElement("input", _extends({}, getInputProps(getDropdownProps({
200
194
  preventKeyAction: isOpen
201
195
  })), {
202
196
  className: "input",
@@ -211,7 +205,7 @@ const MultipleCombobox = _ref => {
211
205
  onClick: resetInputValue
212
206
  }, /*#__PURE__*/React.createElement("span", {
213
207
  className: "icon"
214
- }, "Y")), /*#__PURE__*/React.createElement(_.FormDescription, {
208
+ }, "Y"))), /*#__PURE__*/React.createElement(_.FormDescription, {
215
209
  className: "s-1",
216
210
  description: description,
217
211
  name: name
@@ -224,7 +218,7 @@ const MultipleCombobox = _ref => {
224
218
  getItemProps: getItemProps,
225
219
  highlightedIndex: highlightedIndex,
226
220
  items: getFilteredItems()
227
- }, getMenuProps())))));
221
+ }, getMenuProps()))));
228
222
  };
229
223
  MultipleCombobox.propTypes = {
230
224
  /**
@@ -20,8 +20,14 @@ $on-disabled-background: var(--on-background-inputs-30);
20
20
 
21
21
  .#{bem.$base}.combobox,
22
22
  .#{bem.$base}.multiple-combobox {
23
+ display: flex;
24
+ flex-direction: column;
23
25
  outline: none;
24
- position: relative;
26
+
27
+ > .#{bem.$base}.form-label {
28
+ margin-bottom: var(--gap);
29
+ }
30
+
25
31
 
26
32
  .#{bem.$base}.popover {
27
33
  border: $default-border;
@@ -53,9 +59,8 @@ $on-disabled-background: var(--on-background-inputs-30);
53
59
  }
54
60
  }
55
61
 
56
- &.#{bem.$base}.input-wrapper {
57
- display: flex;
58
- flex-direction: column;
62
+
63
+ > .input-container {
59
64
  position: relative;
60
65
 
61
66
  >.#{bem.$base}.loading-circle,
@@ -72,6 +77,7 @@ $on-disabled-background: var(--on-background-inputs-30);
72
77
  top: $default-loading-circle-displacement;
73
78
  }
74
79
 
80
+
75
81
  > .input {
76
82
  background: $default-background;
77
83
  border: $default-border;
@@ -79,6 +85,7 @@ $on-disabled-background: var(--on-background-inputs-30);
79
85
  color: $on-default-background;
80
86
  outline: none;
81
87
  padding: $default-input-padding;
88
+ width: 100%;
82
89
 
83
90
  &::placeholder {
84
91
  color: var(--metadata);