@gravity-ui/querieskit 1.1.0 → 1.3.0

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 (1013) hide show
  1. package/.agents/skills/code-review-checklist/SKILL.md +62 -103
  2. package/AGENTS.md +12 -0
  3. package/CHANGELOG.md +29 -0
  4. package/CODEOWNERS +2 -1
  5. package/build/cjs/components/AttachmentList/AttachmentList.css +22 -0
  6. package/build/cjs/components/AttachmentList/AttachmentList.css.map +1 -0
  7. package/build/cjs/components/AttachmentList/AttachmentList.d.ts +17 -0
  8. package/build/cjs/components/AttachmentList/AttachmentList.js +75 -0
  9. package/build/cjs/components/AttachmentList/AttachmentList.js.map +1 -0
  10. package/build/cjs/components/AttachmentList/AttachmentList.stories.d.ts +93 -0
  11. package/build/cjs/components/AttachmentList/AttachmentList.stories.js +323 -0
  12. package/build/cjs/components/AttachmentList/AttachmentList.stories.js.map +1 -0
  13. package/build/cjs/components/AttachmentList/helpers/getIconByAttachmentName.d.ts +2 -0
  14. package/build/cjs/components/AttachmentList/helpers/getIconByAttachmentName.js +36 -0
  15. package/build/cjs/components/AttachmentList/helpers/getIconByAttachmentName.js.map +1 -0
  16. package/build/cjs/components/AttachmentList/helpers/objectLinkValidator.d.ts +11 -0
  17. package/build/cjs/components/AttachmentList/helpers/objectLinkValidator.js +30 -0
  18. package/build/cjs/components/AttachmentList/helpers/objectLinkValidator.js.map +1 -0
  19. package/build/cjs/components/AttachmentList/helpers/stringRequiredValidator.d.ts +2 -0
  20. package/build/cjs/components/AttachmentList/helpers/stringRequiredValidator.js +26 -0
  21. package/build/cjs/components/AttachmentList/helpers/stringRequiredValidator.js.map +1 -0
  22. package/build/cjs/components/AttachmentList/hooks/useKeyDownFormControl.d.ts +4 -0
  23. package/build/cjs/components/AttachmentList/hooks/useKeyDownFormControl.js +27 -0
  24. package/build/cjs/components/AttachmentList/hooks/useKeyDownFormControl.js.map +1 -0
  25. package/build/cjs/components/AttachmentList/hooks/useLabelRef.d.ts +4 -0
  26. package/build/cjs/components/AttachmentList/hooks/useLabelRef.js +35 -0
  27. package/build/cjs/components/AttachmentList/hooks/useLabelRef.js.map +1 -0
  28. package/build/cjs/components/AttachmentList/i18n/dicts.d.ts +23 -0
  29. package/build/cjs/components/AttachmentList/i18n/dicts.js +14 -0
  30. package/build/cjs/components/AttachmentList/i18n/dicts.js.map +1 -0
  31. package/build/cjs/components/AttachmentList/i18n/en.json +10 -0
  32. package/build/cjs/components/AttachmentList/i18n/index.d.ts +6 -0
  33. package/build/cjs/components/AttachmentList/i18n/index.js +11 -0
  34. package/build/cjs/components/AttachmentList/i18n/index.js.map +1 -0
  35. package/build/cjs/components/AttachmentList/i18n/ru.json +10 -0
  36. package/build/cjs/components/AttachmentList/index.d.ts +4 -0
  37. package/build/cjs/components/AttachmentList/index.js +40 -0
  38. package/build/cjs/components/AttachmentList/index.js.map +1 -0
  39. package/build/cjs/components/AttachmentList/internal/AttachmentItem/AttachmentItem.css +18 -0
  40. package/build/cjs/components/AttachmentList/internal/AttachmentItem/AttachmentItem.css.map +1 -0
  41. package/build/cjs/components/AttachmentList/internal/AttachmentItem/AttachmentItem.d.ts +16 -0
  42. package/build/cjs/components/AttachmentList/internal/AttachmentItem/AttachmentItem.js +106 -0
  43. package/build/cjs/components/AttachmentList/internal/AttachmentItem/AttachmentItem.js.map +1 -0
  44. package/build/cjs/components/AttachmentList/internal/AttachmentItem/index.d.ts +2 -0
  45. package/build/cjs/components/AttachmentList/internal/AttachmentItem/index.js +13 -0
  46. package/build/cjs/components/AttachmentList/internal/AttachmentItem/index.js.map +1 -0
  47. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/EditAttachmentItem.d.ts +9 -0
  48. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/EditAttachmentItem.js +22 -0
  49. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/EditAttachmentItem.js.map +1 -0
  50. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.css +17 -0
  51. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.css.map +1 -0
  52. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.d.ts +24 -0
  53. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.js +175 -0
  54. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.js.map +1 -0
  55. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/FileEdit.d.ts +12 -0
  56. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/FileEdit.js +91 -0
  57. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/FileEdit.js.map +1 -0
  58. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/index.d.ts +4 -0
  59. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/index.js +13 -0
  60. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/index.js.map +1 -0
  61. package/build/cjs/components/AttachmentListPlaceholder/AttachmentListPlaceholder.css +4 -0
  62. package/build/cjs/components/AttachmentListPlaceholder/AttachmentListPlaceholder.css.map +1 -0
  63. package/build/cjs/components/AttachmentListPlaceholder/AttachmentListPlaceholder.d.ts +13 -0
  64. package/build/cjs/components/AttachmentListPlaceholder/AttachmentListPlaceholder.js +75 -0
  65. package/build/cjs/components/AttachmentListPlaceholder/AttachmentListPlaceholder.js.map +1 -0
  66. package/build/cjs/components/AttachmentListPlaceholder/AttachmentListPlaceholder.stories.d.ts +29 -0
  67. package/build/cjs/components/AttachmentListPlaceholder/AttachmentListPlaceholder.stories.js +36 -0
  68. package/build/cjs/components/AttachmentListPlaceholder/AttachmentListPlaceholder.stories.js.map +1 -0
  69. package/build/cjs/components/AttachmentListPlaceholder/i18n/dicts.d.ts +17 -0
  70. package/build/cjs/components/AttachmentListPlaceholder/i18n/dicts.js +14 -0
  71. package/build/cjs/components/AttachmentListPlaceholder/i18n/dicts.js.map +1 -0
  72. package/build/cjs/components/AttachmentListPlaceholder/i18n/en.json +7 -0
  73. package/build/cjs/components/AttachmentListPlaceholder/i18n/index.d.ts +6 -0
  74. package/build/cjs/components/AttachmentListPlaceholder/i18n/index.js +11 -0
  75. package/build/cjs/components/AttachmentListPlaceholder/i18n/index.js.map +1 -0
  76. package/build/cjs/components/AttachmentListPlaceholder/i18n/ru.json +7 -0
  77. package/build/cjs/components/AttachmentListPlaceholder/index.d.ts +2 -0
  78. package/build/cjs/components/AttachmentListPlaceholder/index.js +13 -0
  79. package/build/cjs/components/AttachmentListPlaceholder/index.js.map +1 -0
  80. package/build/cjs/components/DataTable/DataTable.css +0 -7
  81. package/build/cjs/components/DataTable/DataTable.css.map +1 -1
  82. package/build/cjs/components/DataTable/DataTable.js +12 -5
  83. package/build/cjs/components/DataTable/DataTable.js.map +1 -1
  84. package/build/cjs/components/EditableRowTitle/EditableRowTitle.d.ts +7 -0
  85. package/build/cjs/{modules/HistoryRow/HistoryRowTitle.js → components/EditableRowTitle/EditableRowTitle.js} +4 -6
  86. package/build/cjs/components/EditableRowTitle/EditableRowTitle.js.map +1 -0
  87. package/build/cjs/components/EditableRowTitle/index.d.ts +2 -0
  88. package/build/cjs/components/EditableRowTitle/index.js +13 -0
  89. package/build/cjs/components/EditableRowTitle/index.js.map +1 -0
  90. package/build/cjs/components/ErrorTree/ErrorTree.d.ts +3 -0
  91. package/build/cjs/components/ErrorTree/ErrorTree.js +35 -0
  92. package/build/cjs/components/ErrorTree/ErrorTree.js.map +1 -0
  93. package/build/cjs/components/ErrorTree/ErrorTree.stories.d.ts +8 -0
  94. package/build/cjs/components/ErrorTree/ErrorTree.stories.js +101 -0
  95. package/build/cjs/components/ErrorTree/ErrorTree.stories.js.map +1 -0
  96. package/build/cjs/components/ErrorTree/helpers/formatAttributes.d.ts +2 -0
  97. package/build/cjs/components/ErrorTree/helpers/formatAttributes.js +16 -0
  98. package/build/cjs/components/ErrorTree/helpers/formatAttributes.js.map +1 -0
  99. package/build/cjs/components/ErrorTree/helpers/getIntermediateChain.d.ts +6 -0
  100. package/build/cjs/components/ErrorTree/helpers/getIntermediateChain.js +22 -0
  101. package/build/cjs/components/ErrorTree/helpers/getIntermediateChain.js.map +1 -0
  102. package/build/cjs/components/ErrorTree/i18n/dicts.d.ts +27 -0
  103. package/build/cjs/components/ErrorTree/i18n/dicts.js +14 -0
  104. package/build/cjs/components/ErrorTree/i18n/dicts.js.map +1 -0
  105. package/build/cjs/components/ErrorTree/i18n/en.json +11 -0
  106. package/build/cjs/components/ErrorTree/i18n/index.d.ts +6 -0
  107. package/build/cjs/components/ErrorTree/i18n/index.js +11 -0
  108. package/build/cjs/components/ErrorTree/i18n/index.js.map +1 -0
  109. package/build/cjs/components/ErrorTree/i18n/ru.json +13 -0
  110. package/build/cjs/components/ErrorTree/index.d.ts +1 -0
  111. package/build/cjs/components/ErrorTree/index.js +13 -0
  112. package/build/cjs/components/ErrorTree/index.js.map +1 -0
  113. package/build/cjs/components/ErrorTree/internal/ErrorTreeChildren.css +4 -0
  114. package/build/cjs/components/ErrorTree/internal/ErrorTreeChildren.css.map +1 -0
  115. package/build/cjs/components/ErrorTree/internal/ErrorTreeChildren.d.ts +10 -0
  116. package/build/cjs/components/ErrorTree/internal/ErrorTreeChildren.js +32 -0
  117. package/build/cjs/components/ErrorTree/internal/ErrorTreeChildren.js.map +1 -0
  118. package/build/cjs/components/ErrorTree/internal/ErrorTreeNode.css +80 -0
  119. package/build/cjs/components/ErrorTree/internal/ErrorTreeNode.css.map +1 -0
  120. package/build/cjs/components/ErrorTree/internal/ErrorTreeNode.d.ts +13 -0
  121. package/build/cjs/components/ErrorTree/internal/ErrorTreeNode.js +274 -0
  122. package/build/cjs/components/ErrorTree/internal/ErrorTreeNode.js.map +1 -0
  123. package/build/cjs/components/ErrorTree/internal/IntermediateMessages.css +10 -0
  124. package/build/cjs/components/ErrorTree/internal/IntermediateMessages.css.map +1 -0
  125. package/build/cjs/components/ErrorTree/internal/IntermediateMessages.d.ts +9 -0
  126. package/build/cjs/components/ErrorTree/internal/IntermediateMessages.js +118 -0
  127. package/build/cjs/components/ErrorTree/internal/IntermediateMessages.js.map +1 -0
  128. package/build/cjs/components/HistoryFilter/HistoryFilter.d.ts +2 -2
  129. package/build/cjs/components/HistoryFilter/HistoryFilter.js.map +1 -1
  130. package/build/cjs/components/Icons/LogoCPlusPlus.d.ts +2 -0
  131. package/build/cjs/components/Icons/LogoCPlusPlus.js +35 -0
  132. package/build/cjs/components/Icons/LogoCPlusPlus.js.map +1 -0
  133. package/build/cjs/components/Icons/index.d.ts +1 -0
  134. package/build/cjs/components/Icons/index.js +13 -0
  135. package/build/cjs/components/Icons/index.js.map +1 -0
  136. package/build/cjs/components/LazyList/LazyList.css +0 -2
  137. package/build/cjs/components/LazyList/LazyList.css.map +1 -1
  138. package/build/cjs/components/QueryResultsTable/QueryResultsTable.css +53 -0
  139. package/build/cjs/components/QueryResultsTable/QueryResultsTable.css.map +1 -0
  140. package/build/cjs/components/QueryResultsTable/QueryResultsTable.d.ts +24 -0
  141. package/build/cjs/components/QueryResultsTable/QueryResultsTable.js +104 -0
  142. package/build/cjs/components/QueryResultsTable/QueryResultsTable.js.map +1 -0
  143. package/build/cjs/components/QueryResultsTable/helpers/formatQueryResultType.d.ts +3 -0
  144. package/build/cjs/components/QueryResultsTable/helpers/formatQueryResultType.js +90 -0
  145. package/build/cjs/components/QueryResultsTable/helpers/formatQueryResultType.js.map +1 -0
  146. package/build/cjs/components/QueryResultsTable/helpers/formatQueryResultValue.d.ts +11 -0
  147. package/build/cjs/components/QueryResultsTable/helpers/formatQueryResultValue.js +40 -0
  148. package/build/cjs/components/QueryResultsTable/helpers/formatQueryResultValue.js.map +1 -0
  149. package/build/cjs/components/QueryResultsTable/i18n/dicts.d.ts +13 -0
  150. package/build/cjs/components/QueryResultsTable/i18n/dicts.js +14 -0
  151. package/build/cjs/components/QueryResultsTable/i18n/dicts.js.map +1 -0
  152. package/build/cjs/components/QueryResultsTable/i18n/en.json +5 -0
  153. package/build/cjs/components/QueryResultsTable/i18n/index.d.ts +6 -0
  154. package/build/cjs/components/QueryResultsTable/i18n/index.js +11 -0
  155. package/build/cjs/components/QueryResultsTable/i18n/index.js.map +1 -0
  156. package/build/cjs/components/QueryResultsTable/i18n/ru.json +5 -0
  157. package/build/cjs/components/QueryResultsTable/index.d.ts +3 -0
  158. package/build/cjs/components/QueryResultsTable/index.js +20 -0
  159. package/build/cjs/components/QueryResultsTable/index.js.map +1 -0
  160. package/build/cjs/components/QueryResultsTable/internal/QueryResultCell.d.ts +11 -0
  161. package/build/cjs/components/QueryResultsTable/internal/QueryResultCell.js +79 -0
  162. package/build/cjs/components/QueryResultsTable/internal/QueryResultCell.js.map +1 -0
  163. package/build/cjs/components/RowActionsMenu/RowActionsMenu.d.ts +7 -0
  164. package/build/cjs/{modules/HistoryRow/HistoryRowMenu.js → components/RowActionsMenu/RowActionsMenu.js} +9 -6
  165. package/build/cjs/components/RowActionsMenu/RowActionsMenu.js.map +1 -0
  166. package/build/cjs/components/RowActionsMenu/index.d.ts +2 -0
  167. package/build/cjs/components/RowActionsMenu/index.js +13 -0
  168. package/build/cjs/components/RowActionsMenu/index.js.map +1 -0
  169. package/build/cjs/components/index.d.ts +9 -0
  170. package/build/cjs/components/index.js +64 -1
  171. package/build/cjs/components/index.js.map +1 -1
  172. package/build/cjs/helpers/createUuid.d.ts +1 -0
  173. package/build/cjs/helpers/createUuid.js +12 -0
  174. package/build/cjs/helpers/createUuid.js.map +1 -0
  175. package/build/cjs/helpers/getListKey.d.ts +2 -2
  176. package/build/cjs/helpers/getListKey.js.map +1 -1
  177. package/build/cjs/helpers/isFieldVisible.d.ts +5 -4
  178. package/build/cjs/helpers/isFieldVisible.js +2 -2
  179. package/build/cjs/helpers/isFieldVisible.js.map +1 -1
  180. package/build/cjs/helpers/isObjectEqual.d.ts +1 -0
  181. package/build/cjs/helpers/isObjectEqual.js +30 -0
  182. package/build/cjs/helpers/isObjectEqual.js.map +1 -0
  183. package/build/cjs/helpers/time.d.ts +1 -0
  184. package/build/cjs/helpers/time.js +7 -3
  185. package/build/cjs/helpers/time.js.map +1 -1
  186. package/build/cjs/helpers/useDebouncedValue.d.ts +2 -0
  187. package/build/cjs/helpers/useDebouncedValue.js +27 -0
  188. package/build/cjs/helpers/useDebouncedValue.js.map +1 -0
  189. package/build/cjs/index.d.ts +5 -0
  190. package/build/cjs/index.js +44 -0
  191. package/build/cjs/index.js.map +1 -1
  192. package/build/cjs/modules/Attachments/Attachments.css +8 -0
  193. package/build/cjs/modules/Attachments/Attachments.css.map +1 -0
  194. package/build/cjs/modules/Attachments/Attachments.d.ts +22 -0
  195. package/build/cjs/modules/Attachments/Attachments.js +381 -0
  196. package/build/cjs/modules/Attachments/Attachments.js.map +1 -0
  197. package/build/cjs/modules/Attachments/Attachments.stories.d.ts +41 -0
  198. package/build/cjs/modules/Attachments/Attachments.stories.js +123 -0
  199. package/build/cjs/modules/Attachments/Attachments.stories.js.map +1 -0
  200. package/build/cjs/modules/Attachments/i18n/dicts.d.ts +13 -0
  201. package/build/cjs/modules/Attachments/i18n/dicts.js +14 -0
  202. package/build/cjs/modules/Attachments/i18n/dicts.js.map +1 -0
  203. package/build/cjs/modules/Attachments/i18n/en.json +5 -0
  204. package/build/cjs/modules/Attachments/i18n/index.d.ts +6 -0
  205. package/build/cjs/modules/Attachments/i18n/index.js +11 -0
  206. package/build/cjs/modules/Attachments/i18n/index.js.map +1 -0
  207. package/build/cjs/modules/Attachments/i18n/ru.json +5 -0
  208. package/build/cjs/modules/Attachments/index.d.ts +2 -0
  209. package/build/cjs/modules/Attachments/index.js +13 -0
  210. package/build/cjs/modules/Attachments/index.js.map +1 -0
  211. package/build/cjs/modules/HistoryComparisonActions/HistoryComparisonActions.css +5 -0
  212. package/build/cjs/modules/HistoryComparisonActions/HistoryComparisonActions.css.map +1 -0
  213. package/build/cjs/modules/HistoryComparisonActions/HistoryComparisonActions.d.ts +8 -0
  214. package/build/cjs/{widgets/QueriesHistory/ComparisonActions.js → modules/HistoryComparisonActions/HistoryComparisonActions.js} +11 -11
  215. package/build/cjs/modules/HistoryComparisonActions/HistoryComparisonActions.js.map +1 -0
  216. package/build/cjs/modules/HistoryComparisonActions/index.d.ts +2 -0
  217. package/build/cjs/modules/HistoryComparisonActions/index.js +13 -0
  218. package/build/cjs/modules/HistoryComparisonActions/index.js.map +1 -0
  219. package/build/cjs/modules/HistoryHeader/HistoryHeader.d.ts +2 -2
  220. package/build/cjs/modules/HistoryHeader/HistoryHeader.js.map +1 -1
  221. package/build/cjs/modules/HistoryRow/HistoryRow.d.ts +3 -2
  222. package/build/cjs/modules/HistoryRow/HistoryRow.js +2 -4
  223. package/build/cjs/modules/HistoryRow/HistoryRow.js.map +1 -1
  224. package/build/cjs/modules/HistoryRow/HistoryRow.stories.js.map +1 -1
  225. package/build/cjs/modules/HistorySearchRow/HistorySearchRow.d.ts +3 -2
  226. package/build/cjs/modules/HistorySearchRow/HistorySearchRow.js.map +1 -1
  227. package/build/cjs/modules/NavigationItemsList/internal/NavigationItemsListHeader.js +1 -7
  228. package/build/cjs/modules/NavigationItemsList/internal/NavigationItemsListHeader.js.map +1 -1
  229. package/build/cjs/modules/NavigationPreview/NavigationPreview.css +7 -1
  230. package/build/cjs/modules/NavigationPreview/NavigationPreview.css.map +1 -1
  231. package/build/cjs/modules/NavigationPreview/NavigationPreview.d.ts +2 -2
  232. package/build/cjs/modules/NavigationPreview/NavigationPreview.js +37 -7
  233. package/build/cjs/modules/NavigationPreview/NavigationPreview.js.map +1 -1
  234. package/build/cjs/modules/NavigationPreview/story/NavigationPreview.stories.d.ts +1 -0
  235. package/build/cjs/modules/NavigationPreview/story/NavigationPreview.stories.js +25 -1
  236. package/build/cjs/modules/NavigationPreview/story/NavigationPreview.stories.js.map +1 -1
  237. package/build/cjs/modules/NavigationPreview/story/mockData.d.ts +2 -2
  238. package/build/cjs/modules/NavigationPreview/story/mockData.js +16 -4
  239. package/build/cjs/modules/NavigationPreview/story/mockData.js.map +1 -1
  240. package/build/cjs/modules/QueriesList/QueriesList.css +10 -0
  241. package/build/cjs/modules/QueriesList/QueriesList.css.map +1 -0
  242. package/build/cjs/modules/QueriesList/QueriesList.d.ts +19 -0
  243. package/build/cjs/modules/QueriesList/QueriesList.js +75 -0
  244. package/build/cjs/modules/QueriesList/QueriesList.js.map +1 -0
  245. package/build/cjs/modules/QueriesList/index.d.ts +2 -0
  246. package/build/cjs/modules/QueriesList/index.js +13 -0
  247. package/build/cjs/modules/QueriesList/index.js.map +1 -0
  248. package/build/cjs/modules/QueryStatistics/QueryStatistics.css +4 -0
  249. package/build/cjs/modules/QueryStatistics/QueryStatistics.css.map +1 -0
  250. package/build/cjs/modules/QueryStatistics/QueryStatistics.d.ts +4 -0
  251. package/build/cjs/modules/QueryStatistics/QueryStatistics.js +151 -0
  252. package/build/cjs/modules/QueryStatistics/QueryStatistics.js.map +1 -0
  253. package/build/cjs/modules/QueryStatistics/helpers.d.ts +15 -0
  254. package/build/cjs/modules/QueryStatistics/helpers.js +118 -0
  255. package/build/cjs/modules/QueryStatistics/helpers.js.map +1 -0
  256. package/build/cjs/modules/QueryStatistics/i18n/dicts.d.ts +35 -0
  257. package/build/cjs/modules/QueryStatistics/i18n/dicts.js +14 -0
  258. package/build/cjs/modules/QueryStatistics/i18n/dicts.js.map +1 -0
  259. package/build/cjs/modules/QueryStatistics/i18n/en.json +16 -0
  260. package/build/cjs/modules/QueryStatistics/i18n/index.d.ts +6 -0
  261. package/build/cjs/modules/QueryStatistics/i18n/index.js +11 -0
  262. package/build/cjs/modules/QueryStatistics/i18n/index.js.map +1 -0
  263. package/build/cjs/modules/QueryStatistics/i18n/ru.json +16 -0
  264. package/build/cjs/modules/QueryStatistics/index.d.ts +2 -0
  265. package/build/cjs/modules/QueryStatistics/index.js +13 -0
  266. package/build/cjs/modules/QueryStatistics/index.js.map +1 -0
  267. package/build/cjs/modules/QueryStatistics/internal/MetricCell.css +36 -0
  268. package/build/cjs/modules/QueryStatistics/internal/MetricCell.css.map +1 -0
  269. package/build/cjs/modules/QueryStatistics/internal/MetricCell.d.ts +9 -0
  270. package/build/cjs/modules/QueryStatistics/internal/MetricCell.js +121 -0
  271. package/build/cjs/modules/QueryStatistics/internal/MetricCell.js.map +1 -0
  272. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsTable.css +21 -0
  273. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsTable.css.map +1 -0
  274. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsTable.d.ts +20 -0
  275. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsTable.js +140 -0
  276. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsTable.js.map +1 -0
  277. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsToolbar.css +5 -0
  278. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsToolbar.css.map +1 -0
  279. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsToolbar.d.ts +10 -0
  280. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsToolbar.js +55 -0
  281. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsToolbar.js.map +1 -0
  282. package/build/cjs/modules/QueryStatistics/story/QueryStatistics.stories.d.ts +8 -0
  283. package/build/cjs/modules/QueryStatistics/story/QueryStatistics.stories.js +112 -0
  284. package/build/cjs/modules/QueryStatistics/story/QueryStatistics.stories.js.map +1 -0
  285. package/build/cjs/modules/RowsList/RowsList.d.ts +11 -11
  286. package/build/cjs/modules/RowsList/RowsList.js +5 -1
  287. package/build/cjs/modules/RowsList/RowsList.js.map +1 -1
  288. package/build/cjs/modules/RowsList/helpers/prepareRowData.d.ts +9 -9
  289. package/build/cjs/modules/RowsList/helpers/prepareRowData.js.map +1 -1
  290. package/build/cjs/modules/SavedQueryRow/SavedQueryRow.css +17 -0
  291. package/build/cjs/modules/SavedQueryRow/SavedQueryRow.css.map +1 -0
  292. package/build/cjs/modules/SavedQueryRow/SavedQueryRow.d.ts +9 -0
  293. package/build/cjs/modules/SavedQueryRow/SavedQueryRow.js +78 -0
  294. package/build/cjs/modules/SavedQueryRow/SavedQueryRow.js.map +1 -0
  295. package/build/cjs/modules/SavedQueryRow/index.d.ts +2 -0
  296. package/build/cjs/modules/SavedQueryRow/index.js +13 -0
  297. package/build/cjs/modules/SavedQueryRow/index.js.map +1 -0
  298. package/build/cjs/modules/SavedQuerySearchRow/SavedQuerySearchRow.css +12 -0
  299. package/build/cjs/modules/SavedQuerySearchRow/SavedQuerySearchRow.css.map +1 -0
  300. package/build/cjs/modules/SavedQuerySearchRow/SavedQuerySearchRow.d.ts +9 -0
  301. package/build/cjs/modules/SavedQuerySearchRow/SavedQuerySearchRow.js +65 -0
  302. package/build/cjs/modules/SavedQuerySearchRow/SavedQuerySearchRow.js.map +1 -0
  303. package/build/cjs/modules/SavedQuerySearchRow/index.d.ts +2 -0
  304. package/build/cjs/modules/SavedQuerySearchRow/index.js +13 -0
  305. package/build/cjs/modules/SavedQuerySearchRow/index.js.map +1 -0
  306. package/build/cjs/modules/index.d.ts +11 -2
  307. package/build/cjs/modules/index.js +52 -8
  308. package/build/cjs/modules/index.js.map +1 -1
  309. package/build/cjs/types/declarations.d.ts +10 -0
  310. package/build/cjs/types/errorTree.d.ts +23 -0
  311. package/build/cjs/types/errorTree.js +6 -0
  312. package/build/cjs/types/errorTree.js.map +1 -0
  313. package/build/cjs/types/history.d.ts +4 -85
  314. package/build/cjs/types/history.js.map +1 -1
  315. package/build/cjs/types/navigation.d.ts +8 -1
  316. package/build/cjs/types/navigation.js.map +1 -1
  317. package/build/cjs/types/queryList.d.ts +83 -0
  318. package/build/cjs/types/queryList.js +6 -0
  319. package/build/cjs/types/queryList.js.map +1 -0
  320. package/build/cjs/types/queryResults.d.ts +34 -0
  321. package/build/cjs/types/queryResults.js +6 -0
  322. package/build/cjs/types/queryResults.js.map +1 -0
  323. package/build/cjs/types/queryStatistics.d.ts +54 -0
  324. package/build/cjs/types/queryStatistics.js +6 -0
  325. package/build/cjs/types/queryStatistics.js.map +1 -0
  326. package/build/cjs/types/savedQueries.d.ts +6 -0
  327. package/build/cjs/types/savedQueries.js +6 -0
  328. package/build/cjs/types/savedQueries.js.map +1 -0
  329. package/build/cjs/types/tutorial.d.ts +2 -2
  330. package/build/cjs/types/tutorial.js.map +1 -1
  331. package/build/cjs/widgets/QueriesHistory/QueriesHistory.css +0 -6
  332. package/build/cjs/widgets/QueriesHistory/QueriesHistory.css.map +1 -1
  333. package/build/cjs/widgets/QueriesHistory/QueriesHistory.d.ts +11 -10
  334. package/build/cjs/widgets/QueriesHistory/QueriesHistory.js +15 -34
  335. package/build/cjs/widgets/QueriesHistory/QueriesHistory.js.map +1 -1
  336. package/build/cjs/widgets/QueriesHistory/QueriesHistory.stories.js.map +1 -1
  337. package/build/cjs/widgets/QueriesHistory/internal/HistoryRowContent.d.ts +4 -0
  338. package/build/cjs/{modules/HistoryList → widgets/QueriesHistory/internal}/HistoryRowContent.js +4 -5
  339. package/build/cjs/widgets/QueriesHistory/internal/HistoryRowContent.js.map +1 -0
  340. package/build/cjs/widgets/QueriesNavigation/QueriesNavigation.css +3 -0
  341. package/build/cjs/widgets/QueriesNavigation/QueriesNavigation.css.map +1 -1
  342. package/build/cjs/widgets/QueriesNavigation/QueriesNavigation.stories.js +40 -35
  343. package/build/cjs/widgets/QueriesNavigation/QueriesNavigation.stories.js.map +1 -1
  344. package/build/cjs/widgets/QueriesNavigation/i18n/index.d.ts +2 -2
  345. package/build/cjs/widgets/QueryResults/QueryResults.css +19 -0
  346. package/build/cjs/widgets/QueryResults/QueryResults.css.map +1 -0
  347. package/build/cjs/widgets/QueryResults/QueryResults.d.ts +23 -0
  348. package/build/cjs/widgets/QueryResults/QueryResults.js +119 -0
  349. package/build/cjs/widgets/QueryResults/QueryResults.js.map +1 -0
  350. package/build/cjs/widgets/QueryResults/QueryResults.stories.d.ts +19 -0
  351. package/build/cjs/widgets/QueryResults/QueryResults.stories.js +199 -0
  352. package/build/cjs/widgets/QueryResults/QueryResults.stories.js.map +1 -0
  353. package/build/cjs/widgets/QueryResults/i18n/dicts.d.ts +25 -0
  354. package/build/cjs/widgets/QueryResults/i18n/dicts.js +14 -0
  355. package/build/cjs/widgets/QueryResults/i18n/dicts.js.map +1 -0
  356. package/build/cjs/widgets/QueryResults/i18n/en.json +10 -0
  357. package/build/cjs/widgets/QueryResults/i18n/index.d.ts +6 -0
  358. package/build/cjs/widgets/QueryResults/i18n/index.js +11 -0
  359. package/build/cjs/widgets/QueryResults/i18n/index.js.map +1 -0
  360. package/build/cjs/widgets/QueryResults/i18n/ru.json +12 -0
  361. package/build/cjs/widgets/QueryResults/index.d.ts +2 -0
  362. package/build/cjs/widgets/QueryResults/index.js +13 -0
  363. package/build/cjs/widgets/QueryResults/index.js.map +1 -0
  364. package/build/cjs/widgets/QueryResults/internal/QueryResultsSchema.d.ts +7 -0
  365. package/build/cjs/widgets/QueryResults/internal/QueryResultsSchema.js +49 -0
  366. package/build/cjs/widgets/QueryResults/internal/QueryResultsSchema.js.map +1 -0
  367. package/build/cjs/widgets/SavedQueries/SavedQueries.css +4 -0
  368. package/build/cjs/widgets/SavedQueries/SavedQueries.css.map +1 -0
  369. package/build/cjs/widgets/SavedQueries/SavedQueries.d.ts +21 -0
  370. package/build/cjs/widgets/SavedQueries/SavedQueries.js +58 -0
  371. package/build/cjs/widgets/SavedQueries/SavedQueries.js.map +1 -0
  372. package/build/cjs/widgets/SavedQueries/SavedQueries.stories.d.ts +8 -0
  373. package/build/cjs/widgets/SavedQueries/SavedQueries.stories.js +286 -0
  374. package/build/cjs/widgets/SavedQueries/SavedQueries.stories.js.map +1 -0
  375. package/build/cjs/widgets/SavedQueries/SavedQueryRowContent.d.ts +8 -0
  376. package/build/cjs/widgets/SavedQueries/SavedQueryRowContent.js +33 -0
  377. package/build/cjs/widgets/SavedQueries/SavedQueryRowContent.js.map +1 -0
  378. package/build/cjs/widgets/SavedQueries/i18n/dicts.d.ts +9 -0
  379. package/build/cjs/widgets/SavedQueries/i18n/dicts.js +14 -0
  380. package/build/cjs/widgets/SavedQueries/i18n/dicts.js.map +1 -0
  381. package/build/cjs/widgets/SavedQueries/i18n/en.json +3 -0
  382. package/build/cjs/widgets/SavedQueries/i18n/index.d.ts +6 -0
  383. package/build/cjs/widgets/SavedQueries/i18n/index.js +11 -0
  384. package/build/cjs/widgets/SavedQueries/i18n/index.js.map +1 -0
  385. package/build/cjs/widgets/SavedQueries/i18n/ru.json +3 -0
  386. package/build/cjs/widgets/SavedQueries/index.d.ts +2 -0
  387. package/build/cjs/widgets/SavedQueries/index.js +13 -0
  388. package/build/cjs/widgets/SavedQueries/index.js.map +1 -0
  389. package/build/cjs/widgets/TutorialsHistory/TutorialRowContent.d.ts +2 -2
  390. package/build/cjs/widgets/TutorialsHistory/TutorialRowContent.js.map +1 -1
  391. package/build/cjs/widgets/TutorialsHistory/TutorialsHistory.d.ts +5 -5
  392. package/build/cjs/widgets/TutorialsHistory/TutorialsHistory.js.map +1 -1
  393. package/build/cjs/widgets/TutorialsHistory/TutorialsHistory.stories.js.map +1 -1
  394. package/build/cjs/widgets/index.d.ts +4 -0
  395. package/build/cjs/widgets/index.js +14 -0
  396. package/build/cjs/widgets/index.js.map +1 -1
  397. package/build/esm/components/AttachmentList/AttachmentList.css +22 -0
  398. package/build/esm/components/AttachmentList/AttachmentList.css.map +1 -0
  399. package/build/esm/components/AttachmentList/AttachmentList.d.ts +17 -0
  400. package/build/esm/components/AttachmentList/AttachmentList.js +67 -0
  401. package/build/esm/components/AttachmentList/AttachmentList.js.map +1 -0
  402. package/build/esm/components/AttachmentList/AttachmentList.scss +25 -0
  403. package/build/esm/components/AttachmentList/AttachmentList.stories.d.ts +93 -0
  404. package/build/esm/components/AttachmentList/AttachmentList.stories.js +315 -0
  405. package/build/esm/components/AttachmentList/AttachmentList.stories.js.map +1 -0
  406. package/build/esm/components/AttachmentList/helpers/getIconByAttachmentName.d.ts +2 -0
  407. package/build/esm/components/AttachmentList/helpers/getIconByAttachmentName.js +30 -0
  408. package/build/esm/components/AttachmentList/helpers/getIconByAttachmentName.js.map +1 -0
  409. package/build/esm/components/AttachmentList/helpers/objectLinkValidator.d.ts +11 -0
  410. package/build/esm/components/AttachmentList/helpers/objectLinkValidator.js +24 -0
  411. package/build/esm/components/AttachmentList/helpers/objectLinkValidator.js.map +1 -0
  412. package/build/esm/components/AttachmentList/helpers/stringRequiredValidator.d.ts +2 -0
  413. package/build/esm/components/AttachmentList/helpers/stringRequiredValidator.js +19 -0
  414. package/build/esm/components/AttachmentList/helpers/stringRequiredValidator.js.map +1 -0
  415. package/build/esm/components/AttachmentList/hooks/useKeyDownFormControl.d.ts +4 -0
  416. package/build/esm/components/AttachmentList/hooks/useKeyDownFormControl.js +21 -0
  417. package/build/esm/components/AttachmentList/hooks/useKeyDownFormControl.js.map +1 -0
  418. package/build/esm/components/AttachmentList/hooks/useLabelRef.d.ts +4 -0
  419. package/build/esm/components/AttachmentList/hooks/useLabelRef.js +28 -0
  420. package/build/esm/components/AttachmentList/hooks/useLabelRef.js.map +1 -0
  421. package/build/esm/components/AttachmentList/i18n/dicts.d.ts +23 -0
  422. package/build/esm/components/AttachmentList/i18n/dicts.js +7 -0
  423. package/build/esm/components/AttachmentList/i18n/dicts.js.map +1 -0
  424. package/build/esm/components/AttachmentList/i18n/en.json +10 -0
  425. package/build/esm/components/AttachmentList/i18n/index.d.ts +6 -0
  426. package/build/esm/components/AttachmentList/i18n/index.js +4 -0
  427. package/build/esm/components/AttachmentList/i18n/index.js.map +1 -0
  428. package/build/esm/components/AttachmentList/i18n/ru.json +10 -0
  429. package/build/esm/components/AttachmentList/index.d.ts +4 -0
  430. package/build/esm/components/AttachmentList/index.js +4 -0
  431. package/build/esm/components/AttachmentList/index.js.map +1 -0
  432. package/build/esm/components/AttachmentList/internal/AttachmentItem/AttachmentItem.css +18 -0
  433. package/build/esm/components/AttachmentList/internal/AttachmentItem/AttachmentItem.css.map +1 -0
  434. package/build/esm/components/AttachmentList/internal/AttachmentItem/AttachmentItem.d.ts +16 -0
  435. package/build/esm/components/AttachmentList/internal/AttachmentItem/AttachmentItem.js +98 -0
  436. package/build/esm/components/AttachmentList/internal/AttachmentItem/AttachmentItem.js.map +1 -0
  437. package/build/esm/components/AttachmentList/internal/AttachmentItem/AttachmentItem.scss +23 -0
  438. package/build/esm/components/AttachmentList/internal/AttachmentItem/index.d.ts +2 -0
  439. package/build/esm/components/AttachmentList/internal/AttachmentItem/index.js +2 -0
  440. package/build/esm/components/AttachmentList/internal/AttachmentItem/index.js.map +1 -0
  441. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditAttachmentItem.d.ts +9 -0
  442. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditAttachmentItem.js +15 -0
  443. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditAttachmentItem.js.map +1 -0
  444. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.css +17 -0
  445. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.css.map +1 -0
  446. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.d.ts +24 -0
  447. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.js +167 -0
  448. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.js.map +1 -0
  449. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.scss +21 -0
  450. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/FileEdit.d.ts +12 -0
  451. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/FileEdit.js +83 -0
  452. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/FileEdit.js.map +1 -0
  453. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/index.d.ts +4 -0
  454. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/index.js +2 -0
  455. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/index.js.map +1 -0
  456. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.css +4 -0
  457. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.css.map +1 -0
  458. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.d.ts +13 -0
  459. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.js +68 -0
  460. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.js.map +1 -0
  461. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.scss +5 -0
  462. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.stories.d.ts +29 -0
  463. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.stories.js +29 -0
  464. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.stories.js.map +1 -0
  465. package/build/esm/components/AttachmentListPlaceholder/i18n/dicts.d.ts +17 -0
  466. package/build/esm/components/AttachmentListPlaceholder/i18n/dicts.js +7 -0
  467. package/build/esm/components/AttachmentListPlaceholder/i18n/dicts.js.map +1 -0
  468. package/build/esm/components/AttachmentListPlaceholder/i18n/en.json +7 -0
  469. package/build/esm/components/AttachmentListPlaceholder/i18n/index.d.ts +6 -0
  470. package/build/esm/components/AttachmentListPlaceholder/i18n/index.js +4 -0
  471. package/build/esm/components/AttachmentListPlaceholder/i18n/index.js.map +1 -0
  472. package/build/esm/components/AttachmentListPlaceholder/i18n/ru.json +7 -0
  473. package/build/esm/components/AttachmentListPlaceholder/index.d.ts +2 -0
  474. package/build/esm/components/AttachmentListPlaceholder/index.js +2 -0
  475. package/build/esm/components/AttachmentListPlaceholder/index.js.map +1 -0
  476. package/build/esm/components/DataTable/DataTable.css +0 -7
  477. package/build/esm/components/DataTable/DataTable.css.map +1 -1
  478. package/build/esm/components/DataTable/DataTable.js +12 -5
  479. package/build/esm/components/DataTable/DataTable.js.map +1 -1
  480. package/build/esm/components/DataTable/DataTable.scss +18 -26
  481. package/build/esm/components/EditableRowTitle/EditableRowTitle.d.ts +7 -0
  482. package/build/esm/{modules/HistoryRow/HistoryRowTitle.js → components/EditableRowTitle/EditableRowTitle.js} +4 -6
  483. package/build/esm/components/EditableRowTitle/EditableRowTitle.js.map +1 -0
  484. package/build/esm/components/EditableRowTitle/index.d.ts +2 -0
  485. package/build/esm/components/EditableRowTitle/index.js +2 -0
  486. package/build/esm/components/EditableRowTitle/index.js.map +1 -0
  487. package/build/esm/components/ErrorTree/ErrorTree.d.ts +3 -0
  488. package/build/esm/components/ErrorTree/ErrorTree.js +28 -0
  489. package/build/esm/components/ErrorTree/ErrorTree.js.map +1 -0
  490. package/build/esm/components/ErrorTree/ErrorTree.stories.d.ts +8 -0
  491. package/build/esm/components/ErrorTree/ErrorTree.stories.js +94 -0
  492. package/build/esm/components/ErrorTree/ErrorTree.stories.js.map +1 -0
  493. package/build/esm/components/ErrorTree/helpers/formatAttributes.d.ts +2 -0
  494. package/build/esm/components/ErrorTree/helpers/formatAttributes.js +10 -0
  495. package/build/esm/components/ErrorTree/helpers/formatAttributes.js.map +1 -0
  496. package/build/esm/components/ErrorTree/helpers/getIntermediateChain.d.ts +6 -0
  497. package/build/esm/components/ErrorTree/helpers/getIntermediateChain.js +16 -0
  498. package/build/esm/components/ErrorTree/helpers/getIntermediateChain.js.map +1 -0
  499. package/build/esm/components/ErrorTree/i18n/dicts.d.ts +27 -0
  500. package/build/esm/components/ErrorTree/i18n/dicts.js +7 -0
  501. package/build/esm/components/ErrorTree/i18n/dicts.js.map +1 -0
  502. package/build/esm/components/ErrorTree/i18n/en.json +11 -0
  503. package/build/esm/components/ErrorTree/i18n/index.d.ts +6 -0
  504. package/build/esm/components/ErrorTree/i18n/index.js +4 -0
  505. package/build/esm/components/ErrorTree/i18n/index.js.map +1 -0
  506. package/build/esm/components/ErrorTree/i18n/ru.json +13 -0
  507. package/build/esm/components/ErrorTree/index.d.ts +1 -0
  508. package/build/esm/components/ErrorTree/index.js +2 -0
  509. package/build/esm/components/ErrorTree/index.js.map +1 -0
  510. package/build/esm/components/ErrorTree/internal/ErrorTreeChildren.css +4 -0
  511. package/build/esm/components/ErrorTree/internal/ErrorTreeChildren.css.map +1 -0
  512. package/build/esm/components/ErrorTree/internal/ErrorTreeChildren.d.ts +10 -0
  513. package/build/esm/components/ErrorTree/internal/ErrorTreeChildren.js +25 -0
  514. package/build/esm/components/ErrorTree/internal/ErrorTreeChildren.js.map +1 -0
  515. package/build/esm/components/ErrorTree/internal/ErrorTreeChildren.scss +5 -0
  516. package/build/esm/components/ErrorTree/internal/ErrorTreeNode.css +80 -0
  517. package/build/esm/components/ErrorTree/internal/ErrorTreeNode.css.map +1 -0
  518. package/build/esm/components/ErrorTree/internal/ErrorTreeNode.d.ts +13 -0
  519. package/build/esm/components/ErrorTree/internal/ErrorTreeNode.js +266 -0
  520. package/build/esm/components/ErrorTree/internal/ErrorTreeNode.js.map +1 -0
  521. package/build/esm/components/ErrorTree/internal/ErrorTreeNode.scss +95 -0
  522. package/build/esm/components/ErrorTree/internal/IntermediateMessages.css +10 -0
  523. package/build/esm/components/ErrorTree/internal/IntermediateMessages.css.map +1 -0
  524. package/build/esm/components/ErrorTree/internal/IntermediateMessages.d.ts +9 -0
  525. package/build/esm/components/ErrorTree/internal/IntermediateMessages.js +110 -0
  526. package/build/esm/components/ErrorTree/internal/IntermediateMessages.js.map +1 -0
  527. package/build/esm/components/ErrorTree/internal/IntermediateMessages.scss +13 -0
  528. package/build/esm/components/HistoryFilter/HistoryFilter.d.ts +2 -2
  529. package/build/esm/components/HistoryFilter/HistoryFilter.js.map +1 -1
  530. package/build/esm/components/Icons/LogoCPlusPlus.d.ts +2 -0
  531. package/build/esm/components/Icons/LogoCPlusPlus.js +28 -0
  532. package/build/esm/components/Icons/LogoCPlusPlus.js.map +1 -0
  533. package/build/esm/components/Icons/index.d.ts +1 -0
  534. package/build/esm/components/Icons/index.js +2 -0
  535. package/build/esm/components/Icons/index.js.map +1 -0
  536. package/build/esm/components/LazyList/LazyList.css +0 -2
  537. package/build/esm/components/LazyList/LazyList.css.map +1 -1
  538. package/build/esm/components/LazyList/LazyList.scss +6 -6
  539. package/build/esm/components/QueryResultsTable/QueryResultsTable.css +53 -0
  540. package/build/esm/components/QueryResultsTable/QueryResultsTable.css.map +1 -0
  541. package/build/esm/components/QueryResultsTable/QueryResultsTable.d.ts +24 -0
  542. package/build/esm/components/QueryResultsTable/QueryResultsTable.js +96 -0
  543. package/build/esm/components/QueryResultsTable/QueryResultsTable.js.map +1 -0
  544. package/build/esm/components/QueryResultsTable/QueryResultsTable.scss +65 -0
  545. package/build/esm/components/QueryResultsTable/helpers/formatQueryResultType.d.ts +3 -0
  546. package/build/esm/components/QueryResultsTable/helpers/formatQueryResultType.js +82 -0
  547. package/build/esm/components/QueryResultsTable/helpers/formatQueryResultType.js.map +1 -0
  548. package/build/esm/components/QueryResultsTable/helpers/formatQueryResultValue.d.ts +11 -0
  549. package/build/esm/components/QueryResultsTable/helpers/formatQueryResultValue.js +33 -0
  550. package/build/esm/components/QueryResultsTable/helpers/formatQueryResultValue.js.map +1 -0
  551. package/build/esm/components/QueryResultsTable/i18n/dicts.d.ts +13 -0
  552. package/build/esm/components/QueryResultsTable/i18n/dicts.js +7 -0
  553. package/build/esm/components/QueryResultsTable/i18n/dicts.js.map +1 -0
  554. package/build/esm/components/QueryResultsTable/i18n/en.json +5 -0
  555. package/build/esm/components/QueryResultsTable/i18n/index.d.ts +6 -0
  556. package/build/esm/components/QueryResultsTable/i18n/index.js +4 -0
  557. package/build/esm/components/QueryResultsTable/i18n/index.js.map +1 -0
  558. package/build/esm/components/QueryResultsTable/i18n/ru.json +5 -0
  559. package/build/esm/components/QueryResultsTable/index.d.ts +3 -0
  560. package/build/esm/components/QueryResultsTable/index.js +3 -0
  561. package/build/esm/components/QueryResultsTable/index.js.map +1 -0
  562. package/build/esm/components/QueryResultsTable/internal/QueryResultCell.d.ts +11 -0
  563. package/build/esm/components/QueryResultsTable/internal/QueryResultCell.js +71 -0
  564. package/build/esm/components/QueryResultsTable/internal/QueryResultCell.js.map +1 -0
  565. package/build/esm/components/RowActionsMenu/RowActionsMenu.d.ts +7 -0
  566. package/build/esm/{modules/HistoryRow/HistoryRowMenu.js → components/RowActionsMenu/RowActionsMenu.js} +8 -5
  567. package/build/esm/components/RowActionsMenu/RowActionsMenu.js.map +1 -0
  568. package/build/esm/components/RowActionsMenu/index.d.ts +2 -0
  569. package/build/esm/components/RowActionsMenu/index.js +2 -0
  570. package/build/esm/components/RowActionsMenu/index.js.map +1 -0
  571. package/build/esm/components/index.d.ts +9 -0
  572. package/build/esm/components/index.js +6 -0
  573. package/build/esm/components/index.js.map +1 -1
  574. package/build/esm/helpers/createUuid.d.ts +1 -0
  575. package/build/esm/helpers/createUuid.js +6 -0
  576. package/build/esm/helpers/createUuid.js.map +1 -0
  577. package/build/esm/helpers/getListKey.d.ts +2 -2
  578. package/build/esm/helpers/getListKey.js.map +1 -1
  579. package/build/esm/helpers/isFieldVisible.d.ts +5 -4
  580. package/build/esm/helpers/isFieldVisible.js +2 -2
  581. package/build/esm/helpers/isFieldVisible.js.map +1 -1
  582. package/build/esm/helpers/isObjectEqual.d.ts +1 -0
  583. package/build/esm/helpers/isObjectEqual.js +23 -0
  584. package/build/esm/helpers/isObjectEqual.js.map +1 -0
  585. package/build/esm/helpers/time.d.ts +1 -0
  586. package/build/esm/helpers/time.js +6 -2
  587. package/build/esm/helpers/time.js.map +1 -1
  588. package/build/esm/helpers/useDebouncedValue.d.ts +2 -0
  589. package/build/esm/helpers/useDebouncedValue.js +21 -0
  590. package/build/esm/helpers/useDebouncedValue.js.map +1 -0
  591. package/build/esm/index.d.ts +5 -0
  592. package/build/esm/index.js +5 -0
  593. package/build/esm/index.js.map +1 -1
  594. package/build/esm/modules/Attachments/Attachments.css +8 -0
  595. package/build/esm/modules/Attachments/Attachments.css.map +1 -0
  596. package/build/esm/modules/Attachments/Attachments.d.ts +22 -0
  597. package/build/esm/modules/Attachments/Attachments.js +373 -0
  598. package/build/esm/modules/Attachments/Attachments.js.map +1 -0
  599. package/build/esm/modules/Attachments/Attachments.scss +10 -0
  600. package/build/esm/modules/Attachments/Attachments.stories.d.ts +41 -0
  601. package/build/esm/modules/Attachments/Attachments.stories.js +115 -0
  602. package/build/esm/modules/Attachments/Attachments.stories.js.map +1 -0
  603. package/build/esm/modules/Attachments/i18n/dicts.d.ts +13 -0
  604. package/build/esm/modules/Attachments/i18n/dicts.js +7 -0
  605. package/build/esm/modules/Attachments/i18n/dicts.js.map +1 -0
  606. package/build/esm/modules/Attachments/i18n/en.json +5 -0
  607. package/build/esm/modules/Attachments/i18n/index.d.ts +6 -0
  608. package/build/esm/modules/Attachments/i18n/index.js +4 -0
  609. package/build/esm/modules/Attachments/i18n/index.js.map +1 -0
  610. package/build/esm/modules/Attachments/i18n/ru.json +5 -0
  611. package/build/esm/modules/Attachments/index.d.ts +2 -0
  612. package/build/esm/modules/Attachments/index.js +2 -0
  613. package/build/esm/modules/Attachments/index.js.map +1 -0
  614. package/build/esm/modules/HistoryComparisonActions/HistoryComparisonActions.css +5 -0
  615. package/build/esm/modules/HistoryComparisonActions/HistoryComparisonActions.css.map +1 -0
  616. package/build/esm/modules/HistoryComparisonActions/HistoryComparisonActions.d.ts +8 -0
  617. package/build/esm/{widgets/QueriesHistory/ComparisonActions.js → modules/HistoryComparisonActions/HistoryComparisonActions.js} +10 -10
  618. package/build/esm/modules/HistoryComparisonActions/HistoryComparisonActions.js.map +1 -0
  619. package/build/esm/{widgets/QueriesHistory/ComparisonActions.scss → modules/HistoryComparisonActions/HistoryComparisonActions.scss} +2 -2
  620. package/build/esm/modules/HistoryComparisonActions/index.d.ts +2 -0
  621. package/build/esm/modules/HistoryComparisonActions/index.js +2 -0
  622. package/build/esm/modules/HistoryComparisonActions/index.js.map +1 -0
  623. package/build/esm/modules/HistoryHeader/HistoryHeader.d.ts +2 -2
  624. package/build/esm/modules/HistoryHeader/HistoryHeader.js.map +1 -1
  625. package/build/esm/modules/HistoryRow/HistoryRow.d.ts +3 -2
  626. package/build/esm/modules/HistoryRow/HistoryRow.js +3 -5
  627. package/build/esm/modules/HistoryRow/HistoryRow.js.map +1 -1
  628. package/build/esm/modules/HistoryRow/HistoryRow.stories.js.map +1 -1
  629. package/build/esm/modules/HistorySearchRow/HistorySearchRow.d.ts +3 -2
  630. package/build/esm/modules/HistorySearchRow/HistorySearchRow.js.map +1 -1
  631. package/build/esm/modules/NavigationItemsList/internal/NavigationItemsListHeader.js +1 -7
  632. package/build/esm/modules/NavigationItemsList/internal/NavigationItemsListHeader.js.map +1 -1
  633. package/build/esm/modules/NavigationPreview/NavigationPreview.css +7 -1
  634. package/build/esm/modules/NavigationPreview/NavigationPreview.css.map +1 -1
  635. package/build/esm/modules/NavigationPreview/NavigationPreview.d.ts +2 -2
  636. package/build/esm/modules/NavigationPreview/NavigationPreview.js +38 -8
  637. package/build/esm/modules/NavigationPreview/NavigationPreview.js.map +1 -1
  638. package/build/esm/modules/NavigationPreview/NavigationPreview.scss +25 -17
  639. package/build/esm/modules/NavigationPreview/story/NavigationPreview.stories.d.ts +1 -0
  640. package/build/esm/modules/NavigationPreview/story/NavigationPreview.stories.js +24 -0
  641. package/build/esm/modules/NavigationPreview/story/NavigationPreview.stories.js.map +1 -1
  642. package/build/esm/modules/NavigationPreview/story/mockData.d.ts +2 -2
  643. package/build/esm/modules/NavigationPreview/story/mockData.js +16 -4
  644. package/build/esm/modules/NavigationPreview/story/mockData.js.map +1 -1
  645. package/build/esm/modules/QueriesList/QueriesList.css +10 -0
  646. package/build/esm/modules/QueriesList/QueriesList.css.map +1 -0
  647. package/build/esm/modules/QueriesList/QueriesList.d.ts +19 -0
  648. package/build/esm/modules/QueriesList/QueriesList.js +68 -0
  649. package/build/esm/modules/QueriesList/QueriesList.js.map +1 -0
  650. package/build/esm/modules/QueriesList/QueriesList.scss +10 -0
  651. package/build/esm/modules/QueriesList/index.d.ts +2 -0
  652. package/build/esm/modules/QueriesList/index.js +2 -0
  653. package/build/esm/modules/QueriesList/index.js.map +1 -0
  654. package/build/esm/modules/QueryStatistics/QueryStatistics.css +4 -0
  655. package/build/esm/modules/QueryStatistics/QueryStatistics.css.map +1 -0
  656. package/build/esm/modules/QueryStatistics/QueryStatistics.d.ts +4 -0
  657. package/build/esm/modules/QueryStatistics/QueryStatistics.js +143 -0
  658. package/build/esm/modules/QueryStatistics/QueryStatistics.js.map +1 -0
  659. package/build/esm/modules/QueryStatistics/QueryStatistics.scss +3 -0
  660. package/build/esm/modules/QueryStatistics/helpers.d.ts +15 -0
  661. package/build/esm/modules/QueryStatistics/helpers.js +106 -0
  662. package/build/esm/modules/QueryStatistics/helpers.js.map +1 -0
  663. package/build/esm/modules/QueryStatistics/i18n/dicts.d.ts +35 -0
  664. package/build/esm/modules/QueryStatistics/i18n/dicts.js +7 -0
  665. package/build/esm/modules/QueryStatistics/i18n/dicts.js.map +1 -0
  666. package/build/esm/modules/QueryStatistics/i18n/en.json +16 -0
  667. package/build/esm/modules/QueryStatistics/i18n/index.d.ts +6 -0
  668. package/build/esm/modules/QueryStatistics/i18n/index.js +4 -0
  669. package/build/esm/modules/QueryStatistics/i18n/index.js.map +1 -0
  670. package/build/esm/modules/QueryStatistics/i18n/ru.json +16 -0
  671. package/build/esm/modules/QueryStatistics/index.d.ts +2 -0
  672. package/build/esm/modules/QueryStatistics/index.js +2 -0
  673. package/build/esm/modules/QueryStatistics/index.js.map +1 -0
  674. package/build/esm/modules/QueryStatistics/internal/MetricCell.css +36 -0
  675. package/build/esm/modules/QueryStatistics/internal/MetricCell.css.map +1 -0
  676. package/build/esm/modules/QueryStatistics/internal/MetricCell.d.ts +9 -0
  677. package/build/esm/modules/QueryStatistics/internal/MetricCell.js +114 -0
  678. package/build/esm/modules/QueryStatistics/internal/MetricCell.js.map +1 -0
  679. package/build/esm/modules/QueryStatistics/internal/MetricCell.scss +12 -0
  680. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsTable.css +21 -0
  681. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsTable.css.map +1 -0
  682. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsTable.d.ts +20 -0
  683. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsTable.js +132 -0
  684. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsTable.js.map +1 -0
  685. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsTable.scss +8 -0
  686. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsToolbar.css +5 -0
  687. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsToolbar.css.map +1 -0
  688. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsToolbar.d.ts +10 -0
  689. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsToolbar.js +48 -0
  690. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsToolbar.js.map +1 -0
  691. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsToolbar.scss +1 -0
  692. package/build/esm/modules/QueryStatistics/story/QueryStatistics.stories.d.ts +8 -0
  693. package/build/esm/modules/QueryStatistics/story/QueryStatistics.stories.js +105 -0
  694. package/build/esm/modules/QueryStatistics/story/QueryStatistics.stories.js.map +1 -0
  695. package/build/esm/modules/RowsList/RowsList.d.ts +11 -11
  696. package/build/esm/modules/RowsList/RowsList.js +5 -1
  697. package/build/esm/modules/RowsList/RowsList.js.map +1 -1
  698. package/build/esm/modules/RowsList/helpers/prepareRowData.d.ts +9 -9
  699. package/build/esm/modules/RowsList/helpers/prepareRowData.js.map +1 -1
  700. package/build/esm/modules/SavedQueryRow/SavedQueryRow.css +17 -0
  701. package/build/esm/modules/SavedQueryRow/SavedQueryRow.css.map +1 -0
  702. package/build/esm/modules/SavedQueryRow/SavedQueryRow.d.ts +9 -0
  703. package/build/esm/modules/SavedQueryRow/SavedQueryRow.js +71 -0
  704. package/build/esm/modules/SavedQueryRow/SavedQueryRow.js.map +1 -0
  705. package/build/esm/modules/SavedQueryRow/SavedQueryRow.scss +20 -0
  706. package/build/esm/modules/SavedQueryRow/index.d.ts +2 -0
  707. package/build/esm/modules/SavedQueryRow/index.js +2 -0
  708. package/build/esm/modules/SavedQueryRow/index.js.map +1 -0
  709. package/build/esm/modules/SavedQuerySearchRow/SavedQuerySearchRow.css +12 -0
  710. package/build/esm/modules/SavedQuerySearchRow/SavedQuerySearchRow.css.map +1 -0
  711. package/build/esm/modules/SavedQuerySearchRow/SavedQuerySearchRow.d.ts +9 -0
  712. package/build/esm/modules/SavedQuerySearchRow/SavedQuerySearchRow.js +58 -0
  713. package/build/esm/modules/SavedQuerySearchRow/SavedQuerySearchRow.js.map +1 -0
  714. package/build/esm/modules/SavedQuerySearchRow/SavedQuerySearchRow.scss +15 -0
  715. package/build/esm/modules/SavedQuerySearchRow/index.d.ts +2 -0
  716. package/build/esm/modules/SavedQuerySearchRow/index.js +2 -0
  717. package/build/esm/modules/SavedQuerySearchRow/index.js.map +1 -0
  718. package/build/esm/modules/index.d.ts +11 -2
  719. package/build/esm/modules/index.js +6 -1
  720. package/build/esm/modules/index.js.map +1 -1
  721. package/build/esm/types/declarations.d.ts +10 -0
  722. package/build/esm/types/errorTree.d.ts +23 -0
  723. package/build/esm/types/errorTree.js +2 -0
  724. package/build/esm/types/errorTree.js.map +1 -0
  725. package/build/esm/types/history.d.ts +4 -85
  726. package/build/esm/types/history.js.map +1 -1
  727. package/build/esm/types/navigation.d.ts +8 -1
  728. package/build/esm/types/navigation.js.map +1 -1
  729. package/build/esm/types/queryList.d.ts +83 -0
  730. package/build/esm/types/queryList.js +2 -0
  731. package/build/esm/types/queryList.js.map +1 -0
  732. package/build/esm/types/queryResults.d.ts +34 -0
  733. package/build/esm/types/queryResults.js +2 -0
  734. package/build/esm/types/queryResults.js.map +1 -0
  735. package/build/esm/types/queryStatistics.d.ts +54 -0
  736. package/build/esm/types/queryStatistics.js +2 -0
  737. package/build/esm/types/queryStatistics.js.map +1 -0
  738. package/build/esm/types/savedQueries.d.ts +6 -0
  739. package/build/esm/types/savedQueries.js +2 -0
  740. package/build/esm/types/savedQueries.js.map +1 -0
  741. package/build/esm/types/tutorial.d.ts +2 -2
  742. package/build/esm/types/tutorial.js.map +1 -1
  743. package/build/esm/widgets/QueriesHistory/QueriesHistory.css +0 -6
  744. package/build/esm/widgets/QueriesHistory/QueriesHistory.css.map +1 -1
  745. package/build/esm/widgets/QueriesHistory/QueriesHistory.d.ts +11 -10
  746. package/build/esm/widgets/QueriesHistory/QueriesHistory.js +16 -35
  747. package/build/esm/widgets/QueriesHistory/QueriesHistory.js.map +1 -1
  748. package/build/esm/widgets/QueriesHistory/QueriesHistory.scss +1 -8
  749. package/build/esm/widgets/QueriesHistory/QueriesHistory.stories.js.map +1 -1
  750. package/build/esm/widgets/QueriesHistory/internal/HistoryRowContent.d.ts +4 -0
  751. package/build/esm/{modules/HistoryList → widgets/QueriesHistory/internal}/HistoryRowContent.js +2 -3
  752. package/build/esm/widgets/QueriesHistory/internal/HistoryRowContent.js.map +1 -0
  753. package/build/esm/widgets/QueriesNavigation/QueriesNavigation.css +3 -0
  754. package/build/esm/widgets/QueriesNavigation/QueriesNavigation.css.map +1 -1
  755. package/build/esm/widgets/QueriesNavigation/QueriesNavigation.scss +2 -0
  756. package/build/esm/widgets/QueriesNavigation/QueriesNavigation.stories.js +40 -35
  757. package/build/esm/widgets/QueriesNavigation/QueriesNavigation.stories.js.map +1 -1
  758. package/build/esm/widgets/QueriesNavigation/i18n/index.d.ts +2 -2
  759. package/build/esm/widgets/QueryResults/QueryResults.css +19 -0
  760. package/build/esm/widgets/QueryResults/QueryResults.css.map +1 -0
  761. package/build/esm/widgets/QueryResults/QueryResults.d.ts +23 -0
  762. package/build/esm/widgets/QueryResults/QueryResults.js +111 -0
  763. package/build/esm/widgets/QueryResults/QueryResults.js.map +1 -0
  764. package/build/esm/widgets/QueryResults/QueryResults.scss +25 -0
  765. package/build/esm/widgets/QueryResults/QueryResults.stories.d.ts +19 -0
  766. package/build/esm/widgets/QueryResults/QueryResults.stories.js +191 -0
  767. package/build/esm/widgets/QueryResults/QueryResults.stories.js.map +1 -0
  768. package/build/esm/widgets/QueryResults/i18n/dicts.d.ts +25 -0
  769. package/build/esm/widgets/QueryResults/i18n/dicts.js +7 -0
  770. package/build/esm/widgets/QueryResults/i18n/dicts.js.map +1 -0
  771. package/build/esm/widgets/QueryResults/i18n/en.json +10 -0
  772. package/build/esm/widgets/QueryResults/i18n/index.d.ts +6 -0
  773. package/build/esm/widgets/QueryResults/i18n/index.js +4 -0
  774. package/build/esm/widgets/QueryResults/i18n/index.js.map +1 -0
  775. package/build/esm/widgets/QueryResults/i18n/ru.json +12 -0
  776. package/build/esm/widgets/QueryResults/index.d.ts +2 -0
  777. package/build/esm/widgets/QueryResults/index.js +2 -0
  778. package/build/esm/widgets/QueryResults/index.js.map +1 -0
  779. package/build/esm/widgets/QueryResults/internal/QueryResultsSchema.d.ts +7 -0
  780. package/build/esm/widgets/QueryResults/internal/QueryResultsSchema.js +41 -0
  781. package/build/esm/widgets/QueryResults/internal/QueryResultsSchema.js.map +1 -0
  782. package/build/esm/widgets/SavedQueries/SavedQueries.css +4 -0
  783. package/build/esm/widgets/SavedQueries/SavedQueries.css.map +1 -0
  784. package/build/esm/widgets/SavedQueries/SavedQueries.d.ts +21 -0
  785. package/build/esm/widgets/SavedQueries/SavedQueries.js +51 -0
  786. package/build/esm/widgets/SavedQueries/SavedQueries.js.map +1 -0
  787. package/build/esm/widgets/SavedQueries/SavedQueries.scss +3 -0
  788. package/build/esm/widgets/SavedQueries/SavedQueries.stories.d.ts +8 -0
  789. package/build/esm/widgets/SavedQueries/SavedQueries.stories.js +278 -0
  790. package/build/esm/widgets/SavedQueries/SavedQueries.stories.js.map +1 -0
  791. package/build/esm/widgets/SavedQueries/SavedQueryRowContent.d.ts +8 -0
  792. package/build/esm/widgets/SavedQueries/SavedQueryRowContent.js +26 -0
  793. package/build/esm/widgets/SavedQueries/SavedQueryRowContent.js.map +1 -0
  794. package/build/esm/widgets/SavedQueries/i18n/dicts.d.ts +9 -0
  795. package/build/esm/widgets/SavedQueries/i18n/dicts.js +7 -0
  796. package/build/esm/widgets/SavedQueries/i18n/dicts.js.map +1 -0
  797. package/build/esm/widgets/SavedQueries/i18n/en.json +3 -0
  798. package/build/esm/widgets/SavedQueries/i18n/index.d.ts +6 -0
  799. package/build/esm/widgets/SavedQueries/i18n/index.js +4 -0
  800. package/build/esm/widgets/SavedQueries/i18n/index.js.map +1 -0
  801. package/build/esm/widgets/SavedQueries/i18n/ru.json +3 -0
  802. package/build/esm/widgets/SavedQueries/index.d.ts +2 -0
  803. package/build/esm/widgets/SavedQueries/index.js +2 -0
  804. package/build/esm/widgets/SavedQueries/index.js.map +1 -0
  805. package/build/esm/widgets/TutorialsHistory/TutorialRowContent.d.ts +2 -2
  806. package/build/esm/widgets/TutorialsHistory/TutorialRowContent.js.map +1 -1
  807. package/build/esm/widgets/TutorialsHistory/TutorialsHistory.d.ts +5 -5
  808. package/build/esm/widgets/TutorialsHistory/TutorialsHistory.js.map +1 -1
  809. package/build/esm/widgets/TutorialsHistory/TutorialsHistory.stories.js.map +1 -1
  810. package/build/esm/widgets/index.d.ts +4 -0
  811. package/build/esm/widgets/index.js +2 -0
  812. package/build/esm/widgets/index.js.map +1 -1
  813. package/package.json +1 -1
  814. package/plans/styles-rules.md +137 -0
  815. package/src/components/AttachmentList/AttachmentList.scss +25 -0
  816. package/src/components/AttachmentList/AttachmentList.stories.tsx +243 -0
  817. package/src/components/AttachmentList/AttachmentList.tsx +67 -0
  818. package/src/components/AttachmentList/helpers/getIconByAttachmentName.ts +36 -0
  819. package/src/components/AttachmentList/helpers/objectLinkValidator.ts +40 -0
  820. package/src/components/AttachmentList/helpers/stringRequiredValidator.ts +24 -0
  821. package/src/components/AttachmentList/hooks/useKeyDownFormControl.ts +22 -0
  822. package/src/components/AttachmentList/hooks/useLabelRef.ts +25 -0
  823. package/src/components/AttachmentList/i18n/dicts.ts +4 -0
  824. package/src/components/AttachmentList/i18n/en.json +10 -0
  825. package/src/components/AttachmentList/i18n/index.ts +5 -0
  826. package/src/components/AttachmentList/i18n/ru.json +10 -0
  827. package/src/components/AttachmentList/index.ts +4 -0
  828. package/src/components/AttachmentList/internal/AttachmentItem/AttachmentItem.scss +23 -0
  829. package/src/components/AttachmentList/internal/AttachmentItem/AttachmentItem.tsx +75 -0
  830. package/src/components/AttachmentList/internal/AttachmentItem/index.ts +2 -0
  831. package/src/components/AttachmentList/internal/EditAttachmentItem/EditAttachmentItem.tsx +21 -0
  832. package/src/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.scss +21 -0
  833. package/src/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.tsx +194 -0
  834. package/src/components/AttachmentList/internal/EditAttachmentItem/FileEdit.tsx +92 -0
  835. package/src/components/AttachmentList/internal/EditAttachmentItem/index.ts +4 -0
  836. package/src/components/AttachmentListPlaceholder/AttachmentListPlaceholder.scss +5 -0
  837. package/src/components/AttachmentListPlaceholder/AttachmentListPlaceholder.stories.tsx +30 -0
  838. package/src/components/AttachmentListPlaceholder/AttachmentListPlaceholder.tsx +72 -0
  839. package/src/components/AttachmentListPlaceholder/assets/empty-attachments.svg +14 -0
  840. package/src/components/AttachmentListPlaceholder/i18n/dicts.ts +4 -0
  841. package/src/components/AttachmentListPlaceholder/i18n/en.json +7 -0
  842. package/src/components/AttachmentListPlaceholder/i18n/index.ts +5 -0
  843. package/src/components/AttachmentListPlaceholder/i18n/ru.json +7 -0
  844. package/src/components/AttachmentListPlaceholder/index.ts +2 -0
  845. package/src/components/DataTable/DataTable.scss +18 -26
  846. package/src/components/DataTable/DataTable.tsx +23 -4
  847. package/src/{modules/HistoryRow/HistoryRowTitle.tsx → components/EditableRowTitle/EditableRowTitle.tsx} +10 -12
  848. package/src/components/EditableRowTitle/index.ts +2 -0
  849. package/src/components/ErrorTree/ErrorTree.stories.tsx +94 -0
  850. package/src/components/ErrorTree/ErrorTree.tsx +30 -0
  851. package/src/components/ErrorTree/helpers/formatAttributes.ts +9 -0
  852. package/src/components/ErrorTree/helpers/getIntermediateChain.ts +21 -0
  853. package/src/components/ErrorTree/i18n/dicts.ts +4 -0
  854. package/src/components/ErrorTree/i18n/en.json +11 -0
  855. package/src/components/ErrorTree/i18n/index.ts +5 -0
  856. package/src/components/ErrorTree/i18n/ru.json +13 -0
  857. package/src/components/ErrorTree/index.ts +1 -0
  858. package/src/components/ErrorTree/internal/ErrorTreeChildren.scss +5 -0
  859. package/src/components/ErrorTree/internal/ErrorTreeChildren.tsx +25 -0
  860. package/src/components/ErrorTree/internal/ErrorTreeNode.scss +95 -0
  861. package/src/components/ErrorTree/internal/ErrorTreeNode.tsx +178 -0
  862. package/src/components/ErrorTree/internal/IntermediateMessages.scss +13 -0
  863. package/src/components/ErrorTree/internal/IntermediateMessages.tsx +127 -0
  864. package/src/components/HistoryFilter/HistoryFilter.tsx +2 -2
  865. package/src/components/Icons/LogoCPlusPlus.tsx +34 -0
  866. package/src/components/Icons/index.ts +1 -0
  867. package/src/components/LazyList/LazyList.scss +6 -6
  868. package/src/components/QueryResultsTable/QueryResultsTable.scss +65 -0
  869. package/src/components/QueryResultsTable/QueryResultsTable.tsx +112 -0
  870. package/src/components/QueryResultsTable/helpers/formatQueryResultType.ts +76 -0
  871. package/src/components/QueryResultsTable/helpers/formatQueryResultValue.ts +38 -0
  872. package/src/components/QueryResultsTable/i18n/dicts.ts +4 -0
  873. package/src/components/QueryResultsTable/i18n/en.json +5 -0
  874. package/src/components/QueryResultsTable/i18n/index.ts +4 -0
  875. package/src/components/QueryResultsTable/i18n/ru.json +5 -0
  876. package/src/components/QueryResultsTable/index.ts +3 -0
  877. package/src/components/QueryResultsTable/internal/QueryResultCell.tsx +63 -0
  878. package/src/components/RowActionsMenu/RowActionsMenu.tsx +47 -0
  879. package/src/components/RowActionsMenu/index.ts +2 -0
  880. package/src/components/index.ts +9 -0
  881. package/src/helpers/createUuid.ts +3 -0
  882. package/src/helpers/getListKey.ts +4 -4
  883. package/src/helpers/isFieldVisible.ts +5 -4
  884. package/src/helpers/isObjectEqual.ts +15 -0
  885. package/src/helpers/time.ts +4 -0
  886. package/src/helpers/useDebouncedValue.ts +14 -0
  887. package/src/index.ts +5 -0
  888. package/src/modules/Attachments/Attachments.scss +10 -0
  889. package/src/modules/Attachments/Attachments.stories.tsx +112 -0
  890. package/src/modules/Attachments/Attachments.tsx +336 -0
  891. package/src/modules/Attachments/i18n/dicts.ts +4 -0
  892. package/src/modules/Attachments/i18n/en.json +5 -0
  893. package/src/modules/Attachments/i18n/index.ts +5 -0
  894. package/src/modules/Attachments/i18n/ru.json +5 -0
  895. package/src/modules/Attachments/index.ts +2 -0
  896. package/src/{widgets/QueriesHistory/ComparisonActions.scss → modules/HistoryComparisonActions/HistoryComparisonActions.scss} +2 -2
  897. package/src/{widgets/QueriesHistory/ComparisonActions.tsx → modules/HistoryComparisonActions/HistoryComparisonActions.tsx} +8 -8
  898. package/src/modules/HistoryComparisonActions/index.ts +2 -0
  899. package/src/modules/HistoryHeader/HistoryHeader.tsx +2 -2
  900. package/src/modules/HistoryRow/HistoryRow.stories.tsx +3 -2
  901. package/src/modules/HistoryRow/HistoryRow.tsx +13 -7
  902. package/src/modules/HistorySearchRow/HistorySearchRow.tsx +3 -2
  903. package/src/modules/NavigationItemsList/internal/NavigationItemsListHeader.tsx +1 -5
  904. package/src/modules/NavigationPreview/NavigationPreview.scss +25 -17
  905. package/src/modules/NavigationPreview/NavigationPreview.tsx +62 -17
  906. package/src/modules/NavigationPreview/story/NavigationPreview.stories.tsx +26 -1
  907. package/src/modules/NavigationPreview/story/mockData.ts +10 -5
  908. package/src/modules/QueriesList/QueriesList.scss +10 -0
  909. package/src/modules/QueriesList/QueriesList.tsx +98 -0
  910. package/src/modules/QueriesList/index.ts +2 -0
  911. package/src/modules/QueryStatistics/QueryStatistics.scss +3 -0
  912. package/src/modules/QueryStatistics/QueryStatistics.tsx +125 -0
  913. package/src/modules/QueryStatistics/helpers.ts +96 -0
  914. package/src/modules/QueryStatistics/i18n/dicts.ts +4 -0
  915. package/src/modules/QueryStatistics/i18n/en.json +16 -0
  916. package/src/modules/QueryStatistics/i18n/index.ts +4 -0
  917. package/src/modules/QueryStatistics/i18n/ru.json +16 -0
  918. package/src/modules/QueryStatistics/index.ts +13 -0
  919. package/src/modules/QueryStatistics/internal/MetricCell.scss +12 -0
  920. package/src/modules/QueryStatistics/internal/MetricCell.tsx +99 -0
  921. package/src/modules/QueryStatistics/internal/QueryStatisticsTable.scss +8 -0
  922. package/src/modules/QueryStatistics/internal/QueryStatisticsTable.tsx +135 -0
  923. package/src/modules/QueryStatistics/internal/QueryStatisticsToolbar.scss +1 -0
  924. package/src/modules/QueryStatistics/internal/QueryStatisticsToolbar.tsx +61 -0
  925. package/src/modules/QueryStatistics/story/QueryStatistics.stories.tsx +71 -0
  926. package/src/modules/RowsList/RowsList.tsx +27 -23
  927. package/src/modules/RowsList/helpers/prepareRowData.ts +18 -18
  928. package/src/modules/SavedQueryRow/SavedQueryRow.scss +20 -0
  929. package/src/modules/SavedQueryRow/SavedQueryRow.tsx +60 -0
  930. package/src/modules/SavedQueryRow/index.ts +2 -0
  931. package/src/modules/SavedQuerySearchRow/SavedQuerySearchRow.scss +15 -0
  932. package/src/modules/SavedQuerySearchRow/SavedQuerySearchRow.tsx +58 -0
  933. package/src/modules/SavedQuerySearchRow/index.ts +2 -0
  934. package/src/modules/index.ts +22 -2
  935. package/src/types/declarations.d.ts +10 -0
  936. package/src/types/errorTree.ts +30 -0
  937. package/src/types/history.ts +4 -95
  938. package/src/types/navigation.ts +11 -1
  939. package/src/types/queryList.ts +92 -0
  940. package/src/types/queryResults.ts +48 -0
  941. package/src/types/queryStatistics.ts +67 -0
  942. package/src/types/savedQueries.ts +7 -0
  943. package/src/types/tutorial.ts +2 -2
  944. package/src/widgets/QueriesHistory/QueriesHistory.scss +1 -8
  945. package/src/widgets/QueriesHistory/QueriesHistory.stories.tsx +11 -11
  946. package/src/widgets/QueriesHistory/QueriesHistory.tsx +35 -61
  947. package/src/{modules/HistoryList → widgets/QueriesHistory/internal}/HistoryRowContent.tsx +5 -5
  948. package/src/widgets/QueriesNavigation/QueriesNavigation.scss +2 -0
  949. package/src/widgets/QueriesNavigation/QueriesNavigation.stories.tsx +42 -33
  950. package/src/widgets/QueryResults/QueryResults.scss +25 -0
  951. package/src/widgets/QueryResults/QueryResults.stories.tsx +155 -0
  952. package/src/widgets/QueryResults/QueryResults.tsx +121 -0
  953. package/src/widgets/QueryResults/i18n/dicts.ts +4 -0
  954. package/src/widgets/QueryResults/i18n/en.json +10 -0
  955. package/src/widgets/QueryResults/i18n/index.ts +4 -0
  956. package/src/widgets/QueryResults/i18n/ru.json +12 -0
  957. package/src/widgets/QueryResults/index.ts +2 -0
  958. package/src/widgets/QueryResults/internal/QueryResultsSchema.tsx +41 -0
  959. package/src/widgets/SavedQueries/SavedQueries.scss +3 -0
  960. package/src/widgets/SavedQueries/SavedQueries.stories.tsx +192 -0
  961. package/src/widgets/SavedQueries/SavedQueries.tsx +77 -0
  962. package/src/widgets/SavedQueries/SavedQueryRowContent.tsx +26 -0
  963. package/src/widgets/SavedQueries/i18n/dicts.ts +4 -0
  964. package/src/widgets/SavedQueries/i18n/en.json +3 -0
  965. package/src/widgets/SavedQueries/i18n/index.ts +4 -0
  966. package/src/widgets/SavedQueries/i18n/ru.json +3 -0
  967. package/src/widgets/SavedQueries/index.ts +2 -0
  968. package/src/widgets/TutorialsHistory/TutorialRowContent.tsx +2 -2
  969. package/src/widgets/TutorialsHistory/TutorialsHistory.stories.tsx +3 -3
  970. package/src/widgets/TutorialsHistory/TutorialsHistory.tsx +5 -9
  971. package/src/widgets/index.ts +4 -0
  972. package/build/cjs/modules/HistoryList/HistoryList.d.ts +0 -16
  973. package/build/cjs/modules/HistoryList/HistoryList.js +0 -24
  974. package/build/cjs/modules/HistoryList/HistoryList.js.map +0 -1
  975. package/build/cjs/modules/HistoryList/HistoryList.stories.d.ts +0 -14
  976. package/build/cjs/modules/HistoryList/HistoryList.stories.js +0 -245
  977. package/build/cjs/modules/HistoryList/HistoryList.stories.js.map +0 -1
  978. package/build/cjs/modules/HistoryList/HistoryRowContent.d.ts +0 -3
  979. package/build/cjs/modules/HistoryList/HistoryRowContent.js.map +0 -1
  980. package/build/cjs/modules/HistoryList/index.d.ts +0 -2
  981. package/build/cjs/modules/HistoryList/index.js +0 -13
  982. package/build/cjs/modules/HistoryList/index.js.map +0 -1
  983. package/build/cjs/modules/HistoryRow/HistoryRowMenu.d.ts +0 -8
  984. package/build/cjs/modules/HistoryRow/HistoryRowMenu.js.map +0 -1
  985. package/build/cjs/modules/HistoryRow/HistoryRowTitle.d.ts +0 -8
  986. package/build/cjs/modules/HistoryRow/HistoryRowTitle.js.map +0 -1
  987. package/build/cjs/widgets/QueriesHistory/ComparisonActions.css +0 -5
  988. package/build/cjs/widgets/QueriesHistory/ComparisonActions.css.map +0 -1
  989. package/build/cjs/widgets/QueriesHistory/ComparisonActions.d.ts +0 -9
  990. package/build/cjs/widgets/QueriesHistory/ComparisonActions.js.map +0 -1
  991. package/build/esm/modules/HistoryList/HistoryList.d.ts +0 -16
  992. package/build/esm/modules/HistoryList/HistoryList.js +0 -17
  993. package/build/esm/modules/HistoryList/HistoryList.js.map +0 -1
  994. package/build/esm/modules/HistoryList/HistoryList.stories.d.ts +0 -14
  995. package/build/esm/modules/HistoryList/HistoryList.stories.js +0 -237
  996. package/build/esm/modules/HistoryList/HistoryList.stories.js.map +0 -1
  997. package/build/esm/modules/HistoryList/HistoryRowContent.d.ts +0 -3
  998. package/build/esm/modules/HistoryList/HistoryRowContent.js.map +0 -1
  999. package/build/esm/modules/HistoryList/index.d.ts +0 -2
  1000. package/build/esm/modules/HistoryList/index.js +0 -2
  1001. package/build/esm/modules/HistoryList/index.js.map +0 -1
  1002. package/build/esm/modules/HistoryRow/HistoryRowMenu.d.ts +0 -8
  1003. package/build/esm/modules/HistoryRow/HistoryRowMenu.js.map +0 -1
  1004. package/build/esm/modules/HistoryRow/HistoryRowTitle.d.ts +0 -8
  1005. package/build/esm/modules/HistoryRow/HistoryRowTitle.js.map +0 -1
  1006. package/build/esm/widgets/QueriesHistory/ComparisonActions.css +0 -5
  1007. package/build/esm/widgets/QueriesHistory/ComparisonActions.css.map +0 -1
  1008. package/build/esm/widgets/QueriesHistory/ComparisonActions.d.ts +0 -9
  1009. package/build/esm/widgets/QueriesHistory/ComparisonActions.js.map +0 -1
  1010. package/src/modules/HistoryList/HistoryList.stories.tsx +0 -181
  1011. package/src/modules/HistoryList/HistoryList.tsx +0 -41
  1012. package/src/modules/HistoryList/index.ts +0 -2
  1013. package/src/modules/HistoryRow/HistoryRowMenu.tsx +0 -47
@@ -0,0 +1,3 @@
1
+ export const createUuid = () => {
2
+ return crypto.randomUUID().replace(/-/g, '');
3
+ };
@@ -1,8 +1,8 @@
1
- import {BaseHistoryRow, QueryHistoryItem, QueryHistoryRowVariant} from '../types/history';
1
+ import {QueryListItem, QueryListRow, QueryListRowVariant} from '../types/queryList';
2
2
 
3
- export const getListKey = <T extends BaseHistoryRow>(
4
- items: QueryHistoryItem<T>[],
5
- variant: QueryHistoryRowVariant,
3
+ export const getListKey = <T extends QueryListRow>(
4
+ items: QueryListItem<T>[],
5
+ variant: QueryListRowVariant,
6
6
  ): string => {
7
7
  const itemsKey = items
8
8
  .map((item) => ('header' in item ? `h:${item.header}` : `r:${item.id}`))
@@ -1,4 +1,5 @@
1
- import {QueryHistoryFieldKey, QueryHistoryRow} from '../types/history';
1
+ import {QueryListFieldKey} from '../types/queryList';
2
+ import {QueryHistoryRow} from '../types/history';
2
3
 
3
4
  /**
4
5
  * A field is visible either when no `visibleFields` config is provided
@@ -6,14 +7,14 @@ import {QueryHistoryFieldKey, QueryHistoryRow} from '../types/history';
6
7
  * the field key is explicitly included in `visibleFields.value`.
7
8
  *
8
9
  * `visibleFields` is accepted loosely as `{value: string[]}` (rather than the
9
- * generic `QueryHistoryVisibleFieldsConfig<T>`) so this helper works for any
10
+ * generic `QueryListVisibleFieldsConfig<T>`) so this helper works for any
10
11
  * `T extends QueryHistoryRow` without fighting TS variance on generic key
11
- * unions; `field` still uses `QueryHistoryFieldKey<QueryHistoryRow>` to keep
12
+ * unions; `field` still uses `QueryListFieldKey<QueryHistoryRow>` to keep
12
13
  * typo-protection for the built-in fields checked by the row renderers.
13
14
  */
14
15
  export const isFieldVisible = (
15
16
  visibleFields: {value: string[]} | undefined,
16
- field: QueryHistoryFieldKey<QueryHistoryRow>,
17
+ field: QueryListFieldKey<QueryHistoryRow>,
17
18
  ): boolean => {
18
19
  return visibleFields === undefined || visibleFields.value.includes(field);
19
20
  };
@@ -0,0 +1,15 @@
1
+ export const isObjectEqual = (obj1: Record<string, unknown>, obj2: Record<string, unknown>) => {
2
+ const keys1 = Object.keys(obj1);
3
+ const keys2 = Object.keys(obj2);
4
+
5
+ const compareKeys = keys1.length > keys2.length ? keys1 : keys2;
6
+
7
+ for (const key of compareKeys) {
8
+ const v1 = obj1[key];
9
+ const v2 = obj2[key];
10
+
11
+ if (v1 !== v2) return false;
12
+ }
13
+
14
+ return true;
15
+ };
@@ -20,6 +20,10 @@ export const formatTimeCanonical = (ts: Date) => {
20
20
  return dateTimeParse(ts)?.format('DD.MM.YYYY, HH:mm');
21
21
  };
22
22
 
23
+ export const formatDateCanonical = (ts: Date) => {
24
+ return dateTimeParse(ts)?.format('DD.MM.YYYY');
25
+ };
26
+
23
27
  export const getTimestampFromDate = (date: Date) => {
24
28
  return dateTimeParse(date)?.valueOf();
25
29
  };
@@ -0,0 +1,14 @@
1
+ import {useEffect, useState} from 'react';
2
+
3
+ /** Delays a changing value without duplicating timer lifecycle handling in consumers. */
4
+ export function useDebouncedValue<T>(value: T, delay: number): T {
5
+ const [debouncedValue, setDebouncedValue] = useState(value);
6
+
7
+ useEffect(() => {
8
+ const timeoutId = setTimeout(() => setDebouncedValue(value), delay);
9
+
10
+ return () => clearTimeout(timeoutId);
11
+ }, [delay, value]);
12
+
13
+ return debouncedValue;
14
+ }
package/src/index.ts CHANGED
@@ -1,7 +1,12 @@
1
1
  export * from './components';
2
2
  export * from './modules';
3
3
  export * from './widgets';
4
+ export * from './types/queryList';
4
5
  export * from './types/history';
6
+ export type {SavedQuery} from './types/savedQueries';
5
7
  export * from './types/tutorial';
6
8
  export * from './types/navigation';
7
9
  export * from './types/pathEditor';
10
+ export * from './types/errorTree';
11
+ export * from './types/queryStatistics';
12
+ export * from './types/queryResults';
@@ -0,0 +1,10 @@
1
+ .qp-attachments {
2
+ &__panel {
3
+ flex: 1;
4
+ }
5
+
6
+ &__tab .g-tab__title {
7
+ display: flex;
8
+ gap: var(--g-spacing-2)
9
+ }
10
+ }
@@ -0,0 +1,112 @@
1
+ import React, {useState} from 'react';
2
+ import type {Meta, StoryObj} from '@storybook/react';
3
+ import {fn} from 'storybook/test';
4
+ import {Attachments} from './Attachments';
5
+
6
+ type AttachmentsProps = React.ComponentProps<typeof Attachments>;
7
+ type Attachment = NonNullable<AttachmentsProps['attachments']>[number];
8
+
9
+ const attachments: Attachment[] = [
10
+ {id: 'readme', name: 'README.md'},
11
+ {id: 'query', name: 'daily-report.sql'},
12
+ {
13
+ id: 'documentation',
14
+ name: 'Query documentation',
15
+ link: 'https://example.com/docs/query',
16
+ token: 'documentation-token',
17
+ },
18
+ ];
19
+
20
+ const deletedAttachments: Attachment[] = [
21
+ {id: 'archive', name: 'archive.csv'},
22
+ {
23
+ id: 'old-dashboard',
24
+ name: 'Old dashboard',
25
+ link: 'https://example.com/dashboards/old',
26
+ token: 'dashboard-token',
27
+ },
28
+ ];
29
+
30
+ const tokens: NonNullable<AttachmentsProps['tokens']> = [
31
+ {value: 'documentation-token', title: 'Documentation token'},
32
+ {value: 'dashboard-token', title: 'Dashboard token'},
33
+ ];
34
+
35
+ const meta = {
36
+ title: 'Modules/Attachments',
37
+ component: Attachments,
38
+ tags: ['autodocs'],
39
+ parameters: {
40
+ layout: 'padded',
41
+ },
42
+ decorators: [
43
+ (Story) => (
44
+ <div style={{height: 500, width: 322}}>
45
+ <Story />
46
+ </div>
47
+ ),
48
+ ],
49
+ args: {
50
+ tokens,
51
+ onChange: fn(),
52
+ },
53
+ } satisfies Meta<typeof Attachments>;
54
+
55
+ export default meta;
56
+ type Story = StoryObj<typeof meta>;
57
+
58
+ /** Empty state with content configured through `placeholderProps`. */
59
+ export const Default: Story = {
60
+ args: {
61
+ placeholderProps: {
62
+ title: 'No attachments',
63
+ description: 'Add files or links that should be available to the query.',
64
+ linkForDoc: '#attachments-help',
65
+ linkText: 'About attachments',
66
+ },
67
+ },
68
+ };
69
+
70
+ /** Initial files and links supplied through the uncontrolled `attachments` API. */
71
+ export const WithAttachments: Story = {
72
+ args: {
73
+ attachments,
74
+ },
75
+ };
76
+
77
+ /** Current and deleted collections. Open the Deleted tab to restore an attachment. */
78
+ export const WithDeletedAttachments: Story = {
79
+ args: {
80
+ attachments,
81
+ deletedAttachments,
82
+ },
83
+ };
84
+
85
+ const ControlledAttachments = (props: AttachmentsProps) => {
86
+ const [currentAttachments, setCurrentAttachments] = useState(props.attachments ?? []);
87
+ const [currentDeletedAttachments, setCurrentDeletedAttachments] = useState(
88
+ props.deletedAttachments ?? [],
89
+ );
90
+
91
+ return (
92
+ <Attachments
93
+ {...props}
94
+ attachments={currentAttachments}
95
+ deletedAttachments={currentDeletedAttachments}
96
+ onChange={(payload) => {
97
+ setCurrentAttachments(payload.attachments);
98
+ setCurrentDeletedAttachments(payload.deletedAttachments);
99
+ props.onChange?.(payload);
100
+ }}
101
+ />
102
+ );
103
+ };
104
+
105
+ /** Controlled usage: every edit, delete, restore, or addition is applied from `onChange`. */
106
+ export const Controlled: Story = {
107
+ args: {
108
+ attachments,
109
+ deletedAttachments,
110
+ },
111
+ render: (args) => <ControlledAttachments {...args} />,
112
+ };
@@ -0,0 +1,336 @@
1
+ import React, {useMemo, useRef, useState} from 'react';
2
+ import {Button, Flex, Icon, Tab, TabList, TabPanel, TabProvider, Text} from '@gravity-ui/uikit';
3
+ import {AttachmentList, AttachmentListPlaceholder, EditAttachmentItem} from '../../components';
4
+ import {createUuid} from '../../helpers/createUuid';
5
+ import {isObjectEqual} from '../../helpers/isObjectEqual';
6
+ import {Plus} from '@gravity-ui/icons';
7
+ import type {
8
+ AttachmentItemProps,
9
+ AttachmentListPlaceholderProps,
10
+ AttachmentListProps,
11
+ EditLinkValues,
12
+ } from '../../components';
13
+ import cn from 'bem-cn-lite';
14
+
15
+ import i18n from './i18n';
16
+
17
+ import './Attachments.scss';
18
+
19
+ type TabVariants = 'Current' | 'Deleted';
20
+
21
+ export type AttachItem = AttachmentItemProps['attachment'] & {token?: string; isNew?: boolean};
22
+
23
+ export type AttachmentsProps = {
24
+ tokens?: {value: string; title: string}[];
25
+ placeholderProps?: Omit<AttachmentListPlaceholderProps, 'onAddFile' | 'onAddLink'>;
26
+ attachmentListProps?: Pick<AttachmentListProps, 'className'>;
27
+ attachments?: AttachItem[];
28
+ deletedAttachments?: AttachItem[];
29
+ onChange?: (payload: {attachments: AttachItem[]; deletedAttachments: AttachItem[]}) => void;
30
+ };
31
+
32
+ const block = cn('qp-attachments');
33
+
34
+ export const Attachments = ({
35
+ tokens,
36
+ placeholderProps,
37
+ attachmentListProps,
38
+ onChange,
39
+ attachments: customerAttachments,
40
+ deletedAttachments: customerDeletedAttachments,
41
+ }: AttachmentsProps) => {
42
+ const [currentTab, setCurrentTab] = useState<'Current' | 'Deleted'>('Current');
43
+
44
+ const [innerAttachList, setInnerAttachList] = useState<AttachItem[]>(customerAttachments ?? []);
45
+ const [innerDeletedAttachList, setInnerDeletedAttachList] = useState<AttachItem[]>(
46
+ customerDeletedAttachments ?? [],
47
+ );
48
+
49
+ const [editingIds, setEditingIds] = useState<string[]>([]);
50
+ const [wasAddedIds, setWasAddedIds] = useState<string[]>([]);
51
+ const [wasEdited, setWasEditedIds] = useState<string[]>([]);
52
+
53
+ const attachList = customerAttachments ?? innerAttachList;
54
+ const deletedAttachList = customerDeletedAttachments ?? innerDeletedAttachList;
55
+
56
+ const attachCount = useMemo(() => attachList.filter((a) => !a.isNew).length, [attachList]);
57
+
58
+ const defaultAttachList = useRef(attachList);
59
+
60
+ const getDefaultValuesForLink = (linkId: string) => {
61
+ const currentLink = attachList.find((a) => a.id === linkId);
62
+ return {
63
+ name: currentLink?.name ?? '',
64
+ link: currentLink?.link ?? '',
65
+ token: currentLink?.token ?? '',
66
+ };
67
+ };
68
+
69
+ const runAfterAttachAdded = (attachId: string, newAttach: AttachItem) => {
70
+ const editedAttach = defaultAttachList.current.find((a) => a.id === attachId);
71
+
72
+ if (!editedAttach) return;
73
+
74
+ if (isObjectEqual(editedAttach, newAttach)) {
75
+ setWasEditedIds(wasEdited.filter((id) => id !== attachId));
76
+ return;
77
+ }
78
+
79
+ setWasEditedIds([...wasEdited, attachId]);
80
+ };
81
+
82
+ const handleAddEmptyFile = () => {
83
+ const id = createUuid();
84
+
85
+ const patchAttachList = [
86
+ ...attachList.filter((a) => !a.isNew),
87
+ {id, name: '', isNew: true},
88
+ ];
89
+
90
+ setInnerAttachList(patchAttachList);
91
+ setWasAddedIds([...wasAddedIds, id]);
92
+ setEditingIds([...editingIds, id]);
93
+
94
+ onChange?.({
95
+ attachments: patchAttachList,
96
+ deletedAttachments: deletedAttachList,
97
+ });
98
+ };
99
+
100
+ const handleAddEmptyLink = () => {
101
+ const id = createUuid();
102
+
103
+ const patchAttachList = [
104
+ ...attachList.filter((a) => !a.isNew),
105
+ {id, name: '', token: '', link: '', isNew: true},
106
+ ];
107
+
108
+ setInnerAttachList(patchAttachList);
109
+ setWasAddedIds([...wasAddedIds, id]);
110
+ setEditingIds([...editingIds, id]);
111
+
112
+ onChange?.({
113
+ attachments: patchAttachList,
114
+ deletedAttachments: deletedAttachList,
115
+ });
116
+ };
117
+
118
+ const handleAcceptFile = (fileId: string, fileName: string) => {
119
+ const patchedFile = attachList.find((a) => a.id === fileId);
120
+ if (!patchedFile) return;
121
+
122
+ const patchEditingIds = editingIds.filter((id) => id !== fileId);
123
+ const patchAttachList = attachList.map((attach) => {
124
+ if (attach.id === fileId) return {id: fileId, name: fileName};
125
+ return attach;
126
+ });
127
+
128
+ setEditingIds(patchEditingIds);
129
+ setInnerAttachList(patchAttachList);
130
+
131
+ onChange?.({
132
+ attachments: patchAttachList,
133
+ deletedAttachments: deletedAttachList,
134
+ });
135
+
136
+ runAfterAttachAdded(fileId, {id: fileId, name: fileName});
137
+ };
138
+
139
+ const handleAcceptLink = (linkId: string, link: EditLinkValues) => {
140
+ const patchedLink = attachList.find((a) => a.id === linkId);
141
+ if (!patchedLink) return;
142
+
143
+ const patchEditingIds = editingIds.filter((id) => id !== linkId);
144
+ const patchAttachList = attachList.map((attach) => {
145
+ if (attach.id === linkId) return {id: linkId, ...link};
146
+ return attach;
147
+ });
148
+
149
+ setEditingIds(patchEditingIds);
150
+ setInnerAttachList(patchAttachList);
151
+
152
+ onChange?.({
153
+ attachments: patchAttachList,
154
+ deletedAttachments: deletedAttachList,
155
+ });
156
+
157
+ runAfterAttachAdded(linkId, {id: linkId, ...link});
158
+ };
159
+
160
+ const handleCancelEdit = (fileId: string) => {
161
+ const patchEditingIds = editingIds.filter((id) => id !== fileId);
162
+ const patchAttachList = attachList.filter((a) => !a.isNew);
163
+
164
+ const wasItNewAttach = attachList.some((a) => a.isNew);
165
+ if (wasItNewAttach) {
166
+ setWasAddedIds(wasAddedIds.filter((id) => id !== fileId));
167
+ }
168
+
169
+ setInnerAttachList(patchAttachList);
170
+ setEditingIds(patchEditingIds);
171
+
172
+ onChange?.({
173
+ attachments: patchAttachList,
174
+ deletedAttachments: deletedAttachList,
175
+ });
176
+ };
177
+
178
+ const handleEdit = (editAttachId: string) => {
179
+ const patchEditingIds = [...editingIds, editAttachId];
180
+
181
+ setEditingIds(patchEditingIds);
182
+ };
183
+
184
+ const handleDelete = (attachId: string) => {
185
+ const deletedAttachmen = attachList.find((a) => a.id === attachId);
186
+
187
+ if (!deletedAttachmen) return;
188
+
189
+ const patchAttachList = attachList.filter((a) => a.id !== attachId);
190
+ const patchDeletedAttachList = [...deletedAttachList, deletedAttachmen];
191
+
192
+ setInnerAttachList(patchAttachList);
193
+ setInnerDeletedAttachList(patchDeletedAttachList);
194
+
195
+ onChange?.({
196
+ attachments: patchAttachList,
197
+ deletedAttachments: patchDeletedAttachList,
198
+ });
199
+ };
200
+
201
+ const handleDeleteAll = () => {
202
+ const patchAttachList: never[] = [];
203
+ const patchDeletedAttachList = [
204
+ ...deletedAttachList,
205
+ ...attachList.filter((a) => !a.isNew),
206
+ ];
207
+
208
+ setInnerAttachList(patchAttachList);
209
+ setInnerDeletedAttachList(patchDeletedAttachList);
210
+
211
+ onChange?.({
212
+ attachments: patchAttachList,
213
+ deletedAttachments: patchDeletedAttachList,
214
+ });
215
+ };
216
+
217
+ const handleRevertDelete = (attachId: string) => {
218
+ const revertAttach = deletedAttachList.find((a) => a.id === attachId);
219
+
220
+ if (!revertAttach) return;
221
+
222
+ const patchAttachList = [...attachList, revertAttach];
223
+ const patchDeletedAttachList = deletedAttachList.filter((a) => a.id !== attachId);
224
+
225
+ setInnerAttachList(patchAttachList);
226
+ setInnerDeletedAttachList(patchDeletedAttachList);
227
+
228
+ onChange?.({
229
+ attachments: patchAttachList,
230
+ deletedAttachments: patchDeletedAttachList,
231
+ });
232
+ };
233
+
234
+ return (
235
+ <Flex className={block()} direction="column" width="100%" height="100%">
236
+ <TabProvider value={currentTab} onUpdate={(tab) => setCurrentTab(tab as TabVariants)}>
237
+ <TabList>
238
+ <Tab className={block('tab')} value="Current">
239
+ <Text variant="body-1">Current</Text>
240
+ <Text color="hint" variant="body-1">
241
+ {attachCount}
242
+ </Text>
243
+ </Tab>
244
+ <Tab className={block('tab')} value="Deleted">
245
+ <Text variant="body-1">Deleted</Text>
246
+ <Text color="hint" variant="body-1">
247
+ {deletedAttachList.length}
248
+ </Text>
249
+ </Tab>
250
+ </TabList>
251
+
252
+ <TabPanel className={block('panel')} value="Current">
253
+ <Flex spacing={{pt: 3}} direction="column" width="100%" height="100%">
254
+ {attachList.length ? (
255
+ <AttachmentList
256
+ {...attachmentListProps}
257
+ attachments={attachList}
258
+ wasAddedIds={wasAddedIds}
259
+ wasEditedIds={wasEdited}
260
+ editingIds={editingIds}
261
+ onEdit={(attach) => handleEdit(attach.id)}
262
+ onDelete={(attach) => handleDelete(attach.id)}
263
+ renderEditForm={(attach) => {
264
+ const isLink = typeof attach.link === 'string';
265
+
266
+ if (isLink) {
267
+ const defaultLinkValues = getDefaultValuesForLink(
268
+ attach.id,
269
+ );
270
+
271
+ return (
272
+ <EditAttachmentItem
273
+ type="link"
274
+ onAccept={(link) =>
275
+ handleAcceptLink(attach.id, link)
276
+ }
277
+ defaultValues={defaultLinkValues}
278
+ tokens={tokens}
279
+ onCancel={() => handleCancelEdit(attach.id)}
280
+ />
281
+ );
282
+ }
283
+
284
+ return (
285
+ <EditAttachmentItem
286
+ type="file"
287
+ defaultFileName={attach.name}
288
+ onAccept={(pathName) =>
289
+ handleAcceptFile(attach.id, pathName)
290
+ }
291
+ onCancel={() => handleCancelEdit(attach.id)}
292
+ />
293
+ );
294
+ }}
295
+ />
296
+ ) : (
297
+ <AttachmentListPlaceholder
298
+ onAddFile={handleAddEmptyFile}
299
+ onAddLink={handleAddEmptyLink}
300
+ {...placeholderProps}
301
+ />
302
+ )}
303
+ {Boolean(attachList.length) && (
304
+ <Flex gap={2}>
305
+ <Button onClick={handleAddEmptyFile}>
306
+ <Icon data={Plus} />
307
+ {i18n('action_add-file')}
308
+ </Button>
309
+
310
+ <Button view="outlined" onClick={handleAddEmptyLink}>
311
+ <Icon data={Plus} />
312
+ {i18n('action_add-link')}
313
+ </Button>
314
+
315
+ <Button view="flat" onClick={handleDeleteAll}>
316
+ {i18n('action_remove-all')}
317
+ </Button>
318
+ </Flex>
319
+ )}
320
+ </Flex>
321
+ </TabPanel>
322
+
323
+ <TabPanel className={block('panel')} value="Deleted">
324
+ <Flex spacing={{pt: 3}} width="100%" height="100%">
325
+ <AttachmentList
326
+ {...attachmentListProps}
327
+ isDeleted
328
+ attachments={deletedAttachList}
329
+ onRevert={(attach) => handleRevertDelete(attach.id)}
330
+ />
331
+ </Flex>
332
+ </TabPanel>
333
+ </TabProvider>
334
+ </Flex>
335
+ );
336
+ };
@@ -0,0 +1,4 @@
1
+ import en from './en.json';
2
+ import ru from './ru.json';
3
+
4
+ export default {en, ru};
@@ -0,0 +1,5 @@
1
+ {
2
+ "action_add-file": "File",
3
+ "action_add-link": "Link",
4
+ "action_remove-all": "Remove all"
5
+ }
@@ -0,0 +1,5 @@
1
+ import {addI18Keysets} from '../../../i18n';
2
+
3
+ import dicts from './dicts';
4
+
5
+ export default addI18Keysets('qp:attachments', dicts);
@@ -0,0 +1,5 @@
1
+ {
2
+ "action_add-file": "Файл",
3
+ "action_add-link": "Ссылка",
4
+ "action_remove-all": "Удалить все"
5
+ }
@@ -0,0 +1,2 @@
1
+ export {Attachments} from './Attachments';
2
+ export type {AttachmentsProps, AttachItem} from './Attachments';
@@ -1,4 +1,4 @@
1
- .qp-query-history-comparison-action {
1
+ .qp-history-comparison-actions {
2
2
  padding: 12px 20px;
3
3
  background: var(--g-color-base-background);
4
- }
4
+ }
@@ -1,22 +1,22 @@
1
1
  import React from 'react';
2
2
  import {Button, Flex, Icon} from '@gravity-ui/uikit';
3
- import {QueryHistoryComparisonConfig, QueryHistoryRow} from '../../types/history';
4
- import ArrowRotateRightIcon from '@gravity-ui/icons/svgs/arrow-rotate-right.svg';
5
3
  import ArrowRightArrowLeftIcon from '@gravity-ui/icons/svgs/arrow-right-arrow-left.svg';
6
- import './ComparisonActions.scss';
4
+ import ArrowRotateRightIcon from '@gravity-ui/icons/svgs/arrow-rotate-right.svg';
5
+ import {QueryListComparisonConfig, QueryListRow} from '../../types/queryList';
7
6
  import cn from 'bem-cn-lite';
7
+ import './HistoryComparisonActions.scss';
8
8
 
9
- type Props<T extends QueryHistoryRow> = {
10
- comparison: QueryHistoryComparisonConfig<T>;
9
+ export type HistoryComparisonActionsProps<T extends QueryListRow = QueryListRow> = {
10
+ comparison: QueryListComparisonConfig<T>;
11
11
  className?: string;
12
12
  };
13
13
 
14
- const block = cn('qp-query-history-comparison-action');
14
+ const block = cn('qp-history-comparison-actions');
15
15
 
16
- export const ComparisonActions = <T extends QueryHistoryRow>({
16
+ export const HistoryComparisonActions = <T extends QueryListRow>({
17
17
  comparison: {enabled, comparedRowIds, onCompare, onCancel},
18
18
  className,
19
- }: Props<T>) => {
19
+ }: HistoryComparisonActionsProps<T>) => {
20
20
  if (!enabled) return null;
21
21
 
22
22
  return (
@@ -0,0 +1,2 @@
1
+ export {HistoryComparisonActions} from './HistoryComparisonActions';
2
+ export type {HistoryComparisonActionsProps} from './HistoryComparisonActions';
@@ -1,13 +1,13 @@
1
1
  import React, {FC, useEffect, useState} from 'react';
2
2
  import {FullSearchToggleButton} from './internal/FullSearchToggleButton';
3
3
  import {HistoryFilter, SearchWithButtons} from '../../components';
4
- import {QueryHistoryFilterConfig} from '../../types/history';
4
+ import {QueryListFilterConfig} from '../../types/queryList';
5
5
 
6
6
  type Props = {
7
7
  search?: string;
8
8
  fullSearch?: boolean;
9
9
  hasClear?: boolean;
10
- filter?: QueryHistoryFilterConfig;
10
+ filter?: QueryListFilterConfig;
11
11
  onUpdate: (data: {value: string; fullSearch: boolean}) => void;
12
12
  className?: string;
13
13
  };
@@ -1,7 +1,8 @@
1
1
  import React from 'react';
2
2
  import type {Meta, StoryObj} from '@storybook/react';
3
3
  import {HistoryRow} from './HistoryRow';
4
- import {QueryHistoryRow, QueryHistoryRowAction} from '../../types/history';
4
+ import {QueryListRowAction} from '../../types/queryList';
5
+ import {QueryHistoryRow} from '../../types/history';
5
6
 
6
7
  const now = Date.now();
7
8
  const min = 60 * 1000;
@@ -19,7 +20,7 @@ const makeRow = (overrides: Partial<QueryHistoryRow>): QueryHistoryRow => ({
19
20
  ...overrides,
20
21
  });
21
22
 
22
- const defaultActions: Array<QueryHistoryRowAction<QueryHistoryRow>> = [
23
+ const defaultActions: Array<QueryListRowAction<QueryHistoryRow>> = [
23
24
  {text: 'Run again', onClick: (row) => alert(`Run: ${row.title}`)},
24
25
  {text: 'Copy', onClick: (row) => alert(`Copy: ${row.title}`)},
25
26
  {text: 'Delete', onClick: (row) => alert(`Delete: ${row.title}`)},