@gravity-ui/querieskit 1.2.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (973) hide show
  1. package/build/cjs/components/AttachmentList/AttachmentList.css +22 -0
  2. package/build/cjs/components/AttachmentList/AttachmentList.css.map +1 -0
  3. package/build/cjs/components/AttachmentList/AttachmentList.d.ts +17 -0
  4. package/build/cjs/components/AttachmentList/AttachmentList.js +75 -0
  5. package/build/cjs/components/AttachmentList/AttachmentList.js.map +1 -0
  6. package/build/cjs/components/AttachmentList/AttachmentList.stories.d.ts +93 -0
  7. package/build/cjs/components/AttachmentList/AttachmentList.stories.js +323 -0
  8. package/build/cjs/components/AttachmentList/AttachmentList.stories.js.map +1 -0
  9. package/build/cjs/components/AttachmentList/helpers/getIconByAttachmentName.d.ts +2 -0
  10. package/build/cjs/components/AttachmentList/helpers/getIconByAttachmentName.js +36 -0
  11. package/build/cjs/components/AttachmentList/helpers/getIconByAttachmentName.js.map +1 -0
  12. package/build/cjs/components/AttachmentList/helpers/objectLinkValidator.d.ts +11 -0
  13. package/build/cjs/components/AttachmentList/helpers/objectLinkValidator.js +30 -0
  14. package/build/cjs/components/AttachmentList/helpers/objectLinkValidator.js.map +1 -0
  15. package/build/cjs/components/AttachmentList/helpers/stringRequiredValidator.d.ts +2 -0
  16. package/build/cjs/components/AttachmentList/helpers/stringRequiredValidator.js +26 -0
  17. package/build/cjs/components/AttachmentList/helpers/stringRequiredValidator.js.map +1 -0
  18. package/build/cjs/components/AttachmentList/hooks/useKeyDownFormControl.d.ts +4 -0
  19. package/build/cjs/components/AttachmentList/hooks/useKeyDownFormControl.js +27 -0
  20. package/build/cjs/components/AttachmentList/hooks/useKeyDownFormControl.js.map +1 -0
  21. package/build/cjs/components/AttachmentList/hooks/useLabelRef.d.ts +4 -0
  22. package/build/cjs/components/AttachmentList/hooks/useLabelRef.js +35 -0
  23. package/build/cjs/components/AttachmentList/hooks/useLabelRef.js.map +1 -0
  24. package/build/cjs/components/AttachmentList/i18n/dicts.d.ts +23 -0
  25. package/build/cjs/components/AttachmentList/i18n/dicts.js +14 -0
  26. package/build/cjs/components/AttachmentList/i18n/dicts.js.map +1 -0
  27. package/build/cjs/components/AttachmentList/i18n/en.json +10 -0
  28. package/build/cjs/components/AttachmentList/i18n/index.d.ts +6 -0
  29. package/build/cjs/components/AttachmentList/i18n/index.js +11 -0
  30. package/build/cjs/components/AttachmentList/i18n/index.js.map +1 -0
  31. package/build/cjs/components/AttachmentList/i18n/ru.json +10 -0
  32. package/build/cjs/components/AttachmentList/index.d.ts +4 -0
  33. package/build/cjs/components/AttachmentList/index.js +40 -0
  34. package/build/cjs/components/AttachmentList/index.js.map +1 -0
  35. package/build/cjs/components/AttachmentList/internal/AttachmentItem/AttachmentItem.css +18 -0
  36. package/build/cjs/components/AttachmentList/internal/AttachmentItem/AttachmentItem.css.map +1 -0
  37. package/build/cjs/components/AttachmentList/internal/AttachmentItem/AttachmentItem.d.ts +16 -0
  38. package/build/cjs/components/AttachmentList/internal/AttachmentItem/AttachmentItem.js +106 -0
  39. package/build/cjs/components/AttachmentList/internal/AttachmentItem/AttachmentItem.js.map +1 -0
  40. package/build/cjs/components/AttachmentList/internal/AttachmentItem/index.d.ts +2 -0
  41. package/build/cjs/components/AttachmentList/internal/AttachmentItem/index.js +13 -0
  42. package/build/cjs/components/AttachmentList/internal/AttachmentItem/index.js.map +1 -0
  43. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/EditAttachmentItem.d.ts +9 -0
  44. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/EditAttachmentItem.js +22 -0
  45. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/EditAttachmentItem.js.map +1 -0
  46. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.css +17 -0
  47. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.css.map +1 -0
  48. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.d.ts +24 -0
  49. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.js +175 -0
  50. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.js.map +1 -0
  51. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/FileEdit.d.ts +12 -0
  52. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/FileEdit.js +91 -0
  53. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/FileEdit.js.map +1 -0
  54. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/index.d.ts +4 -0
  55. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/index.js +13 -0
  56. package/build/cjs/components/AttachmentList/internal/EditAttachmentItem/index.js.map +1 -0
  57. package/build/cjs/components/AttachmentListPlaceholder/AttachmentListPlaceholder.css +4 -0
  58. package/build/cjs/components/AttachmentListPlaceholder/AttachmentListPlaceholder.css.map +1 -0
  59. package/build/cjs/components/AttachmentListPlaceholder/AttachmentListPlaceholder.d.ts +13 -0
  60. package/build/cjs/components/AttachmentListPlaceholder/AttachmentListPlaceholder.js +75 -0
  61. package/build/cjs/components/AttachmentListPlaceholder/AttachmentListPlaceholder.js.map +1 -0
  62. package/build/cjs/components/AttachmentListPlaceholder/AttachmentListPlaceholder.stories.d.ts +29 -0
  63. package/build/cjs/components/AttachmentListPlaceholder/AttachmentListPlaceholder.stories.js +36 -0
  64. package/build/cjs/components/AttachmentListPlaceholder/AttachmentListPlaceholder.stories.js.map +1 -0
  65. package/build/cjs/components/AttachmentListPlaceholder/i18n/dicts.d.ts +17 -0
  66. package/build/cjs/components/AttachmentListPlaceholder/i18n/dicts.js +14 -0
  67. package/build/cjs/components/AttachmentListPlaceholder/i18n/dicts.js.map +1 -0
  68. package/build/cjs/components/AttachmentListPlaceholder/i18n/en.json +7 -0
  69. package/build/cjs/components/AttachmentListPlaceholder/i18n/index.d.ts +6 -0
  70. package/build/cjs/components/AttachmentListPlaceholder/i18n/index.js +11 -0
  71. package/build/cjs/components/AttachmentListPlaceholder/i18n/index.js.map +1 -0
  72. package/build/cjs/components/AttachmentListPlaceholder/i18n/ru.json +7 -0
  73. package/build/cjs/components/AttachmentListPlaceholder/index.d.ts +2 -0
  74. package/build/cjs/components/AttachmentListPlaceholder/index.js +13 -0
  75. package/build/cjs/components/AttachmentListPlaceholder/index.js.map +1 -0
  76. package/build/cjs/components/DataTable/DataTable.css +0 -7
  77. package/build/cjs/components/DataTable/DataTable.css.map +1 -1
  78. package/build/cjs/components/DataTable/DataTable.js +12 -5
  79. package/build/cjs/components/DataTable/DataTable.js.map +1 -1
  80. package/build/cjs/components/ErrorTree/ErrorTree.d.ts +3 -0
  81. package/build/cjs/components/ErrorTree/ErrorTree.js +35 -0
  82. package/build/cjs/components/ErrorTree/ErrorTree.js.map +1 -0
  83. package/build/cjs/components/ErrorTree/ErrorTree.stories.d.ts +8 -0
  84. package/build/cjs/components/ErrorTree/ErrorTree.stories.js +101 -0
  85. package/build/cjs/components/ErrorTree/ErrorTree.stories.js.map +1 -0
  86. package/build/cjs/components/ErrorTree/helpers/formatAttributes.d.ts +2 -0
  87. package/build/cjs/components/ErrorTree/helpers/formatAttributes.js +16 -0
  88. package/build/cjs/components/ErrorTree/helpers/formatAttributes.js.map +1 -0
  89. package/build/cjs/components/ErrorTree/helpers/getIntermediateChain.d.ts +6 -0
  90. package/build/cjs/components/ErrorTree/helpers/getIntermediateChain.js +22 -0
  91. package/build/cjs/components/ErrorTree/helpers/getIntermediateChain.js.map +1 -0
  92. package/build/cjs/components/ErrorTree/i18n/dicts.d.ts +27 -0
  93. package/build/cjs/components/ErrorTree/i18n/dicts.js +14 -0
  94. package/build/cjs/components/ErrorTree/i18n/dicts.js.map +1 -0
  95. package/build/cjs/components/ErrorTree/i18n/en.json +11 -0
  96. package/build/cjs/components/ErrorTree/i18n/index.d.ts +6 -0
  97. package/build/cjs/components/ErrorTree/i18n/index.js +11 -0
  98. package/build/cjs/components/ErrorTree/i18n/index.js.map +1 -0
  99. package/build/cjs/components/ErrorTree/i18n/ru.json +13 -0
  100. package/build/cjs/components/ErrorTree/index.d.ts +1 -0
  101. package/build/cjs/components/ErrorTree/index.js +13 -0
  102. package/build/cjs/components/ErrorTree/index.js.map +1 -0
  103. package/build/cjs/components/ErrorTree/internal/ErrorTreeChildren.css +4 -0
  104. package/build/cjs/components/ErrorTree/internal/ErrorTreeChildren.css.map +1 -0
  105. package/build/cjs/components/ErrorTree/internal/ErrorTreeChildren.d.ts +10 -0
  106. package/build/cjs/components/ErrorTree/internal/ErrorTreeChildren.js +32 -0
  107. package/build/cjs/components/ErrorTree/internal/ErrorTreeChildren.js.map +1 -0
  108. package/build/cjs/components/ErrorTree/internal/ErrorTreeNode.css +80 -0
  109. package/build/cjs/components/ErrorTree/internal/ErrorTreeNode.css.map +1 -0
  110. package/build/cjs/components/ErrorTree/internal/ErrorTreeNode.d.ts +13 -0
  111. package/build/cjs/components/ErrorTree/internal/ErrorTreeNode.js +274 -0
  112. package/build/cjs/components/ErrorTree/internal/ErrorTreeNode.js.map +1 -0
  113. package/build/cjs/components/ErrorTree/internal/IntermediateMessages.css +10 -0
  114. package/build/cjs/components/ErrorTree/internal/IntermediateMessages.css.map +1 -0
  115. package/build/cjs/components/ErrorTree/internal/IntermediateMessages.d.ts +9 -0
  116. package/build/cjs/components/ErrorTree/internal/IntermediateMessages.js +118 -0
  117. package/build/cjs/components/ErrorTree/internal/IntermediateMessages.js.map +1 -0
  118. package/build/cjs/components/Icons/LogoCPlusPlus.d.ts +2 -0
  119. package/build/cjs/components/Icons/LogoCPlusPlus.js +35 -0
  120. package/build/cjs/components/Icons/LogoCPlusPlus.js.map +1 -0
  121. package/build/cjs/components/Icons/index.d.ts +1 -0
  122. package/build/cjs/components/Icons/index.js +13 -0
  123. package/build/cjs/components/Icons/index.js.map +1 -0
  124. package/build/cjs/components/QueryResultsTable/QueryResultsTable.css +53 -0
  125. package/build/cjs/components/QueryResultsTable/QueryResultsTable.css.map +1 -0
  126. package/build/cjs/components/QueryResultsTable/QueryResultsTable.d.ts +24 -0
  127. package/build/cjs/components/QueryResultsTable/QueryResultsTable.js +104 -0
  128. package/build/cjs/components/QueryResultsTable/QueryResultsTable.js.map +1 -0
  129. package/build/cjs/components/QueryResultsTable/helpers/formatQueryResultType.d.ts +3 -0
  130. package/build/cjs/components/QueryResultsTable/helpers/formatQueryResultType.js +90 -0
  131. package/build/cjs/components/QueryResultsTable/helpers/formatQueryResultType.js.map +1 -0
  132. package/build/cjs/components/QueryResultsTable/helpers/formatQueryResultValue.d.ts +11 -0
  133. package/build/cjs/components/QueryResultsTable/helpers/formatQueryResultValue.js +40 -0
  134. package/build/cjs/components/QueryResultsTable/helpers/formatQueryResultValue.js.map +1 -0
  135. package/build/cjs/components/QueryResultsTable/i18n/dicts.d.ts +13 -0
  136. package/build/cjs/components/QueryResultsTable/i18n/dicts.js +14 -0
  137. package/build/cjs/components/QueryResultsTable/i18n/dicts.js.map +1 -0
  138. package/build/cjs/components/QueryResultsTable/i18n/en.json +5 -0
  139. package/build/cjs/components/QueryResultsTable/i18n/index.d.ts +6 -0
  140. package/build/cjs/components/QueryResultsTable/i18n/index.js +11 -0
  141. package/build/cjs/components/QueryResultsTable/i18n/index.js.map +1 -0
  142. package/build/cjs/components/QueryResultsTable/i18n/ru.json +5 -0
  143. package/build/cjs/components/QueryResultsTable/index.d.ts +3 -0
  144. package/build/cjs/components/QueryResultsTable/index.js +20 -0
  145. package/build/cjs/components/QueryResultsTable/index.js.map +1 -0
  146. package/build/cjs/components/QueryResultsTable/internal/QueryResultCell.d.ts +11 -0
  147. package/build/cjs/components/QueryResultsTable/internal/QueryResultCell.js +79 -0
  148. package/build/cjs/components/QueryResultsTable/internal/QueryResultCell.js.map +1 -0
  149. package/build/cjs/components/index.d.ts +5 -0
  150. package/build/cjs/components/index.js +48 -1
  151. package/build/cjs/components/index.js.map +1 -1
  152. package/build/cjs/helpers/createUuid.d.ts +1 -0
  153. package/build/cjs/helpers/createUuid.js +12 -0
  154. package/build/cjs/helpers/createUuid.js.map +1 -0
  155. package/build/cjs/helpers/isObjectEqual.d.ts +1 -0
  156. package/build/cjs/helpers/isObjectEqual.js +30 -0
  157. package/build/cjs/helpers/isObjectEqual.js.map +1 -0
  158. package/build/cjs/helpers/useDebouncedValue.d.ts +2 -0
  159. package/build/cjs/helpers/useDebouncedValue.js +27 -0
  160. package/build/cjs/helpers/useDebouncedValue.js.map +1 -0
  161. package/build/cjs/index.d.ts +3 -0
  162. package/build/cjs/index.js +33 -0
  163. package/build/cjs/index.js.map +1 -1
  164. package/build/cjs/modules/Attachments/Attachments.css +8 -0
  165. package/build/cjs/modules/Attachments/Attachments.css.map +1 -0
  166. package/build/cjs/modules/Attachments/Attachments.d.ts +22 -0
  167. package/build/cjs/modules/Attachments/Attachments.js +381 -0
  168. package/build/cjs/modules/Attachments/Attachments.js.map +1 -0
  169. package/build/cjs/modules/Attachments/Attachments.stories.d.ts +41 -0
  170. package/build/cjs/modules/Attachments/Attachments.stories.js +123 -0
  171. package/build/cjs/modules/Attachments/Attachments.stories.js.map +1 -0
  172. package/build/cjs/modules/Attachments/i18n/dicts.d.ts +13 -0
  173. package/build/cjs/modules/Attachments/i18n/dicts.js +14 -0
  174. package/build/cjs/modules/Attachments/i18n/dicts.js.map +1 -0
  175. package/build/cjs/modules/Attachments/i18n/en.json +5 -0
  176. package/build/cjs/modules/Attachments/i18n/index.d.ts +6 -0
  177. package/build/cjs/modules/Attachments/i18n/index.js +11 -0
  178. package/build/cjs/modules/Attachments/i18n/index.js.map +1 -0
  179. package/build/cjs/modules/Attachments/i18n/ru.json +5 -0
  180. package/build/cjs/modules/Attachments/index.d.ts +2 -0
  181. package/build/cjs/modules/Attachments/index.js +13 -0
  182. package/build/cjs/modules/Attachments/index.js.map +1 -0
  183. package/build/cjs/modules/HistoryLayout/HistoryLayout.d.ts +1 -1
  184. package/build/cjs/modules/HistoryLayout/HistoryLayout.js +1 -1
  185. package/build/cjs/modules/HistoryLayout/HistoryLayout.js.map +1 -1
  186. package/build/cjs/modules/NavigationPreview/NavigationPreview.css +7 -1
  187. package/build/cjs/modules/NavigationPreview/NavigationPreview.css.map +1 -1
  188. package/build/cjs/modules/NavigationPreview/NavigationPreview.d.ts +2 -2
  189. package/build/cjs/modules/NavigationPreview/NavigationPreview.js +37 -7
  190. package/build/cjs/modules/NavigationPreview/NavigationPreview.js.map +1 -1
  191. package/build/cjs/modules/NavigationPreview/story/NavigationPreview.stories.d.ts +1 -0
  192. package/build/cjs/modules/NavigationPreview/story/NavigationPreview.stories.js +25 -1
  193. package/build/cjs/modules/NavigationPreview/story/NavigationPreview.stories.js.map +1 -1
  194. package/build/cjs/modules/NavigationPreview/story/mockData.d.ts +2 -2
  195. package/build/cjs/modules/NavigationPreview/story/mockData.js +16 -4
  196. package/build/cjs/modules/NavigationPreview/story/mockData.js.map +1 -1
  197. package/build/cjs/modules/QueryStatistics/QueryStatistics.css +4 -0
  198. package/build/cjs/modules/QueryStatistics/QueryStatistics.css.map +1 -0
  199. package/build/cjs/modules/QueryStatistics/QueryStatistics.d.ts +4 -0
  200. package/build/cjs/modules/QueryStatistics/QueryStatistics.js +151 -0
  201. package/build/cjs/modules/QueryStatistics/QueryStatistics.js.map +1 -0
  202. package/build/cjs/modules/QueryStatistics/helpers.d.ts +15 -0
  203. package/build/cjs/modules/QueryStatistics/helpers.js +118 -0
  204. package/build/cjs/modules/QueryStatistics/helpers.js.map +1 -0
  205. package/build/cjs/modules/QueryStatistics/i18n/dicts.d.ts +35 -0
  206. package/build/cjs/modules/QueryStatistics/i18n/dicts.js +14 -0
  207. package/build/cjs/modules/QueryStatistics/i18n/dicts.js.map +1 -0
  208. package/build/cjs/modules/QueryStatistics/i18n/en.json +16 -0
  209. package/build/cjs/modules/QueryStatistics/i18n/index.d.ts +6 -0
  210. package/build/cjs/modules/QueryStatistics/i18n/index.js +11 -0
  211. package/build/cjs/modules/QueryStatistics/i18n/index.js.map +1 -0
  212. package/build/cjs/modules/QueryStatistics/i18n/ru.json +16 -0
  213. package/build/cjs/modules/QueryStatistics/index.d.ts +2 -0
  214. package/build/cjs/modules/QueryStatistics/index.js +13 -0
  215. package/build/cjs/modules/QueryStatistics/index.js.map +1 -0
  216. package/build/cjs/modules/QueryStatistics/internal/MetricCell.css +36 -0
  217. package/build/cjs/modules/QueryStatistics/internal/MetricCell.css.map +1 -0
  218. package/build/cjs/modules/QueryStatistics/internal/MetricCell.d.ts +9 -0
  219. package/build/cjs/modules/QueryStatistics/internal/MetricCell.js +121 -0
  220. package/build/cjs/modules/QueryStatistics/internal/MetricCell.js.map +1 -0
  221. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsTable.css +21 -0
  222. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsTable.css.map +1 -0
  223. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsTable.d.ts +20 -0
  224. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsTable.js +140 -0
  225. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsTable.js.map +1 -0
  226. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsToolbar.css +5 -0
  227. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsToolbar.css.map +1 -0
  228. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsToolbar.d.ts +10 -0
  229. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsToolbar.js +55 -0
  230. package/build/cjs/modules/QueryStatistics/internal/QueryStatisticsToolbar.js.map +1 -0
  231. package/build/cjs/modules/QueryStatistics/story/QueryStatistics.stories.d.ts +8 -0
  232. package/build/cjs/modules/QueryStatistics/story/QueryStatistics.stories.js +112 -0
  233. package/build/cjs/modules/QueryStatistics/story/QueryStatistics.stories.js.map +1 -0
  234. package/build/cjs/modules/RowsList/RowsList.css +4 -0
  235. package/build/cjs/modules/RowsList/RowsList.css.map +1 -1
  236. package/build/cjs/modules/index.d.ts +3 -0
  237. package/build/cjs/modules/index.js +20 -0
  238. package/build/cjs/modules/index.js.map +1 -1
  239. package/build/cjs/types/declarations.d.ts +10 -0
  240. package/build/cjs/types/errorTree.d.ts +23 -0
  241. package/build/cjs/types/errorTree.js +6 -0
  242. package/build/cjs/types/errorTree.js.map +1 -0
  243. package/build/cjs/types/navigation.d.ts +8 -1
  244. package/build/cjs/types/navigation.js.map +1 -1
  245. package/build/cjs/types/queryList.d.ts +1 -1
  246. package/build/cjs/types/queryList.js.map +1 -1
  247. package/build/cjs/types/queryResults.d.ts +34 -0
  248. package/build/cjs/types/queryResults.js +6 -0
  249. package/build/cjs/types/queryResults.js.map +1 -0
  250. package/build/cjs/types/queryStatistics.d.ts +54 -0
  251. package/build/cjs/types/queryStatistics.js +6 -0
  252. package/build/cjs/types/queryStatistics.js.map +1 -0
  253. package/build/cjs/widgets/QueriesHistory/QueriesHistory.js +1 -2
  254. package/build/cjs/widgets/QueriesHistory/QueriesHistory.js.map +1 -1
  255. package/build/cjs/widgets/QueriesHistory/QueriesHistory.stories.d.ts +1 -0
  256. package/build/cjs/widgets/QueriesHistory/QueriesHistory.stories.js +82 -1
  257. package/build/cjs/widgets/QueriesHistory/QueriesHistory.stories.js.map +1 -1
  258. package/build/cjs/widgets/QueriesNavigation/QueriesNavigation.stories.js +40 -35
  259. package/build/cjs/widgets/QueriesNavigation/QueriesNavigation.stories.js.map +1 -1
  260. package/build/cjs/widgets/QueriesNavigation/i18n/index.d.ts +2 -2
  261. package/build/cjs/widgets/QueryResults/QueryResults.css +19 -0
  262. package/build/cjs/widgets/QueryResults/QueryResults.css.map +1 -0
  263. package/build/cjs/widgets/QueryResults/QueryResults.d.ts +23 -0
  264. package/build/cjs/widgets/QueryResults/QueryResults.js +119 -0
  265. package/build/cjs/widgets/QueryResults/QueryResults.js.map +1 -0
  266. package/build/cjs/widgets/QueryResults/QueryResults.stories.d.ts +19 -0
  267. package/build/cjs/widgets/QueryResults/QueryResults.stories.js +199 -0
  268. package/build/cjs/widgets/QueryResults/QueryResults.stories.js.map +1 -0
  269. package/build/cjs/widgets/QueryResults/i18n/dicts.d.ts +25 -0
  270. package/build/cjs/widgets/QueryResults/i18n/dicts.js +14 -0
  271. package/build/cjs/widgets/QueryResults/i18n/dicts.js.map +1 -0
  272. package/build/cjs/widgets/QueryResults/i18n/en.json +10 -0
  273. package/build/cjs/widgets/QueryResults/i18n/index.d.ts +6 -0
  274. package/build/cjs/widgets/QueryResults/i18n/index.js +11 -0
  275. package/build/cjs/widgets/QueryResults/i18n/index.js.map +1 -0
  276. package/build/cjs/widgets/QueryResults/i18n/ru.json +12 -0
  277. package/build/cjs/widgets/QueryResults/index.d.ts +2 -0
  278. package/build/cjs/widgets/QueryResults/index.js +13 -0
  279. package/build/cjs/widgets/QueryResults/index.js.map +1 -0
  280. package/build/cjs/widgets/QueryResults/internal/QueryResultsSchema.d.ts +7 -0
  281. package/build/cjs/widgets/QueryResults/internal/QueryResultsSchema.js +49 -0
  282. package/build/cjs/widgets/QueryResults/internal/QueryResultsSchema.js.map +1 -0
  283. package/build/cjs/widgets/SavedQueries/SavedQueries.stories.js.map +1 -1
  284. package/build/cjs/widgets/index.d.ts +2 -0
  285. package/build/cjs/widgets/index.js +7 -0
  286. package/build/cjs/widgets/index.js.map +1 -1
  287. package/build/esm/components/AttachmentList/AttachmentList.css +22 -0
  288. package/build/esm/components/AttachmentList/AttachmentList.css.map +1 -0
  289. package/build/esm/components/AttachmentList/AttachmentList.d.ts +17 -0
  290. package/build/esm/components/AttachmentList/AttachmentList.js +67 -0
  291. package/build/esm/components/AttachmentList/AttachmentList.js.map +1 -0
  292. package/build/esm/components/AttachmentList/AttachmentList.scss +25 -0
  293. package/build/esm/components/AttachmentList/AttachmentList.stories.d.ts +93 -0
  294. package/build/esm/components/AttachmentList/AttachmentList.stories.js +315 -0
  295. package/build/esm/components/AttachmentList/AttachmentList.stories.js.map +1 -0
  296. package/build/esm/components/AttachmentList/helpers/getIconByAttachmentName.d.ts +2 -0
  297. package/build/esm/components/AttachmentList/helpers/getIconByAttachmentName.js +30 -0
  298. package/build/esm/components/AttachmentList/helpers/getIconByAttachmentName.js.map +1 -0
  299. package/build/esm/components/AttachmentList/helpers/objectLinkValidator.d.ts +11 -0
  300. package/build/esm/components/AttachmentList/helpers/objectLinkValidator.js +24 -0
  301. package/build/esm/components/AttachmentList/helpers/objectLinkValidator.js.map +1 -0
  302. package/build/esm/components/AttachmentList/helpers/stringRequiredValidator.d.ts +2 -0
  303. package/build/esm/components/AttachmentList/helpers/stringRequiredValidator.js +19 -0
  304. package/build/esm/components/AttachmentList/helpers/stringRequiredValidator.js.map +1 -0
  305. package/build/esm/components/AttachmentList/hooks/useKeyDownFormControl.d.ts +4 -0
  306. package/build/esm/components/AttachmentList/hooks/useKeyDownFormControl.js +21 -0
  307. package/build/esm/components/AttachmentList/hooks/useKeyDownFormControl.js.map +1 -0
  308. package/build/esm/components/AttachmentList/hooks/useLabelRef.d.ts +4 -0
  309. package/build/esm/components/AttachmentList/hooks/useLabelRef.js +28 -0
  310. package/build/esm/components/AttachmentList/hooks/useLabelRef.js.map +1 -0
  311. package/build/esm/components/AttachmentList/i18n/dicts.d.ts +23 -0
  312. package/build/esm/components/AttachmentList/i18n/dicts.js +7 -0
  313. package/build/esm/components/AttachmentList/i18n/dicts.js.map +1 -0
  314. package/build/esm/components/AttachmentList/i18n/en.json +10 -0
  315. package/build/esm/components/AttachmentList/i18n/index.d.ts +6 -0
  316. package/build/esm/components/AttachmentList/i18n/index.js +4 -0
  317. package/build/esm/components/AttachmentList/i18n/index.js.map +1 -0
  318. package/build/esm/components/AttachmentList/i18n/ru.json +10 -0
  319. package/build/esm/components/AttachmentList/index.d.ts +4 -0
  320. package/build/esm/components/AttachmentList/index.js +4 -0
  321. package/build/esm/components/AttachmentList/index.js.map +1 -0
  322. package/build/esm/components/AttachmentList/internal/AttachmentItem/AttachmentItem.css +18 -0
  323. package/build/esm/components/AttachmentList/internal/AttachmentItem/AttachmentItem.css.map +1 -0
  324. package/build/esm/components/AttachmentList/internal/AttachmentItem/AttachmentItem.d.ts +16 -0
  325. package/build/esm/components/AttachmentList/internal/AttachmentItem/AttachmentItem.js +98 -0
  326. package/build/esm/components/AttachmentList/internal/AttachmentItem/AttachmentItem.js.map +1 -0
  327. package/build/esm/components/AttachmentList/internal/AttachmentItem/AttachmentItem.scss +23 -0
  328. package/build/esm/components/AttachmentList/internal/AttachmentItem/index.d.ts +2 -0
  329. package/build/esm/components/AttachmentList/internal/AttachmentItem/index.js +2 -0
  330. package/build/esm/components/AttachmentList/internal/AttachmentItem/index.js.map +1 -0
  331. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditAttachmentItem.d.ts +9 -0
  332. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditAttachmentItem.js +15 -0
  333. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditAttachmentItem.js.map +1 -0
  334. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.css +17 -0
  335. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.css.map +1 -0
  336. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.d.ts +24 -0
  337. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.js +167 -0
  338. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.js.map +1 -0
  339. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/EditLinkItem.scss +21 -0
  340. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/FileEdit.d.ts +12 -0
  341. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/FileEdit.js +83 -0
  342. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/FileEdit.js.map +1 -0
  343. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/index.d.ts +4 -0
  344. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/index.js +2 -0
  345. package/build/esm/components/AttachmentList/internal/EditAttachmentItem/index.js.map +1 -0
  346. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.css +4 -0
  347. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.css.map +1 -0
  348. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.d.ts +13 -0
  349. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.js +68 -0
  350. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.js.map +1 -0
  351. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.scss +5 -0
  352. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.stories.d.ts +29 -0
  353. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.stories.js +29 -0
  354. package/build/esm/components/AttachmentListPlaceholder/AttachmentListPlaceholder.stories.js.map +1 -0
  355. package/build/esm/components/AttachmentListPlaceholder/i18n/dicts.d.ts +17 -0
  356. package/build/esm/components/AttachmentListPlaceholder/i18n/dicts.js +7 -0
  357. package/build/esm/components/AttachmentListPlaceholder/i18n/dicts.js.map +1 -0
  358. package/build/esm/components/AttachmentListPlaceholder/i18n/en.json +7 -0
  359. package/build/esm/components/AttachmentListPlaceholder/i18n/index.d.ts +6 -0
  360. package/build/esm/components/AttachmentListPlaceholder/i18n/index.js +4 -0
  361. package/build/esm/components/AttachmentListPlaceholder/i18n/index.js.map +1 -0
  362. package/build/esm/components/AttachmentListPlaceholder/i18n/ru.json +7 -0
  363. package/build/esm/components/AttachmentListPlaceholder/index.d.ts +2 -0
  364. package/build/esm/components/AttachmentListPlaceholder/index.js +2 -0
  365. package/build/esm/components/AttachmentListPlaceholder/index.js.map +1 -0
  366. package/build/esm/components/DataTable/DataTable.css +0 -7
  367. package/build/esm/components/DataTable/DataTable.css.map +1 -1
  368. package/build/esm/components/DataTable/DataTable.js +12 -5
  369. package/build/esm/components/DataTable/DataTable.js.map +1 -1
  370. package/build/esm/components/DataTable/DataTable.scss +18 -26
  371. package/build/esm/components/ErrorTree/ErrorTree.d.ts +3 -0
  372. package/build/esm/components/ErrorTree/ErrorTree.js +28 -0
  373. package/build/esm/components/ErrorTree/ErrorTree.js.map +1 -0
  374. package/build/esm/components/ErrorTree/ErrorTree.stories.d.ts +8 -0
  375. package/build/esm/components/ErrorTree/ErrorTree.stories.js +94 -0
  376. package/build/esm/components/ErrorTree/ErrorTree.stories.js.map +1 -0
  377. package/build/esm/components/ErrorTree/helpers/formatAttributes.d.ts +2 -0
  378. package/build/esm/components/ErrorTree/helpers/formatAttributes.js +10 -0
  379. package/build/esm/components/ErrorTree/helpers/formatAttributes.js.map +1 -0
  380. package/build/esm/components/ErrorTree/helpers/getIntermediateChain.d.ts +6 -0
  381. package/build/esm/components/ErrorTree/helpers/getIntermediateChain.js +16 -0
  382. package/build/esm/components/ErrorTree/helpers/getIntermediateChain.js.map +1 -0
  383. package/build/esm/components/ErrorTree/i18n/dicts.d.ts +27 -0
  384. package/build/esm/components/ErrorTree/i18n/dicts.js +7 -0
  385. package/build/esm/components/ErrorTree/i18n/dicts.js.map +1 -0
  386. package/build/esm/components/ErrorTree/i18n/en.json +11 -0
  387. package/build/esm/components/ErrorTree/i18n/index.d.ts +6 -0
  388. package/build/esm/components/ErrorTree/i18n/index.js +4 -0
  389. package/build/esm/components/ErrorTree/i18n/index.js.map +1 -0
  390. package/build/esm/components/ErrorTree/i18n/ru.json +13 -0
  391. package/build/esm/components/ErrorTree/index.d.ts +1 -0
  392. package/build/esm/components/ErrorTree/index.js +2 -0
  393. package/build/esm/components/ErrorTree/index.js.map +1 -0
  394. package/build/esm/components/ErrorTree/internal/ErrorTreeChildren.css +4 -0
  395. package/build/esm/components/ErrorTree/internal/ErrorTreeChildren.css.map +1 -0
  396. package/build/esm/components/ErrorTree/internal/ErrorTreeChildren.d.ts +10 -0
  397. package/build/esm/components/ErrorTree/internal/ErrorTreeChildren.js +25 -0
  398. package/build/esm/components/ErrorTree/internal/ErrorTreeChildren.js.map +1 -0
  399. package/build/esm/components/ErrorTree/internal/ErrorTreeChildren.scss +5 -0
  400. package/build/esm/components/ErrorTree/internal/ErrorTreeNode.css +80 -0
  401. package/build/esm/components/ErrorTree/internal/ErrorTreeNode.css.map +1 -0
  402. package/build/esm/components/ErrorTree/internal/ErrorTreeNode.d.ts +13 -0
  403. package/build/esm/components/ErrorTree/internal/ErrorTreeNode.js +266 -0
  404. package/build/esm/components/ErrorTree/internal/ErrorTreeNode.js.map +1 -0
  405. package/build/esm/components/ErrorTree/internal/ErrorTreeNode.scss +95 -0
  406. package/build/esm/components/ErrorTree/internal/IntermediateMessages.css +10 -0
  407. package/build/esm/components/ErrorTree/internal/IntermediateMessages.css.map +1 -0
  408. package/build/esm/components/ErrorTree/internal/IntermediateMessages.d.ts +9 -0
  409. package/build/esm/components/ErrorTree/internal/IntermediateMessages.js +110 -0
  410. package/build/esm/components/ErrorTree/internal/IntermediateMessages.js.map +1 -0
  411. package/build/esm/components/ErrorTree/internal/IntermediateMessages.scss +13 -0
  412. package/build/esm/components/Icons/LogoCPlusPlus.d.ts +2 -0
  413. package/build/esm/components/Icons/LogoCPlusPlus.js +28 -0
  414. package/build/esm/components/Icons/LogoCPlusPlus.js.map +1 -0
  415. package/build/esm/components/Icons/index.d.ts +1 -0
  416. package/build/esm/components/Icons/index.js +2 -0
  417. package/build/esm/components/Icons/index.js.map +1 -0
  418. package/build/esm/components/QueryResultsTable/QueryResultsTable.css +53 -0
  419. package/build/esm/components/QueryResultsTable/QueryResultsTable.css.map +1 -0
  420. package/build/esm/components/QueryResultsTable/QueryResultsTable.d.ts +24 -0
  421. package/build/esm/components/QueryResultsTable/QueryResultsTable.js +96 -0
  422. package/build/esm/components/QueryResultsTable/QueryResultsTable.js.map +1 -0
  423. package/build/esm/components/QueryResultsTable/QueryResultsTable.scss +65 -0
  424. package/build/esm/components/QueryResultsTable/helpers/formatQueryResultType.d.ts +3 -0
  425. package/build/esm/components/QueryResultsTable/helpers/formatQueryResultType.js +82 -0
  426. package/build/esm/components/QueryResultsTable/helpers/formatQueryResultType.js.map +1 -0
  427. package/build/esm/components/QueryResultsTable/helpers/formatQueryResultValue.d.ts +11 -0
  428. package/build/esm/components/QueryResultsTable/helpers/formatQueryResultValue.js +33 -0
  429. package/build/esm/components/QueryResultsTable/helpers/formatQueryResultValue.js.map +1 -0
  430. package/build/esm/components/QueryResultsTable/i18n/dicts.d.ts +13 -0
  431. package/build/esm/components/QueryResultsTable/i18n/dicts.js +7 -0
  432. package/build/esm/components/QueryResultsTable/i18n/dicts.js.map +1 -0
  433. package/build/esm/components/QueryResultsTable/i18n/en.json +5 -0
  434. package/build/esm/components/QueryResultsTable/i18n/index.d.ts +6 -0
  435. package/build/esm/components/QueryResultsTable/i18n/index.js +4 -0
  436. package/build/esm/components/QueryResultsTable/i18n/index.js.map +1 -0
  437. package/build/esm/components/QueryResultsTable/i18n/ru.json +5 -0
  438. package/build/esm/components/QueryResultsTable/index.d.ts +3 -0
  439. package/build/esm/components/QueryResultsTable/index.js +3 -0
  440. package/build/esm/components/QueryResultsTable/index.js.map +1 -0
  441. package/build/esm/components/QueryResultsTable/internal/QueryResultCell.d.ts +11 -0
  442. package/build/esm/components/QueryResultsTable/internal/QueryResultCell.js +71 -0
  443. package/build/esm/components/QueryResultsTable/internal/QueryResultCell.js.map +1 -0
  444. package/build/esm/components/index.d.ts +5 -0
  445. package/build/esm/components/index.js +4 -0
  446. package/build/esm/components/index.js.map +1 -1
  447. package/build/esm/helpers/createUuid.d.ts +1 -0
  448. package/build/esm/helpers/createUuid.js +6 -0
  449. package/build/esm/helpers/createUuid.js.map +1 -0
  450. package/build/esm/helpers/isObjectEqual.d.ts +1 -0
  451. package/build/esm/helpers/isObjectEqual.js +23 -0
  452. package/build/esm/helpers/isObjectEqual.js.map +1 -0
  453. package/build/esm/helpers/useDebouncedValue.d.ts +2 -0
  454. package/build/esm/helpers/useDebouncedValue.js +21 -0
  455. package/build/esm/helpers/useDebouncedValue.js.map +1 -0
  456. package/build/esm/index.d.ts +3 -0
  457. package/build/esm/index.js +3 -0
  458. package/build/esm/index.js.map +1 -1
  459. package/build/esm/modules/Attachments/Attachments.css +8 -0
  460. package/build/esm/modules/Attachments/Attachments.css.map +1 -0
  461. package/build/esm/modules/Attachments/Attachments.d.ts +22 -0
  462. package/build/esm/modules/Attachments/Attachments.js +373 -0
  463. package/build/esm/modules/Attachments/Attachments.js.map +1 -0
  464. package/build/esm/modules/Attachments/Attachments.scss +10 -0
  465. package/build/esm/modules/Attachments/Attachments.stories.d.ts +41 -0
  466. package/build/esm/modules/Attachments/Attachments.stories.js +115 -0
  467. package/build/esm/modules/Attachments/Attachments.stories.js.map +1 -0
  468. package/build/esm/modules/Attachments/i18n/dicts.d.ts +13 -0
  469. package/build/esm/modules/Attachments/i18n/dicts.js +7 -0
  470. package/build/esm/modules/Attachments/i18n/dicts.js.map +1 -0
  471. package/build/esm/modules/Attachments/i18n/en.json +5 -0
  472. package/build/esm/modules/Attachments/i18n/index.d.ts +6 -0
  473. package/build/esm/modules/Attachments/i18n/index.js +4 -0
  474. package/build/esm/modules/Attachments/i18n/index.js.map +1 -0
  475. package/build/esm/modules/Attachments/i18n/ru.json +5 -0
  476. package/build/esm/modules/Attachments/index.d.ts +2 -0
  477. package/build/esm/modules/Attachments/index.js +2 -0
  478. package/build/esm/modules/Attachments/index.js.map +1 -0
  479. package/build/esm/modules/HistoryLayout/HistoryLayout.d.ts +1 -1
  480. package/build/esm/modules/HistoryLayout/HistoryLayout.js +1 -1
  481. package/build/esm/modules/HistoryLayout/HistoryLayout.js.map +1 -1
  482. package/build/esm/modules/NavigationPreview/NavigationPreview.css +7 -1
  483. package/build/esm/modules/NavigationPreview/NavigationPreview.css.map +1 -1
  484. package/build/esm/modules/NavigationPreview/NavigationPreview.d.ts +2 -2
  485. package/build/esm/modules/NavigationPreview/NavigationPreview.js +38 -8
  486. package/build/esm/modules/NavigationPreview/NavigationPreview.js.map +1 -1
  487. package/build/esm/modules/NavigationPreview/NavigationPreview.scss +25 -17
  488. package/build/esm/modules/NavigationPreview/story/NavigationPreview.stories.d.ts +1 -0
  489. package/build/esm/modules/NavigationPreview/story/NavigationPreview.stories.js +24 -0
  490. package/build/esm/modules/NavigationPreview/story/NavigationPreview.stories.js.map +1 -1
  491. package/build/esm/modules/NavigationPreview/story/mockData.d.ts +2 -2
  492. package/build/esm/modules/NavigationPreview/story/mockData.js +16 -4
  493. package/build/esm/modules/NavigationPreview/story/mockData.js.map +1 -1
  494. package/build/esm/modules/QueryStatistics/QueryStatistics.css +4 -0
  495. package/build/esm/modules/QueryStatistics/QueryStatistics.css.map +1 -0
  496. package/build/esm/modules/QueryStatistics/QueryStatistics.d.ts +4 -0
  497. package/build/esm/modules/QueryStatistics/QueryStatistics.js +143 -0
  498. package/build/esm/modules/QueryStatistics/QueryStatistics.js.map +1 -0
  499. package/build/esm/modules/QueryStatistics/QueryStatistics.scss +3 -0
  500. package/build/esm/modules/QueryStatistics/helpers.d.ts +15 -0
  501. package/build/esm/modules/QueryStatistics/helpers.js +106 -0
  502. package/build/esm/modules/QueryStatistics/helpers.js.map +1 -0
  503. package/build/esm/modules/QueryStatistics/i18n/dicts.d.ts +35 -0
  504. package/build/esm/modules/QueryStatistics/i18n/dicts.js +7 -0
  505. package/build/esm/modules/QueryStatistics/i18n/dicts.js.map +1 -0
  506. package/build/esm/modules/QueryStatistics/i18n/en.json +16 -0
  507. package/build/esm/modules/QueryStatistics/i18n/index.d.ts +6 -0
  508. package/build/esm/modules/QueryStatistics/i18n/index.js +4 -0
  509. package/build/esm/modules/QueryStatistics/i18n/index.js.map +1 -0
  510. package/build/esm/modules/QueryStatistics/i18n/ru.json +16 -0
  511. package/build/esm/modules/QueryStatistics/index.d.ts +2 -0
  512. package/build/esm/modules/QueryStatistics/index.js +2 -0
  513. package/build/esm/modules/QueryStatistics/index.js.map +1 -0
  514. package/build/esm/modules/QueryStatistics/internal/MetricCell.css +36 -0
  515. package/build/esm/modules/QueryStatistics/internal/MetricCell.css.map +1 -0
  516. package/build/esm/modules/QueryStatistics/internal/MetricCell.d.ts +9 -0
  517. package/build/esm/modules/QueryStatistics/internal/MetricCell.js +114 -0
  518. package/build/esm/modules/QueryStatistics/internal/MetricCell.js.map +1 -0
  519. package/build/esm/modules/QueryStatistics/internal/MetricCell.scss +12 -0
  520. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsTable.css +21 -0
  521. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsTable.css.map +1 -0
  522. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsTable.d.ts +20 -0
  523. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsTable.js +132 -0
  524. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsTable.js.map +1 -0
  525. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsTable.scss +8 -0
  526. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsToolbar.css +5 -0
  527. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsToolbar.css.map +1 -0
  528. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsToolbar.d.ts +10 -0
  529. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsToolbar.js +48 -0
  530. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsToolbar.js.map +1 -0
  531. package/build/esm/modules/QueryStatistics/internal/QueryStatisticsToolbar.scss +1 -0
  532. package/build/esm/modules/QueryStatistics/story/QueryStatistics.stories.d.ts +8 -0
  533. package/build/esm/modules/QueryStatistics/story/QueryStatistics.stories.js +105 -0
  534. package/build/esm/modules/QueryStatistics/story/QueryStatistics.stories.js.map +1 -0
  535. package/build/esm/modules/RowsList/RowsList.css +4 -0
  536. package/build/esm/modules/RowsList/RowsList.css.map +1 -1
  537. package/build/esm/modules/RowsList/RowsList.scss +3 -0
  538. package/build/esm/modules/index.d.ts +3 -0
  539. package/build/esm/modules/index.js +2 -0
  540. package/build/esm/modules/index.js.map +1 -1
  541. package/build/esm/types/declarations.d.ts +10 -0
  542. package/build/esm/types/errorTree.d.ts +23 -0
  543. package/build/esm/types/errorTree.js +2 -0
  544. package/build/esm/types/errorTree.js.map +1 -0
  545. package/build/esm/types/navigation.d.ts +8 -1
  546. package/build/esm/types/navigation.js.map +1 -1
  547. package/build/esm/types/queryList.d.ts +1 -1
  548. package/build/esm/types/queryList.js.map +1 -1
  549. package/build/esm/types/queryResults.d.ts +34 -0
  550. package/build/esm/types/queryResults.js +2 -0
  551. package/build/esm/types/queryResults.js.map +1 -0
  552. package/build/esm/types/queryStatistics.d.ts +54 -0
  553. package/build/esm/types/queryStatistics.js +2 -0
  554. package/build/esm/types/queryStatistics.js.map +1 -0
  555. package/build/esm/widgets/QueriesHistory/QueriesHistory.js +1 -2
  556. package/build/esm/widgets/QueriesHistory/QueriesHistory.js.map +1 -1
  557. package/build/esm/widgets/QueriesHistory/QueriesHistory.stories.d.ts +1 -0
  558. package/build/esm/widgets/QueriesHistory/QueriesHistory.stories.js +81 -0
  559. package/build/esm/widgets/QueriesHistory/QueriesHistory.stories.js.map +1 -1
  560. package/build/esm/widgets/QueriesNavigation/QueriesNavigation.stories.js +40 -35
  561. package/build/esm/widgets/QueriesNavigation/QueriesNavigation.stories.js.map +1 -1
  562. package/build/esm/widgets/QueriesNavigation/i18n/index.d.ts +2 -2
  563. package/build/esm/widgets/QueryResults/QueryResults.css +19 -0
  564. package/build/esm/widgets/QueryResults/QueryResults.css.map +1 -0
  565. package/build/esm/widgets/QueryResults/QueryResults.d.ts +23 -0
  566. package/build/esm/widgets/QueryResults/QueryResults.js +111 -0
  567. package/build/esm/widgets/QueryResults/QueryResults.js.map +1 -0
  568. package/build/esm/widgets/QueryResults/QueryResults.scss +25 -0
  569. package/build/esm/widgets/QueryResults/QueryResults.stories.d.ts +19 -0
  570. package/build/esm/widgets/QueryResults/QueryResults.stories.js +191 -0
  571. package/build/esm/widgets/QueryResults/QueryResults.stories.js.map +1 -0
  572. package/build/esm/widgets/QueryResults/i18n/dicts.d.ts +25 -0
  573. package/build/esm/widgets/QueryResults/i18n/dicts.js +7 -0
  574. package/build/esm/widgets/QueryResults/i18n/dicts.js.map +1 -0
  575. package/build/esm/widgets/QueryResults/i18n/en.json +10 -0
  576. package/build/esm/widgets/QueryResults/i18n/index.d.ts +6 -0
  577. package/build/esm/widgets/QueryResults/i18n/index.js +4 -0
  578. package/build/esm/widgets/QueryResults/i18n/index.js.map +1 -0
  579. package/build/esm/widgets/QueryResults/i18n/ru.json +12 -0
  580. package/build/esm/widgets/QueryResults/index.d.ts +2 -0
  581. package/build/esm/widgets/QueryResults/index.js +2 -0
  582. package/build/esm/widgets/QueryResults/index.js.map +1 -0
  583. package/build/esm/widgets/QueryResults/internal/QueryResultsSchema.d.ts +7 -0
  584. package/build/esm/widgets/QueryResults/internal/QueryResultsSchema.js +41 -0
  585. package/build/esm/widgets/QueryResults/internal/QueryResultsSchema.js.map +1 -0
  586. package/build/esm/widgets/SavedQueries/SavedQueries.stories.js.map +1 -1
  587. package/build/esm/widgets/index.d.ts +2 -0
  588. package/build/esm/widgets/index.js +1 -0
  589. package/build/esm/widgets/index.js.map +1 -1
  590. package/package.json +29 -2
  591. package/.agents/skills/code-review-checklist/SKILL.md +0 -135
  592. package/.agents/skills/github-pr-review/SKILL.md +0 -24
  593. package/.agents/skills/gravity-ui/SKILL.md +0 -175
  594. package/.agents/skills/gravity-ui/references/icons.md +0 -60
  595. package/.agents/skills/gravity-ui/references/layout.md +0 -366
  596. package/.agents/skills/gravity-ui/references/package-routing.md +0 -424
  597. package/.agents/skills/gravity-ui/references/theming.md +0 -309
  598. package/.agents/skills/gravity-ui/rules/hallucination-traps.md +0 -361
  599. package/.agents/skills/gravity-ui/scripts/icon-image-search.sh +0 -63
  600. package/.eslintignore +0 -3
  601. package/.github/workflows/ci.yml +0 -25
  602. package/.github/workflows/main-preview.yml +0 -31
  603. package/.github/workflows/pr-preview-build.yml +0 -13
  604. package/.github/workflows/pr-preview-deploy.yml +0 -22
  605. package/.github/workflows/pr-title.yml +0 -27
  606. package/.github/workflows/release.yml +0 -20
  607. package/.nvmrc +0 -1
  608. package/.prettierrc.js +0 -1
  609. package/.storybook/main.ts +0 -31
  610. package/.storybook/preview.tsx +0 -43
  611. package/.storybook/redefinition.css +0 -3
  612. package/.storybook/tsconfig.json +0 -9
  613. package/.stylelintrc +0 -9
  614. package/AGENTS.md +0 -117
  615. package/CHANGELOG.md +0 -86
  616. package/CODEOWNERS +0 -1
  617. package/CONTRIBUTING.md +0 -31
  618. package/NOTICES.md +0 -8
  619. package/app-builder.config.ts +0 -9
  620. package/commitlint.config.cjs +0 -6
  621. package/eslint.config.mjs +0 -53
  622. package/plans/i18n-rules.md +0 -116
  623. package/plans/navigation-architecture.md +0 -262
  624. package/plans/queries-history-structure.md +0 -143
  625. package/plans/queries-navigation-architecture-review.md +0 -217
  626. package/skills-lock.json +0 -11
  627. package/src/components/AddChartButton/AddChartButton.scss +0 -12
  628. package/src/components/AddChartButton/AddChartButton.stories.tsx +0 -34
  629. package/src/components/AddChartButton/AddChartButton.tsx +0 -139
  630. package/src/components/AddChartButton/index.ts +0 -6
  631. package/src/components/Breadcrumbs/Breadcrumbs.scss +0 -25
  632. package/src/components/Breadcrumbs/Breadcrumbs.tsx +0 -114
  633. package/src/components/Breadcrumbs/helpers/parsePathSegments.ts +0 -16
  634. package/src/components/Breadcrumbs/i18n/dicts.ts +0 -4
  635. package/src/components/Breadcrumbs/i18n/en.json +0 -4
  636. package/src/components/Breadcrumbs/i18n/index.ts +0 -5
  637. package/src/components/Breadcrumbs/i18n/ru.json +0 -4
  638. package/src/components/Breadcrumbs/index.ts +0 -2
  639. package/src/components/Chart/Chart.scss +0 -40
  640. package/src/components/Chart/Chart.stories.tsx +0 -75
  641. package/src/components/Chart/Chart.tsx +0 -120
  642. package/src/components/Chart/i18n/dicts.ts +0 -4
  643. package/src/components/Chart/i18n/en.json +0 -6
  644. package/src/components/Chart/i18n/index.ts +0 -5
  645. package/src/components/Chart/i18n/ru.json +0 -6
  646. package/src/components/Chart/index.ts +0 -2
  647. package/src/components/ChartEditorForm/ChartEditorForm.scss +0 -20
  648. package/src/components/ChartEditorForm/ChartEditorForm.stories.tsx +0 -88
  649. package/src/components/ChartEditorForm/ChartEditorForm.tsx +0 -120
  650. package/src/components/ChartEditorForm/helpers/resolveLabels.ts +0 -17
  651. package/src/components/ChartEditorForm/i18n/dicts.ts +0 -4
  652. package/src/components/ChartEditorForm/i18n/en.json +0 -12
  653. package/src/components/ChartEditorForm/i18n/index.ts +0 -5
  654. package/src/components/ChartEditorForm/i18n/ru.json +0 -12
  655. package/src/components/ChartEditorForm/index.ts +0 -7
  656. package/src/components/ChartEditorForm/internal/Field.tsx +0 -11
  657. package/src/components/ChartEditorForm/types.ts +0 -44
  658. package/src/components/ClusterRow/ClusterRow.tsx +0 -34
  659. package/src/components/ClusterRow/index.ts +0 -2
  660. package/src/components/Dashboard/Dashboard.scss +0 -4
  661. package/src/components/Dashboard/Dashboard.stories.scss +0 -18
  662. package/src/components/Dashboard/Dashboard.stories.tsx +0 -248
  663. package/src/components/Dashboard/Dashboard.tsx +0 -51
  664. package/src/components/Dashboard/helpers/createDefaultLayout.ts +0 -43
  665. package/src/components/Dashboard/hooks/useDashboardConfig.ts +0 -63
  666. package/src/components/Dashboard/index.ts +0 -2
  667. package/src/components/Dashboard/internal/DashPlate.scss +0 -23
  668. package/src/components/Dashboard/internal/DashPlate.tsx +0 -35
  669. package/src/components/Dashboard/internal/DashboardProvider.tsx +0 -37
  670. package/src/components/Dashboard/types.ts +0 -21
  671. package/src/components/DataTable/DataTable.scss +0 -35
  672. package/src/components/DataTable/DataTable.stories.tsx +0 -65
  673. package/src/components/DataTable/DataTable.tsx +0 -81
  674. package/src/components/DataTable/index.ts +0 -1
  675. package/src/components/EditableRowTitle/EditableRowTitle.tsx +0 -67
  676. package/src/components/EditableRowTitle/index.ts +0 -2
  677. package/src/components/EmptyContent/EmptyContent.scss +0 -3
  678. package/src/components/EmptyContent/EmptyContent.tsx +0 -57
  679. package/src/components/EmptyContent/i18n/dicts.ts +0 -4
  680. package/src/components/EmptyContent/i18n/en.json +0 -7
  681. package/src/components/EmptyContent/i18n/index.ts +0 -5
  682. package/src/components/EmptyContent/i18n/ru.json +0 -7
  683. package/src/components/EmptyContent/index.ts +0 -1
  684. package/src/components/FieldsSearchToolbar/FieldsSearchToolbar.tsx +0 -48
  685. package/src/components/FieldsSearchToolbar/index.ts +0 -2
  686. package/src/components/FieldsSelector/FieldsSelector.scss +0 -18
  687. package/src/components/FieldsSelector/FieldsSelector.stories.tsx +0 -48
  688. package/src/components/FieldsSelector/FieldsSelector.tsx +0 -92
  689. package/src/components/FieldsSelector/i18n/dicts.ts +0 -4
  690. package/src/components/FieldsSelector/i18n/en.json +0 -3
  691. package/src/components/FieldsSelector/i18n/index.ts +0 -5
  692. package/src/components/FieldsSelector/i18n/ru.json +0 -3
  693. package/src/components/FieldsSelector/index.ts +0 -2
  694. package/src/components/HistoryFilter/HistoryFilter.scss +0 -5
  695. package/src/components/HistoryFilter/HistoryFilter.stories.tsx +0 -69
  696. package/src/components/HistoryFilter/HistoryFilter.tsx +0 -64
  697. package/src/components/HistoryFilter/i18n/dicts.ts +0 -4
  698. package/src/components/HistoryFilter/i18n/en.json +0 -4
  699. package/src/components/HistoryFilter/i18n/index.ts +0 -5
  700. package/src/components/HistoryFilter/i18n/ru.json +0 -4
  701. package/src/components/HistoryFilter/index.ts +0 -1
  702. package/src/components/HistoryGroupHeader/HistoryGroupHeader.scss +0 -7
  703. package/src/components/HistoryGroupHeader/HistoryGroupHeader.tsx +0 -18
  704. package/src/components/HistoryGroupHeader/index.ts +0 -1
  705. package/src/components/HistoryPrivateIcon/HistoryPrivateIcon.scss +0 -7
  706. package/src/components/HistoryPrivateIcon/HistoryPrivateIcon.tsx +0 -22
  707. package/src/components/HistoryPrivateIcon/index.ts +0 -1
  708. package/src/components/LazyList/LazyList.scss +0 -13
  709. package/src/components/LazyList/LazyList.tsx +0 -97
  710. package/src/components/LazyList/index.ts +0 -2
  711. package/src/components/ListSpinner/ListSpinner.scss +0 -3
  712. package/src/components/ListSpinner/ListSpinner.tsx +0 -18
  713. package/src/components/ListSpinner/index.ts +0 -2
  714. package/src/components/MonacoEditor/MonacoEditor.tsx +0 -112
  715. package/src/components/MonacoEditor/MonacoEditorThemes.tsx +0 -73
  716. package/src/components/MonacoEditor/index.ts +0 -11
  717. package/src/components/MonacoEditor/monaco-yql-languages/_.contribution.ts +0 -193
  718. package/src/components/MonacoEditor/monaco-yql-languages/clickhouse/clickhouse.contribution.ts +0 -14
  719. package/src/components/MonacoEditor/monaco-yql-languages/clickhouse/clickhouse.keywords.ts +0 -146
  720. package/src/components/MonacoEditor/monaco-yql-languages/clickhouse/clickhouse.ts +0 -217
  721. package/src/components/MonacoEditor/monaco-yql-languages/constants.ts +0 -6
  722. package/src/components/MonacoEditor/monaco-yql-languages/fillers/monaco-editor-core.ts +0 -3
  723. package/src/components/MonacoEditor/monaco-yql-languages/index.ts +0 -1
  724. package/src/components/MonacoEditor/monaco-yql-languages/monaco.contribution.ts +0 -5
  725. package/src/components/MonacoEditor/monaco-yql-languages/s-expressions/s-expressions.contribution.ts +0 -14
  726. package/src/components/MonacoEditor/monaco-yql-languages/s-expressions/s-expressions.keywords.ts +0 -97
  727. package/src/components/MonacoEditor/monaco-yql-languages/s-expressions/s-expressions.ts +0 -170
  728. package/src/components/MonacoEditor/monaco-yql-languages/themes/themes.contribution.ts +0 -35
  729. package/src/components/MonacoEditor/monaco-yql-languages/yql/yql.contribution.ts +0 -14
  730. package/src/components/MonacoEditor/monaco-yql-languages/yql/yql.keywords.ts +0 -13
  731. package/src/components/MonacoEditor/monaco-yql-languages/yql/yql.ts +0 -178
  732. package/src/components/MonacoEditor/monaco-yql-languages/yql_ansi/yql_ansi.contribution.ts +0 -14
  733. package/src/components/MonacoEditor/monaco-yql-languages/yql_ansi/yql_ansi.keywords.ts +0 -45
  734. package/src/components/MonacoEditor/monaco-yql-languages/yql_ansi/yql_ansi.ts +0 -142
  735. package/src/components/NavigationActionButtons/NavigationActionButtons.tsx +0 -46
  736. package/src/components/NavigationActionButtons/index.ts +0 -2
  737. package/src/components/NavigationItemRow/NavigationItemRow.tsx +0 -28
  738. package/src/components/NavigationItemRow/index.ts +0 -2
  739. package/src/components/PathEditor/PathEditor.scss +0 -41
  740. package/src/components/PathEditor/PathEditor.stories.helpers.ts +0 -118
  741. package/src/components/PathEditor/PathEditor.stories.tsx +0 -57
  742. package/src/components/PathEditor/PathEditor.tsx +0 -380
  743. package/src/components/PathEditor/helpers/suggestions.ts +0 -40
  744. package/src/components/PathEditor/i18n/dicts.ts +0 -4
  745. package/src/components/PathEditor/i18n/en.json +0 -4
  746. package/src/components/PathEditor/i18n/index.ts +0 -5
  747. package/src/components/PathEditor/i18n/ru.json +0 -4
  748. package/src/components/PathEditor/index.ts +0 -2
  749. package/src/components/QueryDuration/QueryDuration.scss +0 -6
  750. package/src/components/QueryDuration/QueryDuration.stories.tsx +0 -40
  751. package/src/components/QueryDuration/QueryDuration.tsx +0 -21
  752. package/src/components/QueryDuration/index.ts +0 -1
  753. package/src/components/QueryDuration/useQueryDuration.ts +0 -34
  754. package/src/components/QueryStatusIcon/QueryStatusIcon.scss +0 -17
  755. package/src/components/QueryStatusIcon/QueryStatusIcon.stories.tsx +0 -50
  756. package/src/components/QueryStatusIcon/QueryStatusIcon.tsx +0 -37
  757. package/src/components/QueryStatusIcon/index.ts +0 -1
  758. package/src/components/RowActionsMenu/RowActionsMenu.tsx +0 -47
  759. package/src/components/RowActionsMenu/index.ts +0 -2
  760. package/src/components/RowLink/RowLink.scss +0 -8
  761. package/src/components/RowLink/RowLink.tsx +0 -23
  762. package/src/components/RowLink/index.ts +0 -2
  763. package/src/components/SearchRowLayout/SearchRowLayout.scss +0 -18
  764. package/src/components/SearchRowLayout/SearchRowLayout.tsx +0 -45
  765. package/src/components/SearchRowLayout/helpers/fitQueryToVisibleLines.ts +0 -10
  766. package/src/components/SearchRowLayout/helpers/monacoConfig.ts +0 -25
  767. package/src/components/SearchRowLayout/index.ts +0 -2
  768. package/src/components/SearchWithButtons/SearchWithButtons.scss +0 -10
  769. package/src/components/SearchWithButtons/SearchWithButtons.stories.tsx +0 -107
  770. package/src/components/SearchWithButtons/SearchWithButtons.tsx +0 -56
  771. package/src/components/SearchWithButtons/index.ts +0 -2
  772. package/src/components/SimpleForm/CheckboxGroupField.tsx +0 -53
  773. package/src/components/SimpleForm/RangeDatePickerField.tsx +0 -50
  774. package/src/components/SimpleForm/SelectField.tsx +0 -24
  775. package/src/components/SimpleForm/SimpleForm.stories.tsx +0 -115
  776. package/src/components/SimpleForm/SimpleForm.tsx +0 -65
  777. package/src/components/SimpleForm/SwitchField.tsx +0 -23
  778. package/src/components/SimpleForm/helpers/controlsRegistry.ts +0 -24
  779. package/src/components/SimpleForm/helpers/getInitialValues.ts +0 -10
  780. package/src/components/SimpleForm/helpers/index.ts +0 -2
  781. package/src/components/SimpleForm/index.ts +0 -7
  782. package/src/components/SkeletonRows/SkeletonRows.tsx +0 -24
  783. package/src/components/SkeletonRows/index.ts +0 -2
  784. package/src/components/index.ts +0 -66
  785. package/src/constants/query.ts +0 -10
  786. package/src/constants/row.ts +0 -2
  787. package/src/helpers/buildColumnsFromKeys.ts +0 -17
  788. package/src/helpers/getDefaultNavigationIcon.ts +0 -33
  789. package/src/helpers/getListKey.ts +0 -12
  790. package/src/helpers/getParentPath.ts +0 -10
  791. package/src/helpers/isEmptyValue.ts +0 -2
  792. package/src/helpers/isFieldVisible.ts +0 -20
  793. package/src/helpers/time.ts +0 -29
  794. package/src/helpers/useLoadMoreSentinel.ts +0 -31
  795. package/src/helpers/useToggle.ts +0 -11
  796. package/src/helpers/useVisibleColumns.ts +0 -26
  797. package/src/i18n/index.ts +0 -26
  798. package/src/index.ts +0 -9
  799. package/src/modules/ChartEditor/ChartEditor.scss +0 -12
  800. package/src/modules/ChartEditor/ChartEditor.tsx +0 -116
  801. package/src/modules/ChartEditor/i18n/dicts.ts +0 -4
  802. package/src/modules/ChartEditor/i18n/en.json +0 -3
  803. package/src/modules/ChartEditor/i18n/index.ts +0 -5
  804. package/src/modules/ChartEditor/i18n/ru.json +0 -3
  805. package/src/modules/ChartEditor/index.ts +0 -2
  806. package/src/modules/ChartEditor/story/ChartEditor.stories.tsx +0 -186
  807. package/src/modules/ChartEditor/story/mockData.ts +0 -222
  808. package/src/modules/ChartEditor/types.ts +0 -18
  809. package/src/modules/ClustersList/ClustersList.scss +0 -11
  810. package/src/modules/ClustersList/ClustersList.tsx +0 -49
  811. package/src/modules/ClustersList/index.ts +0 -2
  812. package/src/modules/HistoryComparisonActions/HistoryComparisonActions.scss +0 -4
  813. package/src/modules/HistoryComparisonActions/HistoryComparisonActions.tsx +0 -42
  814. package/src/modules/HistoryComparisonActions/index.ts +0 -2
  815. package/src/modules/HistoryHeader/HistoryHeader.stories.tsx +0 -47
  816. package/src/modules/HistoryHeader/HistoryHeader.tsx +0 -58
  817. package/src/modules/HistoryHeader/index.ts +0 -1
  818. package/src/modules/HistoryHeader/internal/FullSearchToggleButton.tsx +0 -16
  819. package/src/modules/HistoryLayout/HistoryLayout.scss +0 -7
  820. package/src/modules/HistoryLayout/HistoryLayout.tsx +0 -43
  821. package/src/modules/HistoryLayout/index.ts +0 -2
  822. package/src/modules/HistoryRow/HistoryRow.scss +0 -32
  823. package/src/modules/HistoryRow/HistoryRow.stories.tsx +0 -91
  824. package/src/modules/HistoryRow/HistoryRow.tsx +0 -77
  825. package/src/modules/HistoryRow/index.ts +0 -1
  826. package/src/modules/HistorySearchRow/HistorySearchRow.scss +0 -13
  827. package/src/modules/HistorySearchRow/HistorySearchRow.stories.tsx +0 -52
  828. package/src/modules/HistorySearchRow/HistorySearchRow.tsx +0 -62
  829. package/src/modules/HistorySearchRow/helpers/resolveMonacoLanguage.ts +0 -19
  830. package/src/modules/HistorySearchRow/index.ts +0 -1
  831. package/src/modules/NavigationDetail/NavigationDetail.scss +0 -13
  832. package/src/modules/NavigationDetail/NavigationDetail.tsx +0 -121
  833. package/src/modules/NavigationDetail/helpers/getInitialTab.ts +0 -9
  834. package/src/modules/NavigationDetail/helpers/getVisibleTabs.ts +0 -5
  835. package/src/modules/NavigationDetail/index.ts +0 -2
  836. package/src/modules/NavigationDetail/internal/NavigationDetailTabs.tsx +0 -32
  837. package/src/modules/NavigationHeader/NavigationHeader.stories.tsx +0 -118
  838. package/src/modules/NavigationHeader/NavigationHeader.tsx +0 -33
  839. package/src/modules/NavigationHeader/index.ts +0 -2
  840. package/src/modules/NavigationItemsList/NavigationItemsList.scss +0 -65
  841. package/src/modules/NavigationItemsList/NavigationItemsList.tsx +0 -92
  842. package/src/modules/NavigationItemsList/index.ts +0 -2
  843. package/src/modules/NavigationItemsList/internal/NavigationItemsListEmptyState.tsx +0 -45
  844. package/src/modules/NavigationItemsList/internal/NavigationItemsListHeader.scss +0 -6
  845. package/src/modules/NavigationItemsList/internal/NavigationItemsListHeader.tsx +0 -54
  846. package/src/modules/NavigationItemsList/internal/useParentRow.ts +0 -23
  847. package/src/modules/NavigationMeta/NavigationMeta.scss +0 -25
  848. package/src/modules/NavigationMeta/NavigationMeta.tsx +0 -81
  849. package/src/modules/NavigationMeta/helpers/buildMetaGroups.tsx +0 -27
  850. package/src/modules/NavigationMeta/i18n/dicts.ts +0 -4
  851. package/src/modules/NavigationMeta/i18n/en.json +0 -4
  852. package/src/modules/NavigationMeta/i18n/index.ts +0 -5
  853. package/src/modules/NavigationMeta/i18n/ru.json +0 -4
  854. package/src/modules/NavigationMeta/index.ts +0 -3
  855. package/src/modules/NavigationMeta/story/NavigationMeta.stories.tsx +0 -80
  856. package/src/modules/NavigationMeta/story/mockData.ts +0 -22
  857. package/src/modules/NavigationPreview/NavigationPreview.scss +0 -24
  858. package/src/modules/NavigationPreview/NavigationPreview.tsx +0 -110
  859. package/src/modules/NavigationPreview/helpers/buildPreviewColumns.tsx +0 -11
  860. package/src/modules/NavigationPreview/helpers/filterPreviewRows.ts +0 -29
  861. package/src/modules/NavigationPreview/i18n/dicts.ts +0 -4
  862. package/src/modules/NavigationPreview/i18n/en.json +0 -3
  863. package/src/modules/NavigationPreview/i18n/index.ts +0 -5
  864. package/src/modules/NavigationPreview/i18n/ru.json +0 -3
  865. package/src/modules/NavigationPreview/index.ts +0 -4
  866. package/src/modules/NavigationPreview/story/NavigationPreview.stories.tsx +0 -98
  867. package/src/modules/NavigationPreview/story/mockData.ts +0 -9
  868. package/src/modules/NavigationSchema/NavigationSchema.scss +0 -24
  869. package/src/modules/NavigationSchema/NavigationSchema.tsx +0 -118
  870. package/src/modules/NavigationSchema/helpers/buildSchemaColumns.tsx +0 -54
  871. package/src/modules/NavigationSchema/helpers/filterSchema.ts +0 -18
  872. package/src/modules/NavigationSchema/i18n/dicts.ts +0 -4
  873. package/src/modules/NavigationSchema/i18n/en.json +0 -9
  874. package/src/modules/NavigationSchema/i18n/index.ts +0 -5
  875. package/src/modules/NavigationSchema/i18n/ru.json +0 -9
  876. package/src/modules/NavigationSchema/index.ts +0 -4
  877. package/src/modules/NavigationSchema/story/NavigationSchema.stories.tsx +0 -112
  878. package/src/modules/NavigationSchema/story/mockData.ts +0 -9
  879. package/src/modules/NavigationView/NavigationView.scss +0 -44
  880. package/src/modules/NavigationView/NavigationView.tsx +0 -60
  881. package/src/modules/NavigationView/helpers/buildViewColumns.tsx +0 -11
  882. package/src/modules/NavigationView/i18n/dicts.ts +0 -4
  883. package/src/modules/NavigationView/i18n/en.json +0 -3
  884. package/src/modules/NavigationView/i18n/index.ts +0 -5
  885. package/src/modules/NavigationView/i18n/ru.json +0 -3
  886. package/src/modules/NavigationView/index.ts +0 -3
  887. package/src/modules/NavigationView/internal/NavigationViewSectionItem.tsx +0 -70
  888. package/src/modules/NavigationView/story/NavigationView.stories.tsx +0 -110
  889. package/src/modules/NavigationView/story/mockData.ts +0 -35
  890. package/src/modules/QueriesList/QueriesList.scss +0 -10
  891. package/src/modules/QueriesList/QueriesList.tsx +0 -98
  892. package/src/modules/QueriesList/index.ts +0 -2
  893. package/src/modules/RowsList/RowsList.scss +0 -5
  894. package/src/modules/RowsList/RowsList.tsx +0 -96
  895. package/src/modules/RowsList/helpers/prepareRowData.ts +0 -61
  896. package/src/modules/RowsList/index.ts +0 -2
  897. package/src/modules/SavedQueryRow/SavedQueryRow.scss +0 -20
  898. package/src/modules/SavedQueryRow/SavedQueryRow.tsx +0 -60
  899. package/src/modules/SavedQueryRow/index.ts +0 -2
  900. package/src/modules/SavedQuerySearchRow/SavedQuerySearchRow.scss +0 -15
  901. package/src/modules/SavedQuerySearchRow/SavedQuerySearchRow.tsx +0 -58
  902. package/src/modules/SavedQuerySearchRow/index.ts +0 -2
  903. package/src/modules/TutorialRow/TutorialRow.scss +0 -9
  904. package/src/modules/TutorialRow/TutorialRow.stories.tsx +0 -43
  905. package/src/modules/TutorialRow/TutorialRow.tsx +0 -25
  906. package/src/modules/TutorialRow/index.ts +0 -2
  907. package/src/modules/TutorialSearchRow/TutorialSearchRow.scss +0 -5
  908. package/src/modules/TutorialSearchRow/TutorialSearchRow.stories.tsx +0 -44
  909. package/src/modules/TutorialSearchRow/TutorialSearchRow.tsx +0 -33
  910. package/src/modules/TutorialSearchRow/index.ts +0 -2
  911. package/src/modules/index.ts +0 -36
  912. package/src/types/declarations.d.ts +0 -15
  913. package/src/types/forms.ts +0 -33
  914. package/src/types/history.ts +0 -12
  915. package/src/types/navigation.ts +0 -199
  916. package/src/types/pathEditor.ts +0 -29
  917. package/src/types/queryList.ts +0 -92
  918. package/src/types/savedQueries.ts +0 -7
  919. package/src/types/tutorial.ts +0 -3
  920. package/src/widgets/DashboardCharts/DashboardCharts.scss +0 -25
  921. package/src/widgets/DashboardCharts/DashboardCharts.tsx +0 -214
  922. package/src/widgets/DashboardCharts/helpers/chartTypeIcons.ts +0 -33
  923. package/src/widgets/DashboardCharts/i18n/dicts.ts +0 -4
  924. package/src/widgets/DashboardCharts/i18n/en.json +0 -7
  925. package/src/widgets/DashboardCharts/i18n/index.ts +0 -5
  926. package/src/widgets/DashboardCharts/i18n/ru.json +0 -7
  927. package/src/widgets/DashboardCharts/index.ts +0 -2
  928. package/src/widgets/DashboardCharts/internal/EmptyDashboardPlaceholder.tsx +0 -26
  929. package/src/widgets/DashboardCharts/story/DashboardCharts.stories.scss +0 -6
  930. package/src/widgets/DashboardCharts/story/DashboardCharts.stories.tsx +0 -77
  931. package/src/widgets/DashboardCharts/story/mockData.ts +0 -419
  932. package/src/widgets/DashboardCharts/types.ts +0 -30
  933. package/src/widgets/QueriesHistory/QueriesHistory.scss +0 -3
  934. package/src/widgets/QueriesHistory/QueriesHistory.stories.tsx +0 -276
  935. package/src/widgets/QueriesHistory/QueriesHistory.tsx +0 -71
  936. package/src/widgets/QueriesHistory/i18n/dicts.ts +0 -4
  937. package/src/widgets/QueriesHistory/i18n/en.json +0 -3
  938. package/src/widgets/QueriesHistory/i18n/index.ts +0 -5
  939. package/src/widgets/QueriesHistory/i18n/ru.json +0 -3
  940. package/src/widgets/QueriesHistory/index.ts +0 -2
  941. package/src/widgets/QueriesHistory/internal/HistoryRowContent.tsx +0 -22
  942. package/src/widgets/QueriesNavigation/QueriesNavigation.scss +0 -9
  943. package/src/widgets/QueriesNavigation/QueriesNavigation.stories.tsx +0 -400
  944. package/src/widgets/QueriesNavigation/QueriesNavigation.tsx +0 -195
  945. package/src/widgets/QueriesNavigation/helpers/createEmptyDetailConfig.tsx +0 -8
  946. package/src/widgets/QueriesNavigation/helpers/createNavigationDetailResolver.ts +0 -28
  947. package/src/widgets/QueriesNavigation/helpers/createTableDetailConfig.tsx +0 -127
  948. package/src/widgets/QueriesNavigation/i18n/dicts.ts +0 -4
  949. package/src/widgets/QueriesNavigation/i18n/en.json +0 -10
  950. package/src/widgets/QueriesNavigation/i18n/index.ts +0 -5
  951. package/src/widgets/QueriesNavigation/i18n/ru.json +0 -10
  952. package/src/widgets/QueriesNavigation/index.ts +0 -13
  953. package/src/widgets/SavedQueries/SavedQueries.scss +0 -3
  954. package/src/widgets/SavedQueries/SavedQueries.stories.tsx +0 -192
  955. package/src/widgets/SavedQueries/SavedQueries.tsx +0 -77
  956. package/src/widgets/SavedQueries/SavedQueryRowContent.tsx +0 -26
  957. package/src/widgets/SavedQueries/i18n/dicts.ts +0 -4
  958. package/src/widgets/SavedQueries/i18n/en.json +0 -3
  959. package/src/widgets/SavedQueries/i18n/index.ts +0 -4
  960. package/src/widgets/SavedQueries/i18n/ru.json +0 -3
  961. package/src/widgets/SavedQueries/index.ts +0 -2
  962. package/src/widgets/TutorialsHistory/TutorialRowContent.tsx +0 -16
  963. package/src/widgets/TutorialsHistory/TutorialsHistory.scss +0 -3
  964. package/src/widgets/TutorialsHistory/TutorialsHistory.stories.tsx +0 -135
  965. package/src/widgets/TutorialsHistory/TutorialsHistory.tsx +0 -63
  966. package/src/widgets/TutorialsHistory/i18n/dicts.ts +0 -4
  967. package/src/widgets/TutorialsHistory/i18n/en.json +0 -3
  968. package/src/widgets/TutorialsHistory/i18n/index.ts +0 -5
  969. package/src/widgets/TutorialsHistory/i18n/ru.json +0 -3
  970. package/src/widgets/TutorialsHistory/index.ts +0 -2
  971. package/src/widgets/index.ts +0 -18
  972. package/tsconfig.json +0 -20
  973. package/tsconfig.publish.json +0 -11
@@ -22,6 +22,7 @@ var _exportNames = {
22
22
  NavigationSchema: true,
23
23
  buildSchemaColumns: true,
24
24
  filterSchema: true,
25
+ QueryStatistics: true,
25
26
  NavigationPreview: true,
26
27
  buildPreviewColumns: true,
27
28
  filterPreviewRows: true,
@@ -114,6 +115,12 @@ Object.defineProperty(exports, "QueriesList", {
114
115
  return _QueriesList.QueriesList;
115
116
  }
116
117
  });
118
+ Object.defineProperty(exports, "QueryStatistics", {
119
+ enumerable: true,
120
+ get: function () {
121
+ return _QueryStatistics.QueryStatistics;
122
+ }
123
+ });
117
124
  Object.defineProperty(exports, "RowsList", {
118
125
  enumerable: true,
119
126
  get: function () {
@@ -202,12 +209,25 @@ Object.keys(_ChartEditor).forEach(function (key) {
202
209
  }
203
210
  });
204
211
  });
212
+ var _Attachments = require("./Attachments");
213
+ Object.keys(_Attachments).forEach(function (key) {
214
+ if (key === "default" || key === "__esModule") return;
215
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
216
+ if (key in exports && exports[key] === _Attachments[key]) return;
217
+ Object.defineProperty(exports, key, {
218
+ enumerable: true,
219
+ get: function () {
220
+ return _Attachments[key];
221
+ }
222
+ });
223
+ });
205
224
  var _TutorialRow = require("./TutorialRow");
206
225
  var _TutorialSearchRow = require("./TutorialSearchRow");
207
226
  var _ClustersList = require("./ClustersList");
208
227
  var _NavigationItemsList = require("./NavigationItemsList");
209
228
  var _NavigationDetail = require("./NavigationDetail");
210
229
  var _NavigationSchema = require("./NavigationSchema");
230
+ var _QueryStatistics = require("./QueryStatistics");
211
231
  var _NavigationPreview = require("./NavigationPreview");
212
232
  var _NavigationMeta = require("./NavigationMeta");
213
233
  var _NavigationView = require("./NavigationView");
@@ -1 +1 @@
1
- {"version":3,"names":["_HistoryHeader","require","_HistoryLayout","_HistoryComparisonActions","_NavigationHeader","_RowsList","_QueriesList","_HistoryRow","_HistorySearchRow","_SavedQueryRow","_SavedQuerySearchRow","_ChartEditor","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","_TutorialRow","_TutorialSearchRow","_ClustersList","_NavigationItemsList","_NavigationDetail","_NavigationSchema","_NavigationPreview","_NavigationMeta","_NavigationView"],"sources":["index.ts"],"sourcesContent":["export {HistoryHeader} from './HistoryHeader';\nexport {HistoryLayout} from './HistoryLayout';\nexport {HistoryComparisonActions} from './HistoryComparisonActions';\nexport type {HistoryComparisonActionsProps} from './HistoryComparisonActions';\nexport {NavigationHeader} from './NavigationHeader';\nexport type {NavigationHeaderProps} from './NavigationHeader';\nexport type {HistoryLayoutProps} from './HistoryLayout';\nexport {RowsList} from './RowsList';\nexport type {RowsListProps} from './RowsList';\nexport {QueriesList} from './QueriesList';\nexport type {QueriesListProps} from './QueriesList';\nexport {HistoryRow} from './HistoryRow';\nexport {HistorySearchRow} from './HistorySearchRow';\nexport {SavedQueryRow} from './SavedQueryRow';\nexport type {SavedQueryRowProps} from './SavedQueryRow';\nexport {SavedQuerySearchRow} from './SavedQuerySearchRow';\nexport type {SavedQuerySearchRowProps} from './SavedQuerySearchRow';\nexport * from './ChartEditor';\nexport {TutorialRow} from './TutorialRow';\nexport type {TutorialRowProps} from './TutorialRow';\nexport {TutorialSearchRow} from './TutorialSearchRow';\nexport type {TutorialSearchRowProps} from './TutorialSearchRow';\nexport {ClustersList} from './ClustersList';\nexport type {ClustersListProps} from './ClustersList';\nexport {NavigationItemsList} from './NavigationItemsList';\nexport type {NavigationItemsListProps} from './NavigationItemsList';\nexport {NavigationDetail} from './NavigationDetail';\nexport type {NavigationDetailProps} from './NavigationDetail';\nexport {NavigationSchema, buildSchemaColumns, filterSchema} from './NavigationSchema';\nexport type {NavigationSchemaProps, NavigationSchemaViewConfig} from './NavigationSchema';\nexport {NavigationPreview, buildPreviewColumns, filterPreviewRows} from './NavigationPreview';\nexport type {NavigationPreviewProps, NavigationPreviewViewConfig} from './NavigationPreview';\nexport {NavigationMeta, buildMetaGroups} from './NavigationMeta';\nexport type {NavigationMetaProps, NavigationMetaViewConfig} from './NavigationMeta';\nexport {NavigationView, buildViewColumns} from './NavigationView';\nexport type {NavigationViewProps, NavigationViewViewConfig} from './NavigationView';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,cAAA,GAAAC,OAAA;AACA,IAAAC,cAAA,GAAAD,OAAA;AACA,IAAAE,yBAAA,GAAAF,OAAA;AAEA,IAAAG,iBAAA,GAAAH,OAAA;AAGA,IAAAI,SAAA,GAAAJ,OAAA;AAEA,IAAAK,YAAA,GAAAL,OAAA;AAEA,IAAAM,WAAA,GAAAN,OAAA;AACA,IAAAO,iBAAA,GAAAP,OAAA;AACA,IAAAQ,cAAA,GAAAR,OAAA;AAEA,IAAAS,oBAAA,GAAAT,OAAA;AAEA,IAAAU,YAAA,GAAAV,OAAA;AAAAW,MAAA,CAAAC,IAAA,CAAAF,YAAA,EAAAG,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAC,YAAA,EAAAJ,GAAA;EAAA,IAAAA,GAAA,IAAAK,OAAA,IAAAA,OAAA,CAAAL,GAAA,MAAAJ,YAAA,CAAAI,GAAA;EAAAH,MAAA,CAAAS,cAAA,CAAAD,OAAA,EAAAL,GAAA;IAAAO,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAZ,YAAA,CAAAI,GAAA;IAAA;EAAA;AAAA;AACA,IAAAS,YAAA,GAAAvB,OAAA;AAEA,IAAAwB,kBAAA,GAAAxB,OAAA;AAEA,IAAAyB,aAAA,GAAAzB,OAAA;AAEA,IAAA0B,oBAAA,GAAA1B,OAAA;AAEA,IAAA2B,iBAAA,GAAA3B,OAAA;AAEA,IAAA4B,iBAAA,GAAA5B,OAAA;AAEA,IAAA6B,kBAAA,GAAA7B,OAAA;AAEA,IAAA8B,eAAA,GAAA9B,OAAA;AAEA,IAAA+B,eAAA,GAAA/B,OAAA","ignoreList":[]}
1
+ {"version":3,"names":["_HistoryHeader","require","_HistoryLayout","_HistoryComparisonActions","_NavigationHeader","_RowsList","_QueriesList","_HistoryRow","_HistorySearchRow","_SavedQueryRow","_SavedQuerySearchRow","_ChartEditor","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","_Attachments","_TutorialRow","_TutorialSearchRow","_ClustersList","_NavigationItemsList","_NavigationDetail","_NavigationSchema","_QueryStatistics","_NavigationPreview","_NavigationMeta","_NavigationView"],"sources":["index.ts"],"sourcesContent":["export {HistoryHeader} from './HistoryHeader';\nexport {HistoryLayout} from './HistoryLayout';\nexport {HistoryComparisonActions} from './HistoryComparisonActions';\nexport type {HistoryComparisonActionsProps} from './HistoryComparisonActions';\nexport {NavigationHeader} from './NavigationHeader';\nexport type {NavigationHeaderProps} from './NavigationHeader';\nexport type {HistoryLayoutProps} from './HistoryLayout';\nexport {RowsList} from './RowsList';\nexport type {RowsListProps} from './RowsList';\nexport {QueriesList} from './QueriesList';\nexport type {QueriesListProps} from './QueriesList';\nexport {HistoryRow} from './HistoryRow';\nexport {HistorySearchRow} from './HistorySearchRow';\nexport {SavedQueryRow} from './SavedQueryRow';\nexport type {SavedQueryRowProps} from './SavedQueryRow';\nexport {SavedQuerySearchRow} from './SavedQuerySearchRow';\nexport type {SavedQuerySearchRowProps} from './SavedQuerySearchRow';\nexport * from './ChartEditor';\nexport * from './Attachments';\nexport {TutorialRow} from './TutorialRow';\nexport type {TutorialRowProps} from './TutorialRow';\nexport {TutorialSearchRow} from './TutorialSearchRow';\nexport type {TutorialSearchRowProps} from './TutorialSearchRow';\nexport {ClustersList} from './ClustersList';\nexport type {ClustersListProps} from './ClustersList';\nexport {NavigationItemsList} from './NavigationItemsList';\nexport type {NavigationItemsListProps} from './NavigationItemsList';\nexport {NavigationDetail} from './NavigationDetail';\nexport type {NavigationDetailProps} from './NavigationDetail';\nexport {NavigationSchema, buildSchemaColumns, filterSchema} from './NavigationSchema';\nexport type {NavigationSchemaProps, NavigationSchemaViewConfig} from './NavigationSchema';\nexport {QueryStatistics} from './QueryStatistics';\nexport type {\n QueryStatisticsColumn,\n QueryStatisticsColumnConfig,\n QueryStatisticsExtraColumn,\n QueryStatisticsExtraColumnContext,\n QueryStatisticsFormatValueContext,\n QueryStatisticsGroup,\n QueryStatisticsItem,\n QueryStatisticsMetric,\n QueryStatisticsProps,\n QueryStatisticsValues,\n} from './QueryStatistics';\nexport {NavigationPreview, buildPreviewColumns, filterPreviewRows} from './NavigationPreview';\nexport type {NavigationPreviewProps, NavigationPreviewViewConfig} from './NavigationPreview';\nexport {NavigationMeta, buildMetaGroups} from './NavigationMeta';\nexport type {NavigationMetaProps, NavigationMetaViewConfig} from './NavigationMeta';\nexport {NavigationView, buildViewColumns} from './NavigationView';\nexport type {NavigationViewProps, NavigationViewViewConfig} from './NavigationView';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,cAAA,GAAAC,OAAA;AACA,IAAAC,cAAA,GAAAD,OAAA;AACA,IAAAE,yBAAA,GAAAF,OAAA;AAEA,IAAAG,iBAAA,GAAAH,OAAA;AAGA,IAAAI,SAAA,GAAAJ,OAAA;AAEA,IAAAK,YAAA,GAAAL,OAAA;AAEA,IAAAM,WAAA,GAAAN,OAAA;AACA,IAAAO,iBAAA,GAAAP,OAAA;AACA,IAAAQ,cAAA,GAAAR,OAAA;AAEA,IAAAS,oBAAA,GAAAT,OAAA;AAEA,IAAAU,YAAA,GAAAV,OAAA;AAAAW,MAAA,CAAAC,IAAA,CAAAF,YAAA,EAAAG,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAC,YAAA,EAAAJ,GAAA;EAAA,IAAAA,GAAA,IAAAK,OAAA,IAAAA,OAAA,CAAAL,GAAA,MAAAJ,YAAA,CAAAI,GAAA;EAAAH,MAAA,CAAAS,cAAA,CAAAD,OAAA,EAAAL,GAAA;IAAAO,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAZ,YAAA,CAAAI,GAAA;IAAA;EAAA;AAAA;AACA,IAAAS,YAAA,GAAAvB,OAAA;AAAAW,MAAA,CAAAC,IAAA,CAAAW,YAAA,EAAAV,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAC,YAAA,EAAAJ,GAAA;EAAA,IAAAA,GAAA,IAAAK,OAAA,IAAAA,OAAA,CAAAL,GAAA,MAAAS,YAAA,CAAAT,GAAA;EAAAH,MAAA,CAAAS,cAAA,CAAAD,OAAA,EAAAL,GAAA;IAAAO,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAC,YAAA,CAAAT,GAAA;IAAA;EAAA;AAAA;AACA,IAAAU,YAAA,GAAAxB,OAAA;AAEA,IAAAyB,kBAAA,GAAAzB,OAAA;AAEA,IAAA0B,aAAA,GAAA1B,OAAA;AAEA,IAAA2B,oBAAA,GAAA3B,OAAA;AAEA,IAAA4B,iBAAA,GAAA5B,OAAA;AAEA,IAAA6B,iBAAA,GAAA7B,OAAA;AAEA,IAAA8B,gBAAA,GAAA9B,OAAA;AAaA,IAAA+B,kBAAA,GAAA/B,OAAA;AAEA,IAAAgC,eAAA,GAAAhC,OAAA;AAEA,IAAAiC,eAAA,GAAAjC,OAAA","ignoreList":[]}
@@ -13,3 +13,13 @@ declare module '*.svg' {
13
13
  const ReactComponent: FC<React.SVGProps<SVGSVGElement>>;
14
14
  export default ReactComponent;
15
15
  }
16
+
17
+ declare module '@gravity-ui/unipika' {
18
+ type UnipikaSettings = Record<string, unknown>;
19
+
20
+ type Unipika = {
21
+ formatFromYQL(data: [unknown, unknown], settings?: UnipikaSettings): string;
22
+ };
23
+
24
+ export default function createUnipika(settings?: UnipikaSettings): Unipika;
25
+ }
@@ -0,0 +1,23 @@
1
+ import type React from 'react';
2
+ export type ErrorTreeSeverity = 'error' | 'warning' | 'info';
3
+ export type ErrorTreePosition = {
4
+ row: number;
5
+ column: number;
6
+ };
7
+ export type ErrorTreeItem = {
8
+ id: string;
9
+ severity: ErrorTreeSeverity;
10
+ message: string;
11
+ code?: string | number;
12
+ position?: ErrorTreePosition;
13
+ attributes?: Record<string, unknown>;
14
+ children?: ErrorTreeItem[];
15
+ };
16
+ export type ErrorTreeProps = {
17
+ root: ErrorTreeItem;
18
+ className?: string;
19
+ defaultExpanded?: boolean;
20
+ defaultInfoExpanded?: boolean;
21
+ renderAttributes?: (attributes: Record<string, unknown>, item: ErrorTreeItem) => React.ReactNode;
22
+ onPositionClick?: (item: ErrorTreeItem, position: ErrorTreePosition) => void;
23
+ };
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ // #sourceMappingURL=errorTree.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sources":["errorTree.ts"],"sourcesContent":["import type React from 'react';\n\nexport type ErrorTreeSeverity = 'error' | 'warning' | 'info';\n\nexport type ErrorTreePosition = {\n row: number;\n column: number;\n};\n\nexport type ErrorTreeItem = {\n id: string;\n severity: ErrorTreeSeverity;\n message: string;\n code?: string | number;\n position?: ErrorTreePosition;\n attributes?: Record<string, unknown>;\n children?: ErrorTreeItem[];\n};\n\nexport type ErrorTreeProps = {\n root: ErrorTreeItem;\n className?: string;\n defaultExpanded?: boolean;\n defaultInfoExpanded?: boolean;\n renderAttributes?: (\n attributes: Record<string, unknown>,\n item: ErrorTreeItem,\n ) => React.ReactNode;\n onPositionClick?: (item: ErrorTreeItem, position: ErrorTreePosition) => void;\n};\n"],"mappings":"","ignoreList":[]}
@@ -1,4 +1,5 @@
1
1
  import { ReactNode } from 'react';
2
+ import type { QueryResultColumn, QueryResultFormatterSettings } from './queryResults';
2
3
  import type { LoadPathSuggestions } from './pathEditor';
3
4
  export type NavigationLocation = {
4
5
  cluster: string | undefined;
@@ -77,10 +78,16 @@ export type NavigationSchemaConfig<TColumn extends NavigationSchemaColumn = Navi
77
78
  };
78
79
  export type NavigationCellValue = ReactNode;
79
80
  export type NavigationPreviewRow = Record<string, NavigationCellValue>;
81
+ export type NavigationPreviewColumn<TRow extends NavigationPreviewRow = NavigationPreviewRow> = string | QueryResultColumn<TRow>;
80
82
  export type NavigationPreviewConfig<TRow extends NavigationPreviewRow = NavigationPreviewRow> = NavigationAsyncConfig & {
81
- columns: string[];
83
+ columns: Array<NavigationPreviewColumn<TRow>>;
82
84
  rows: TRow[];
83
85
  };
86
+ export type NavigationPreviewFormatterConfig = {
87
+ /** Applied when every displayed preview column declares a YQL type. */
88
+ formatterSettings?: QueryResultFormatterSettings;
89
+ maxVisibleLines?: number;
90
+ };
84
91
  export type NavigationViewRow = NavigationPreviewRow;
85
92
  export type NavigationViewSectionAction<TRow extends NavigationViewRow = NavigationViewRow> = NavigationAction<NavigationViewSection<TRow>>;
86
93
  export type NavigationViewSection<TRow extends NavigationViewRow = NavigationViewRow> = NavigationAsyncConfig & {
@@ -1 +1 @@
1
- {"version":3,"names":[],"sources":["navigation.ts"],"sourcesContent":["import {ReactNode} from 'react';\nimport type {LoadPathSuggestions} from './pathEditor';\n\nexport type NavigationLocation = {\n cluster: string | undefined;\n path: string | undefined;\n};\n\nexport type NavigationAction<TArg> = {\n id: string;\n title: string;\n content: ReactNode;\n hidden?: boolean;\n disabled?: boolean;\n qa?: string;\n onClick: (arg: TArg) => void;\n};\n\nexport type NavigationHeaderAction = NavigationAction<NavigationLocation>;\n\nexport type NavigationCluster = {\n id: string;\n title: string;\n icon?: ReactNode;\n color?: string;\n backgroundColor?: string;\n description?: string;\n};\n\nexport type NavigationItemKind = 'folder' | 'file' | 'table' | 'link' | 'unknown';\n\nexport type NavigationItem = {\n path: string;\n title: string;\n icon?: ReactNode;\n kind?: NavigationItemKind;\n targetPathBroken?: boolean;\n hasChildren?: boolean;\n disabled?: boolean;\n};\n\nexport type NavigationSortOrder = 'asc' | 'desc';\n\nexport type NavigationItemRowRenderData<T extends NavigationItem = NavigationItem> = {\n item: T;\n index: number;\n isActive: boolean;\n isParentRow: boolean;\n};\n\nexport type NavigationClusterRowRenderData<T extends NavigationCluster = NavigationCluster> = {\n cluster: T;\n index: number;\n isActive: boolean;\n};\n\nexport type RenderNavigationItem<T extends NavigationItem = NavigationItem> = (\n data: NavigationItemRowRenderData<T>,\n) => ReactNode;\n\nexport type RenderNavigationCluster<T extends NavigationCluster = NavigationCluster> = (\n data: NavigationClusterRowRenderData<T>,\n) => ReactNode;\n\nexport type NavigationDetailTabRenderContext = {\n search: string;\n onSearchUpdate?: (value: string) => void;\n searchPlaceholder?: string;\n};\n\nexport type NavigationDetailTab = {\n id: string;\n title: string;\n content?: ReactNode;\n renderContent?: (ctx: NavigationDetailTabRenderContext) => ReactNode;\n hidden?: boolean;\n disabled?: boolean;\n};\n\nexport type NavigationAsyncConfig = {\n loading?: boolean;\n loaded?: boolean;\n errorContent?: ReactNode;\n};\n\nexport type NavigationSchemaSortOrder = 'ascending' | 'descending';\n\nexport type NavigationSchemaColumn = {\n name: string;\n type?: string;\n sortOrder?: NavigationSchemaSortOrder;\n required?: boolean;\n [key: string]: unknown;\n};\n\nexport type NavigationSchemaConfig<\n TColumn extends NavigationSchemaColumn = NavigationSchemaColumn,\n> = NavigationAsyncConfig & {\n columns: TColumn[];\n};\n\nexport type NavigationCellValue = ReactNode;\n\nexport type NavigationPreviewRow = Record<string, NavigationCellValue>;\n\nexport type NavigationPreviewConfig<TRow extends NavigationPreviewRow = NavigationPreviewRow> =\n NavigationAsyncConfig & {\n columns: string[];\n rows: TRow[];\n };\n\nexport type NavigationViewRow = NavigationPreviewRow;\n\nexport type NavigationViewSectionAction<TRow extends NavigationViewRow = NavigationViewRow> =\n NavigationAction<NavigationViewSection<TRow>>;\n\nexport type NavigationViewSection<TRow extends NavigationViewRow = NavigationViewRow> =\n NavigationAsyncConfig & {\n id: string;\n title: ReactNode;\n columns: string[];\n rows: TRow[];\n expanded?: boolean;\n defaultExpanded?: boolean;\n onExpandedChange?: (expanded: boolean) => void;\n actions?: Array<NavigationViewSectionAction<TRow>>;\n };\n\nexport type NavigationViewConfig<TRow extends NavigationViewRow = NavigationViewRow> =\n NavigationAsyncConfig & {\n sections: Array<NavigationViewSection<TRow>>;\n };\n\nexport type NavigationMetaItem = {\n name: string;\n value: NavigationCellValue;\n [key: string]: unknown;\n};\n\nexport type NavigationMetaGroup<TItem extends NavigationMetaItem = NavigationMetaItem> = {\n title?: string;\n items: TItem[];\n};\n\nexport type NavigationMetaConfig<TItem extends NavigationMetaItem = NavigationMetaItem> =\n NavigationAsyncConfig & {\n groups: Array<NavigationMetaGroup<TItem>>;\n };\n\nexport type NavigationDetailConfig = {\n tabs: NavigationDetailTab[];\n defaultTab?: string;\n hasSearch?: boolean;\n searchPlaceholder?: string;\n actions?: NavigationHeaderAction[];\n emptyContent?: ReactNode;\n};\n\nexport type ResolveNavigationDetail<T extends NavigationItem = NavigationItem> = (\n item: T,\n) => NavigationDetailConfig | undefined;\n\nexport type NavigationDetailConfigFactory<T extends NavigationItem = NavigationItem> = (\n item: T,\n) => NavigationDetailConfig;\n\nexport type NavigationSearchConfig = {\n value?: string;\n onUpdate?: (value: string) => void;\n};\n\nexport type NavigationSortConfig = {\n value?: NavigationSortOrder;\n onUpdate?: (sort: NavigationSortOrder) => void;\n};\n\nexport type NavigationListStateConfig = {\n loading?: boolean;\n error?: boolean | ReactNode;\n hasMore?: boolean;\n onLoadMore?: () => void;\n};\n\nexport type NavigationHeaderConfig = {\n actions?: NavigationHeaderAction[];\n onLoadSuggestions?: LoadPathSuggestions;\n};\n\nexport type NavigationDetailPanelConfig<TItem extends NavigationItem = NavigationItem> = {\n openedItem?: TItem;\n onItemOpen?: (item: TItem) => void;\n onClose?: () => void;\n resolve?: ResolveNavigationDetail<TItem>;\n search?: string;\n onSearchUpdate?: (value: string) => void;\n activeTab?: string;\n onTabUpdate?: (tab: string) => void;\n actions?: NavigationHeaderAction[];\n};\n"],"mappings":"","ignoreList":[]}
1
+ {"version":3,"names":[],"sources":["navigation.ts"],"sourcesContent":["import {ReactNode} from 'react';\nimport type {QueryResultColumn, QueryResultFormatterSettings} from './queryResults';\nimport type {LoadPathSuggestions} from './pathEditor';\n\nexport type NavigationLocation = {\n cluster: string | undefined;\n path: string | undefined;\n};\n\nexport type NavigationAction<TArg> = {\n id: string;\n title: string;\n content: ReactNode;\n hidden?: boolean;\n disabled?: boolean;\n qa?: string;\n onClick: (arg: TArg) => void;\n};\n\nexport type NavigationHeaderAction = NavigationAction<NavigationLocation>;\n\nexport type NavigationCluster = {\n id: string;\n title: string;\n icon?: ReactNode;\n color?: string;\n backgroundColor?: string;\n description?: string;\n};\n\nexport type NavigationItemKind = 'folder' | 'file' | 'table' | 'link' | 'unknown';\n\nexport type NavigationItem = {\n path: string;\n title: string;\n icon?: ReactNode;\n kind?: NavigationItemKind;\n targetPathBroken?: boolean;\n hasChildren?: boolean;\n disabled?: boolean;\n};\n\nexport type NavigationSortOrder = 'asc' | 'desc';\n\nexport type NavigationItemRowRenderData<T extends NavigationItem = NavigationItem> = {\n item: T;\n index: number;\n isActive: boolean;\n isParentRow: boolean;\n};\n\nexport type NavigationClusterRowRenderData<T extends NavigationCluster = NavigationCluster> = {\n cluster: T;\n index: number;\n isActive: boolean;\n};\n\nexport type RenderNavigationItem<T extends NavigationItem = NavigationItem> = (\n data: NavigationItemRowRenderData<T>,\n) => ReactNode;\n\nexport type RenderNavigationCluster<T extends NavigationCluster = NavigationCluster> = (\n data: NavigationClusterRowRenderData<T>,\n) => ReactNode;\n\nexport type NavigationDetailTabRenderContext = {\n search: string;\n onSearchUpdate?: (value: string) => void;\n searchPlaceholder?: string;\n};\n\nexport type NavigationDetailTab = {\n id: string;\n title: string;\n content?: ReactNode;\n renderContent?: (ctx: NavigationDetailTabRenderContext) => ReactNode;\n hidden?: boolean;\n disabled?: boolean;\n};\n\nexport type NavigationAsyncConfig = {\n loading?: boolean;\n loaded?: boolean;\n errorContent?: ReactNode;\n};\n\nexport type NavigationSchemaSortOrder = 'ascending' | 'descending';\n\nexport type NavigationSchemaColumn = {\n name: string;\n type?: string;\n sortOrder?: NavigationSchemaSortOrder;\n required?: boolean;\n [key: string]: unknown;\n};\n\nexport type NavigationSchemaConfig<\n TColumn extends NavigationSchemaColumn = NavigationSchemaColumn,\n> = NavigationAsyncConfig & {\n columns: TColumn[];\n};\n\nexport type NavigationCellValue = ReactNode;\n\nexport type NavigationPreviewRow = Record<string, NavigationCellValue>;\n\nexport type NavigationPreviewColumn<TRow extends NavigationPreviewRow = NavigationPreviewRow> =\n string | QueryResultColumn<TRow>;\n\nexport type NavigationPreviewConfig<TRow extends NavigationPreviewRow = NavigationPreviewRow> =\n NavigationAsyncConfig & {\n columns: Array<NavigationPreviewColumn<TRow>>;\n rows: TRow[];\n };\n\nexport type NavigationPreviewFormatterConfig = {\n /** Applied when every displayed preview column declares a YQL type. */\n formatterSettings?: QueryResultFormatterSettings;\n maxVisibleLines?: number;\n};\n\nexport type NavigationViewRow = NavigationPreviewRow;\n\nexport type NavigationViewSectionAction<TRow extends NavigationViewRow = NavigationViewRow> =\n NavigationAction<NavigationViewSection<TRow>>;\n\nexport type NavigationViewSection<TRow extends NavigationViewRow = NavigationViewRow> =\n NavigationAsyncConfig & {\n id: string;\n title: ReactNode;\n columns: string[];\n rows: TRow[];\n expanded?: boolean;\n defaultExpanded?: boolean;\n onExpandedChange?: (expanded: boolean) => void;\n actions?: Array<NavigationViewSectionAction<TRow>>;\n };\n\nexport type NavigationViewConfig<TRow extends NavigationViewRow = NavigationViewRow> =\n NavigationAsyncConfig & {\n sections: Array<NavigationViewSection<TRow>>;\n };\n\nexport type NavigationMetaItem = {\n name: string;\n value: NavigationCellValue;\n [key: string]: unknown;\n};\n\nexport type NavigationMetaGroup<TItem extends NavigationMetaItem = NavigationMetaItem> = {\n title?: string;\n items: TItem[];\n};\n\nexport type NavigationMetaConfig<TItem extends NavigationMetaItem = NavigationMetaItem> =\n NavigationAsyncConfig & {\n groups: Array<NavigationMetaGroup<TItem>>;\n };\n\nexport type NavigationDetailConfig = {\n tabs: NavigationDetailTab[];\n defaultTab?: string;\n hasSearch?: boolean;\n searchPlaceholder?: string;\n actions?: NavigationHeaderAction[];\n emptyContent?: ReactNode;\n};\n\nexport type ResolveNavigationDetail<T extends NavigationItem = NavigationItem> = (\n item: T,\n) => NavigationDetailConfig | undefined;\n\nexport type NavigationDetailConfigFactory<T extends NavigationItem = NavigationItem> = (\n item: T,\n) => NavigationDetailConfig;\n\nexport type NavigationSearchConfig = {\n value?: string;\n onUpdate?: (value: string) => void;\n};\n\nexport type NavigationSortConfig = {\n value?: NavigationSortOrder;\n onUpdate?: (sort: NavigationSortOrder) => void;\n};\n\nexport type NavigationListStateConfig = {\n loading?: boolean;\n error?: boolean | ReactNode;\n hasMore?: boolean;\n onLoadMore?: () => void;\n};\n\nexport type NavigationHeaderConfig = {\n actions?: NavigationHeaderAction[];\n onLoadSuggestions?: LoadPathSuggestions;\n};\n\nexport type NavigationDetailPanelConfig<TItem extends NavigationItem = NavigationItem> = {\n openedItem?: TItem;\n onItemOpen?: (item: TItem) => void;\n onClose?: () => void;\n resolve?: ResolveNavigationDetail<TItem>;\n search?: string;\n onSearchUpdate?: (value: string) => void;\n activeTab?: string;\n onTabUpdate?: (tab: string) => void;\n actions?: NavigationHeaderAction[];\n};\n"],"mappings":"","ignoreList":[]}
@@ -9,7 +9,7 @@ export type QueryListHeader = {
9
9
  header: string;
10
10
  } & QueryListRowRenderProps;
11
11
  export type QueryListRow = {
12
- id: number;
12
+ id: number | string;
13
13
  title: string;
14
14
  query?: string;
15
15
  href?: string;
@@ -1 +1 @@
1
- {"version":3,"names":[],"sources":["queryList.ts"],"sourcesContent":["import {ReactNode} from 'react';\nimport {RegisteredFormFields} from './forms';\n\n/** ISO 8601 date string or Unix timestamp in milliseconds. */\nexport type QueryTimestamp = string | number;\n\nexport type QueryListRowRenderProps = {height: number};\n\nexport type QueryListHeader = {header: string} & QueryListRowRenderProps;\n\nexport type QueryListRow = {\n id: number;\n title: string;\n query?: string;\n href?: string;\n} & QueryListRowRenderProps;\n\nexport type QueryListItem<T extends QueryListRow = QueryListRow> = QueryListHeader | T;\n\nexport type QueryListRowVariant = 'default' | 'search';\n\nexport type QueryListRowAction<T extends QueryListRow = QueryListRow> = {\n text: ReactNode;\n icon?: ReactNode;\n theme?: 'normal' | 'danger';\n hidden?: boolean;\n disabled?: boolean;\n onClick: (item: T) => void;\n};\n\nexport type QueryListSearchConfig = {\n value?: string;\n fullSearch?: boolean;\n hasClear?: boolean;\n onUpdate: (data: {value: string; fullSearch: boolean}) => void;\n};\n\nexport type QueryListFilterConfig = {\n fields?: RegisteredFormFields[];\n values?: Record<string, any>;\n initialValues?: Record<string, any>;\n isChanged?: boolean;\n onApply?: (values: Record<string, any>) => void;\n onReset?: () => void;\n};\n\nexport type QueryListEditingConfig<T extends QueryListRow = QueryListRow> = {\n rowId?: T['id'];\n onSubmit?: (item: T, title: string) => void;\n onCancel?: (item: T) => void;\n};\n\nexport type QueryListComparisonConfig<T extends QueryListRow = QueryListRow> = {\n enabled: boolean;\n comparedRowIds: T['id'][];\n onChange: (item: T, selected: boolean) => void;\n onCancel: () => void;\n onCompare: () => void;\n};\n\ntype RowFieldKey<T extends QueryListRow> = Exclude<keyof T & string, keyof QueryListRowRenderProps>;\n\nexport type QueryListFieldKey<T extends QueryListRow = QueryListRow> = RowFieldKey<T> | 'duration';\n\nexport type QueryListFieldOption<K extends string = string> = {\n id: K;\n title: ReactNode;\n};\n\nexport type QueryListVisibleFieldsConfig<T extends QueryListRow = QueryListRow> = {\n value: QueryListFieldKey<T>[];\n fields: QueryListFieldOption<QueryListFieldKey<T>>[];\n onChange: (value: QueryListFieldKey<T>[]) => void;\n};\n\nexport type QueryListEditingRenderData<T extends QueryListRow = QueryListRow> = {\n enabled: boolean;\n} & Pick<QueryListEditingConfig<T>, 'onSubmit' | 'onCancel'>;\n\nexport type QueryListRowRenderData<T extends QueryListRow = QueryListRow> = {\n item: QueryListItem<T>;\n index: number;\n isActive: boolean;\n variant: QueryListRowVariant;\n comparison?: {\n enabled: boolean;\n checked: boolean;\n };\n visibleFields?: QueryListVisibleFieldsConfig<T>;\n actions?: QueryListRowAction<T>[];\n editing?: QueryListEditingRenderData<T>;\n};\n"],"mappings":"","ignoreList":[]}
1
+ {"version":3,"names":[],"sources":["queryList.ts"],"sourcesContent":["import {ReactNode} from 'react';\nimport {RegisteredFormFields} from './forms';\n\n/** ISO 8601 date string or Unix timestamp in milliseconds. */\nexport type QueryTimestamp = string | number;\n\nexport type QueryListRowRenderProps = {height: number};\n\nexport type QueryListHeader = {header: string} & QueryListRowRenderProps;\n\nexport type QueryListRow = {\n id: number | string;\n title: string;\n query?: string;\n href?: string;\n} & QueryListRowRenderProps;\n\nexport type QueryListItem<T extends QueryListRow = QueryListRow> = QueryListHeader | T;\n\nexport type QueryListRowVariant = 'default' | 'search';\n\nexport type QueryListRowAction<T extends QueryListRow = QueryListRow> = {\n text: ReactNode;\n icon?: ReactNode;\n theme?: 'normal' | 'danger';\n hidden?: boolean;\n disabled?: boolean;\n onClick: (item: T) => void;\n};\n\nexport type QueryListSearchConfig = {\n value?: string;\n fullSearch?: boolean;\n hasClear?: boolean;\n onUpdate: (data: {value: string; fullSearch: boolean}) => void;\n};\n\nexport type QueryListFilterConfig = {\n fields?: RegisteredFormFields[];\n values?: Record<string, any>;\n initialValues?: Record<string, any>;\n isChanged?: boolean;\n onApply?: (values: Record<string, any>) => void;\n onReset?: () => void;\n};\n\nexport type QueryListEditingConfig<T extends QueryListRow = QueryListRow> = {\n rowId?: T['id'];\n onSubmit?: (item: T, title: string) => void;\n onCancel?: (item: T) => void;\n};\n\nexport type QueryListComparisonConfig<T extends QueryListRow = QueryListRow> = {\n enabled: boolean;\n comparedRowIds: T['id'][];\n onChange: (item: T, selected: boolean) => void;\n onCancel: () => void;\n onCompare: () => void;\n};\n\ntype RowFieldKey<T extends QueryListRow> = Exclude<keyof T & string, keyof QueryListRowRenderProps>;\n\nexport type QueryListFieldKey<T extends QueryListRow = QueryListRow> = RowFieldKey<T> | 'duration';\n\nexport type QueryListFieldOption<K extends string = string> = {\n id: K;\n title: ReactNode;\n};\n\nexport type QueryListVisibleFieldsConfig<T extends QueryListRow = QueryListRow> = {\n value: QueryListFieldKey<T>[];\n fields: QueryListFieldOption<QueryListFieldKey<T>>[];\n onChange: (value: QueryListFieldKey<T>[]) => void;\n};\n\nexport type QueryListEditingRenderData<T extends QueryListRow = QueryListRow> = {\n enabled: boolean;\n} & Pick<QueryListEditingConfig<T>, 'onSubmit' | 'onCancel'>;\n\nexport type QueryListRowRenderData<T extends QueryListRow = QueryListRow> = {\n item: QueryListItem<T>;\n index: number;\n isActive: boolean;\n variant: QueryListRowVariant;\n comparison?: {\n enabled: boolean;\n checked: boolean;\n };\n visibleFields?: QueryListVisibleFieldsConfig<T>;\n actions?: QueryListRowAction<T>[];\n editing?: QueryListEditingRenderData<T>;\n};\n"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,34 @@
1
+ import type { ReactNode } from 'react';
2
+ import type { AlignType } from '@gravity-ui/react-data-table';
3
+ export type QueryResultDataTypeParameter = string | number | boolean | null | QueryResultDataType | readonly QueryResultDataType[] | readonly [string, QueryResultDataType][];
4
+ /** A YQL type tuple accepted by @gravity-ui/unipika. */
5
+ export type QueryResultDataType = readonly [string, ...QueryResultDataTypeParameter[]];
6
+ export type QueryResultFormatterSettings = {
7
+ escapeWhitespace?: boolean;
8
+ decodeUTF8?: boolean;
9
+ showDecoded?: boolean;
10
+ binaryAsHex?: boolean;
11
+ escapeYQLStrings?: boolean;
12
+ omitStructNull?: boolean;
13
+ maxListSize?: number;
14
+ maxStringSize?: number;
15
+ compact?: boolean;
16
+ };
17
+ export type QueryResultColumn<TRow extends Record<string, unknown>> = {
18
+ name: Extract<keyof TRow, string> | string;
19
+ type: QueryResultDataType;
20
+ header?: ReactNode;
21
+ width?: number | string;
22
+ align?: AlignType;
23
+ render?: (context: QueryResultCellRenderContext<TRow>) => ReactNode;
24
+ };
25
+ export type QueryResultCellRenderContext<TRow extends Record<string, unknown>> = {
26
+ row: TRow;
27
+ value: unknown;
28
+ index: number;
29
+ column: QueryResultColumn<TRow>;
30
+ };
31
+ export type QueryResultsView = 'result' | 'schema';
32
+ export type QueryResultsSchemaRenderContext<TRow extends Record<string, unknown>> = {
33
+ columns: Array<QueryResultColumn<TRow>>;
34
+ };
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ // #sourceMappingURL=queryResults.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sources":["queryResults.ts"],"sourcesContent":["import type {ReactNode} from 'react';\nimport type {AlignType} from '@gravity-ui/react-data-table';\n\nexport type QueryResultDataTypeParameter =\n | string\n | number\n | boolean\n | null\n | QueryResultDataType\n | readonly QueryResultDataType[]\n | readonly [string, QueryResultDataType][];\n\n/** A YQL type tuple accepted by @gravity-ui/unipika. */\nexport type QueryResultDataType = readonly [string, ...QueryResultDataTypeParameter[]];\n\nexport type QueryResultFormatterSettings = {\n escapeWhitespace?: boolean;\n decodeUTF8?: boolean;\n showDecoded?: boolean;\n binaryAsHex?: boolean;\n escapeYQLStrings?: boolean;\n omitStructNull?: boolean;\n maxListSize?: number;\n maxStringSize?: number;\n compact?: boolean;\n};\n\nexport type QueryResultColumn<TRow extends Record<string, unknown>> = {\n name: Extract<keyof TRow, string> | string;\n type: QueryResultDataType;\n header?: ReactNode;\n width?: number | string;\n align?: AlignType;\n render?: (context: QueryResultCellRenderContext<TRow>) => ReactNode;\n};\n\nexport type QueryResultCellRenderContext<TRow extends Record<string, unknown>> = {\n row: TRow;\n value: unknown;\n index: number;\n column: QueryResultColumn<TRow>;\n};\n\nexport type QueryResultsView = 'result' | 'schema';\n\nexport type QueryResultsSchemaRenderContext<TRow extends Record<string, unknown>> = {\n columns: Array<QueryResultColumn<TRow>>;\n};\n"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,54 @@
1
+ import type { ReactNode } from 'react';
2
+ export type QueryStatisticsColumn = 'min' | 'max' | 'avg' | 'sum' | 'count' | 'last';
3
+ export type QueryStatisticsValues = Partial<Record<QueryStatisticsColumn, number>>;
4
+ type QueryStatisticsItemBase = {
5
+ id: string;
6
+ name: string;
7
+ description?: string;
8
+ unit?: string;
9
+ };
10
+ export type QueryStatisticsMetric = QueryStatisticsItemBase & {
11
+ values: QueryStatisticsValues;
12
+ children?: never;
13
+ };
14
+ export type QueryStatisticsGroup = QueryStatisticsItemBase & {
15
+ children: QueryStatisticsItem[];
16
+ values?: never;
17
+ };
18
+ export type QueryStatisticsItem = QueryStatisticsMetric | QueryStatisticsGroup;
19
+ export type QueryStatisticsFormatValueContext = {
20
+ column: QueryStatisticsColumn;
21
+ item: QueryStatisticsMetric;
22
+ };
23
+ export type QueryStatisticsColumnConfig = {
24
+ title?: ReactNode;
25
+ width?: string;
26
+ };
27
+ export type QueryStatisticsExtraColumnContext = {
28
+ item: QueryStatisticsItem;
29
+ level: number;
30
+ };
31
+ export type QueryStatisticsExtraColumn = {
32
+ id: string;
33
+ title: ReactNode;
34
+ width?: string;
35
+ render: (context: QueryStatisticsExtraColumnContext) => ReactNode;
36
+ };
37
+ export type QueryStatisticsProps = {
38
+ data: QueryStatisticsItem[];
39
+ visibleColumns?: QueryStatisticsColumn[];
40
+ columnConfig?: Partial<Record<QueryStatisticsColumn, QueryStatisticsColumnConfig>>;
41
+ extraColumns?: QueryStatisticsExtraColumn[];
42
+ className?: string;
43
+ virtual?: boolean;
44
+ fixedHeader?: boolean;
45
+ formatValue?: (value: number | undefined, context: QueryStatisticsFormatValueContext) => ReactNode;
46
+ search?: string;
47
+ defaultSearch?: string;
48
+ onSearchUpdate?: (value: string) => void;
49
+ expandedIds?: string[];
50
+ defaultExpandedIds?: string[];
51
+ onExpandedIdsChange?: (ids: string[]) => void;
52
+ searchDebounceMs?: number;
53
+ };
54
+ export {};
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ // #sourceMappingURL=queryStatistics.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sources":["queryStatistics.ts"],"sourcesContent":["import type {ReactNode} from 'react';\n\nexport type QueryStatisticsColumn = 'min' | 'max' | 'avg' | 'sum' | 'count' | 'last';\n\nexport type QueryStatisticsValues = Partial<Record<QueryStatisticsColumn, number>>;\n\ntype QueryStatisticsItemBase = {\n id: string;\n name: string;\n description?: string;\n unit?: string;\n};\n\nexport type QueryStatisticsMetric = QueryStatisticsItemBase & {\n values: QueryStatisticsValues;\n children?: never;\n};\n\nexport type QueryStatisticsGroup = QueryStatisticsItemBase & {\n children: QueryStatisticsItem[];\n values?: never;\n};\n\nexport type QueryStatisticsItem = QueryStatisticsMetric | QueryStatisticsGroup;\n\nexport type QueryStatisticsFormatValueContext = {\n column: QueryStatisticsColumn;\n item: QueryStatisticsMetric;\n};\n\nexport type QueryStatisticsColumnConfig = {\n title?: ReactNode;\n width?: string;\n};\n\nexport type QueryStatisticsExtraColumnContext = {\n item: QueryStatisticsItem;\n level: number;\n};\n\nexport type QueryStatisticsExtraColumn = {\n id: string;\n title: ReactNode;\n width?: string;\n render: (context: QueryStatisticsExtraColumnContext) => ReactNode;\n};\n\nexport type QueryStatisticsProps = {\n data: QueryStatisticsItem[];\n visibleColumns?: QueryStatisticsColumn[];\n columnConfig?: Partial<Record<QueryStatisticsColumn, QueryStatisticsColumnConfig>>;\n extraColumns?: QueryStatisticsExtraColumn[];\n className?: string;\n virtual?: boolean;\n fixedHeader?: boolean;\n formatValue?: (\n value: number | undefined,\n context: QueryStatisticsFormatValueContext,\n ) => ReactNode;\n search?: string;\n defaultSearch?: string;\n onSearchUpdate?: (value: string) => void;\n expandedIds?: string[];\n defaultExpandedIds?: string[];\n onExpandedIdsChange?: (ids: string[]) => void;\n searchDebounceMs?: number;\n};\n"],"mappings":"","ignoreList":[]}
@@ -14,7 +14,6 @@ require("core-js/modules/es.string.search.js");
14
14
  var _react = _interopRequireDefault(require("react"));
15
15
  var _bemCnLite = _interopRequireDefault(require("bem-cn-lite"));
16
16
  var _modules = require("../../modules");
17
- var _i18n = _interopRequireDefault(require("./i18n"));
18
17
  var _HistoryRowContent = require("./internal/HistoryRowContent");
19
18
  require("./QueriesHistory.css");
20
19
  var _jsxRuntime = require("react/jsx-runtime");
@@ -36,7 +35,7 @@ var QueriesHistory = exports.QueriesHistory = function QueriesHistory(_ref) {
36
35
  className = _ref.className;
37
36
  return /*#__PURE__*/(0, _jsxRuntime.jsx)(_modules.QueriesList, {
38
37
  className: block(null, className),
39
- title: title || (0, _i18n.default)('title_history'),
38
+ title: title,
40
39
  logo: logo,
41
40
  search: search,
42
41
  filter: filter,
@@ -1 +1 @@
1
- {"version":3,"names":["_react","_interopRequireDefault","require","_bemCnLite","_modules","_i18n","_HistoryRowContent","_jsxRuntime","e","__esModule","default","block","cn","QueriesHistory","exports","_ref","title","logo","search","filter","items","selectedRowId","editing","comparison","visibleFields","renderRowItem","getRowActions","onListItemClick","className","_jsx","QueriesList","i18n","renderRow","data","HistoryRowContent","_objectSpread"],"sources":["QueriesHistory.tsx"],"sourcesContent":["import React from 'react';\nimport cn from 'bem-cn-lite';\nimport {QueriesList} from '../../modules';\nimport i18n from './i18n';\nimport {\n QueryListComparisonConfig,\n QueryListEditingConfig,\n QueryListFilterConfig,\n QueryListItem,\n QueryListRowAction,\n QueryListRowRenderData,\n QueryListSearchConfig,\n QueryListVisibleFieldsConfig,\n} from '../../types/queryList';\nimport {QueryHistoryRow} from '../../types/history';\nimport {HistoryRowContent} from './internal/HistoryRowContent';\nimport './QueriesHistory.scss';\n\nexport type QueriesHistoryProps<T extends QueryHistoryRow = QueryHistoryRow> = {\n className?: string;\n title?: string;\n logo?: React.ReactNode;\n search: QueryListSearchConfig;\n filter?: QueryListFilterConfig;\n items: QueryListItem<T>[];\n selectedRowId?: T['id'];\n editing?: QueryListEditingConfig<T>;\n comparison?: QueryListComparisonConfig<T>;\n visibleFields?: QueryListVisibleFieldsConfig<T>;\n renderRowItem?: (data: QueryListRowRenderData<T>) => React.ReactNode;\n getRowActions?: (item: T) => QueryListRowAction<T>[];\n onListItemClick?: (item: QueryListItem<T>) => void;\n};\n\nconst block = cn('qp-query-history');\n\nexport const QueriesHistory = <T extends QueryHistoryRow>({\n title,\n logo,\n search,\n filter,\n items,\n selectedRowId,\n editing,\n comparison,\n visibleFields,\n renderRowItem,\n getRowActions,\n onListItemClick,\n className,\n}: QueriesHistoryProps<T>) => {\n return (\n <QueriesList\n className={block(null, className)}\n title={title || i18n('title_history')}\n logo={logo}\n search={search}\n filter={filter}\n items={items}\n selectedRowId={selectedRowId}\n visibleFields={visibleFields}\n editing={editing}\n comparison={comparison}\n getRowActions={getRowActions}\n renderRow={(data) =>\n renderRowItem ? renderRowItem(data) : <HistoryRowContent {...data} />\n }\n onListItemClick={onListItemClick}\n />\n );\n};\n"],"mappings":";;;;;;;;;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,UAAA,GAAAF,sBAAA,CAAAC,OAAA;AACA,IAAAE,QAAA,GAAAF,OAAA;AACA,IAAAG,KAAA,GAAAJ,sBAAA,CAAAC,OAAA;AAYA,IAAAI,kBAAA,GAAAJ,OAAA;AACAA,OAAA;AAA+B,IAAAK,WAAA,GAAAL,OAAA;AAAA,SAAAD,uBAAAO,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAkB/B,IAAMG,KAAK,GAAG,IAAAC,kBAAE,EAAC,kBAAkB,CAAC;AAE7B,IAAMC,cAAc,GAAAC,OAAA,CAAAD,cAAA,GAAG,SAAjBA,cAAcA,CAAAE,IAAA,EAcG;EAAA,IAb1BC,KAAK,GAAAD,IAAA,CAALC,KAAK;IACLC,IAAI,GAAAF,IAAA,CAAJE,IAAI;IACJC,MAAM,GAAAH,IAAA,CAANG,MAAM;IACNC,MAAM,GAAAJ,IAAA,CAANI,MAAM;IACNC,KAAK,GAAAL,IAAA,CAALK,KAAK;IACLC,aAAa,GAAAN,IAAA,CAAbM,aAAa;IACbC,OAAO,GAAAP,IAAA,CAAPO,OAAO;IACPC,UAAU,GAAAR,IAAA,CAAVQ,UAAU;IACVC,aAAa,GAAAT,IAAA,CAAbS,aAAa;IACbC,aAAa,GAAAV,IAAA,CAAbU,aAAa;IACbC,aAAa,GAAAX,IAAA,CAAbW,aAAa;IACbC,eAAe,GAAAZ,IAAA,CAAfY,eAAe;IACfC,SAAS,GAAAb,IAAA,CAATa,SAAS;EAET,oBACI,IAAAC,eAAA,EAACC,oBAAW;IACRF,SAAS,EAAEjB,KAAK,CAAC,IAAI,EAAEiB,SAAS,CAAE;IAClCZ,KAAK,EAAEA,KAAK,IAAI,IAAAe,aAAI,EAAC,eAAe,CAAE;IACtCd,IAAI,EAAEA,IAAK;IACXC,MAAM,EAAEA,MAAO;IACfC,MAAM,EAAEA,MAAO;IACfC,KAAK,EAAEA,KAAM;IACbC,aAAa,EAAEA,aAAc;IAC7BG,aAAa,EAAEA,aAAc;IAC7BF,OAAO,EAAEA,OAAQ;IACjBC,UAAU,EAAEA,UAAW;IACvBG,aAAa,EAAEA,aAAc;IAC7BM,SAAS,EAAE,SAAXA,SAASA,CAAGC,IAAI;MAAA,OACZR,aAAa,GAAGA,aAAa,CAACQ,IAAI,CAAC,gBAAG,IAAAJ,eAAA,EAACK,oCAAiB,MAAAC,sBAAA,MAAKF,IAAI,CAAG,CAAC;IAAA,CACxE;IACDN,eAAe,EAAEA;EAAgB,CACpC,CAAC;AAEV,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_bemCnLite","_modules","_HistoryRowContent","_jsxRuntime","e","__esModule","default","block","cn","QueriesHistory","exports","_ref","title","logo","search","filter","items","selectedRowId","editing","comparison","visibleFields","renderRowItem","getRowActions","onListItemClick","className","_jsx","QueriesList","renderRow","data","HistoryRowContent","_objectSpread"],"sources":["QueriesHistory.tsx"],"sourcesContent":["import React from 'react';\nimport cn from 'bem-cn-lite';\nimport {QueriesList} from '../../modules';\nimport {\n QueryListComparisonConfig,\n QueryListEditingConfig,\n QueryListFilterConfig,\n QueryListItem,\n QueryListRowAction,\n QueryListRowRenderData,\n QueryListSearchConfig,\n QueryListVisibleFieldsConfig,\n} from '../../types/queryList';\nimport {QueryHistoryRow} from '../../types/history';\nimport {HistoryRowContent} from './internal/HistoryRowContent';\nimport './QueriesHistory.scss';\n\nexport type QueriesHistoryProps<T extends QueryHistoryRow = QueryHistoryRow> = {\n className?: string;\n title?: string;\n logo?: React.ReactNode;\n search: QueryListSearchConfig;\n filter?: QueryListFilterConfig;\n items: QueryListItem<T>[];\n selectedRowId?: T['id'];\n editing?: QueryListEditingConfig<T>;\n comparison?: QueryListComparisonConfig<T>;\n visibleFields?: QueryListVisibleFieldsConfig<T>;\n renderRowItem?: (data: QueryListRowRenderData<T>) => React.ReactNode;\n getRowActions?: (item: T) => QueryListRowAction<T>[];\n onListItemClick?: (item: QueryListItem<T>) => void;\n};\n\nconst block = cn('qp-query-history');\n\nexport const QueriesHistory = <T extends QueryHistoryRow>({\n title,\n logo,\n search,\n filter,\n items,\n selectedRowId,\n editing,\n comparison,\n visibleFields,\n renderRowItem,\n getRowActions,\n onListItemClick,\n className,\n}: QueriesHistoryProps<T>) => {\n return (\n <QueriesList\n className={block(null, className)}\n title={title}\n logo={logo}\n search={search}\n filter={filter}\n items={items}\n selectedRowId={selectedRowId}\n visibleFields={visibleFields}\n editing={editing}\n comparison={comparison}\n getRowActions={getRowActions}\n renderRow={(data) =>\n renderRowItem ? renderRowItem(data) : <HistoryRowContent {...data} />\n }\n onListItemClick={onListItemClick}\n />\n );\n};\n"],"mappings":";;;;;;;;;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,UAAA,GAAAF,sBAAA,CAAAC,OAAA;AACA,IAAAE,QAAA,GAAAF,OAAA;AAYA,IAAAG,kBAAA,GAAAH,OAAA;AACAA,OAAA;AAA+B,IAAAI,WAAA,GAAAJ,OAAA;AAAA,SAAAD,uBAAAM,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAkB/B,IAAMG,KAAK,GAAG,IAAAC,kBAAE,EAAC,kBAAkB,CAAC;AAE7B,IAAMC,cAAc,GAAAC,OAAA,CAAAD,cAAA,GAAG,SAAjBA,cAAcA,CAAAE,IAAA,EAcG;EAAA,IAb1BC,KAAK,GAAAD,IAAA,CAALC,KAAK;IACLC,IAAI,GAAAF,IAAA,CAAJE,IAAI;IACJC,MAAM,GAAAH,IAAA,CAANG,MAAM;IACNC,MAAM,GAAAJ,IAAA,CAANI,MAAM;IACNC,KAAK,GAAAL,IAAA,CAALK,KAAK;IACLC,aAAa,GAAAN,IAAA,CAAbM,aAAa;IACbC,OAAO,GAAAP,IAAA,CAAPO,OAAO;IACPC,UAAU,GAAAR,IAAA,CAAVQ,UAAU;IACVC,aAAa,GAAAT,IAAA,CAAbS,aAAa;IACbC,aAAa,GAAAV,IAAA,CAAbU,aAAa;IACbC,aAAa,GAAAX,IAAA,CAAbW,aAAa;IACbC,eAAe,GAAAZ,IAAA,CAAfY,eAAe;IACfC,SAAS,GAAAb,IAAA,CAATa,SAAS;EAET,oBACI,IAAAC,eAAA,EAACC,oBAAW;IACRF,SAAS,EAAEjB,KAAK,CAAC,IAAI,EAAEiB,SAAS,CAAE;IAClCZ,KAAK,EAAEA,KAAM;IACbC,IAAI,EAAEA,IAAK;IACXC,MAAM,EAAEA,MAAO;IACfC,MAAM,EAAEA,MAAO;IACfC,KAAK,EAAEA,KAAM;IACbC,aAAa,EAAEA,aAAc;IAC7BG,aAAa,EAAEA,aAAc;IAC7BF,OAAO,EAAEA,OAAQ;IACjBC,UAAU,EAAEA,UAAW;IACvBG,aAAa,EAAEA,aAAc;IAC7BK,SAAS,EAAE,SAAXA,SAASA,CAAGC,IAAI;MAAA,OACZP,aAAa,GAAGA,aAAa,CAACO,IAAI,CAAC,gBAAG,IAAAH,eAAA,EAACI,oCAAiB,MAAAC,sBAAA,MAAKF,IAAI,CAAG,CAAC;IAAA,CACxE;IACDL,eAAe,EAAEA;EAAgB,CACpC,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -5,3 +5,4 @@ export default meta;
5
5
  type Story = StoryObj<typeof QueriesHistory>;
6
6
  export declare const Default: Story;
7
7
  export declare const Empty: Story;
8
+ export declare const WithHeader: Story;
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.default = exports.Empty = exports.Default = void 0;
6
+ exports.default = exports.WithHeader = exports.Empty = exports.Default = void 0;
7
7
  var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
8
8
  var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
9
9
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
@@ -18,6 +18,7 @@ require("core-js/modules/es.iterator.filter.js");
18
18
  require("core-js/modules/es.object.to-string.js");
19
19
  require("core-js/modules/es.string.includes.js");
20
20
  var _react = _interopRequireWildcard(require("react"));
21
+ var _uikit = require("@gravity-ui/uikit");
21
22
  var _QueriesHistory = require("./QueriesHistory");
22
23
  var _actions = require("storybook/actions");
23
24
  var _jsxRuntime = require("react/jsx-runtime");
@@ -80,6 +81,33 @@ var BASE_ITEMS = [{
80
81
  startTime: now - 30 * 60 * min,
81
82
  query: QUERY,
82
83
  height: 52
84
+ }, {
85
+ id: 6,
86
+ title: 'Query 6',
87
+ status: 'draft',
88
+ engine: 'YQL',
89
+ mode: 'Test',
90
+ startTime: now - 30 * 60 * min,
91
+ query: QUERY,
92
+ height: 52
93
+ }, {
94
+ id: 7,
95
+ title: 'Query 7',
96
+ status: 'draft',
97
+ engine: 'YQL',
98
+ mode: 'Test',
99
+ startTime: now - 30 * 60 * min,
100
+ query: QUERY,
101
+ height: 52
102
+ }, {
103
+ id: 8,
104
+ title: 'Query 8',
105
+ status: 'draft',
106
+ engine: 'YQL',
107
+ mode: 'Test',
108
+ startTime: now - 30 * 60 * min,
109
+ query: QUERY,
110
+ height: 52
83
111
  }];
84
112
  var activeFields = ['duration', 'mode', 'startTime', 'engine', 'isPrivate'];
85
113
  var fields = [{
@@ -130,6 +158,13 @@ var meta = {
130
158
  layout: 'padded'
131
159
  }
132
160
  };
161
+ var operationFilterOptions = [{
162
+ value: 'My',
163
+ content: 'My'
164
+ }, {
165
+ value: 'All',
166
+ content: 'All'
167
+ }];
133
168
  var _default = exports.default = meta;
134
169
  var DefaultStory = function DefaultStory() {
135
170
  var _useState = (0, _react.useState)([].concat(BASE_ITEMS)),
@@ -285,6 +320,47 @@ var EmptyStory = function EmptyStory() {
285
320
  })
286
321
  });
287
322
  };
323
+ var WithHeaderStory = function WithHeaderStory() {
324
+ var _useState13 = (0, _react.useState)({
325
+ value: '',
326
+ fullSearch: false
327
+ }),
328
+ _useState14 = (0, _slicedToArray2.default)(_useState13, 2),
329
+ search = _useState14[0],
330
+ setSearch = _useState14[1];
331
+ var _useState15 = (0, _react.useState)(activeFields),
332
+ _useState16 = (0, _slicedToArray2.default)(_useState15, 2),
333
+ visibleFields = _useState16[0],
334
+ setVisibleFields = _useState16[1];
335
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
336
+ style: {
337
+ width: 300,
338
+ height: 500
339
+ },
340
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_QueriesHistory.QueriesHistory, {
341
+ items: BASE_ITEMS,
342
+ logo: /*#__PURE__*/(0, _jsxRuntime.jsx)(_uikit.SegmentedRadioGroup, {
343
+ options: operationFilterOptions
344
+ }),
345
+ visibleFields: {
346
+ value: visibleFields,
347
+ fields: fields,
348
+ onChange: setVisibleFields
349
+ },
350
+ filter: {
351
+ fields: filterFields,
352
+ onApply: logFilterApply,
353
+ onReset: logFilterReset('reset')
354
+ },
355
+ search: {
356
+ value: search.value,
357
+ fullSearch: search.fullSearch,
358
+ hasClear: true,
359
+ onUpdate: setSearch
360
+ }
361
+ })
362
+ });
363
+ };
288
364
  var Default = exports.Default = {
289
365
  render: function render() {
290
366
  return /*#__PURE__*/(0, _jsxRuntime.jsx)(DefaultStory, {});
@@ -295,4 +371,9 @@ var Empty = exports.Empty = {
295
371
  return /*#__PURE__*/(0, _jsxRuntime.jsx)(EmptyStory, {});
296
372
  }
297
373
  };
374
+ var WithHeader = exports.WithHeader = {
375
+ render: function render() {
376
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(WithHeaderStory, {});
377
+ }
378
+ };
298
379
  // #sourceMappingURL=QueriesHistory.stories.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["_react","_interopRequireWildcard","require","_QueriesHistory","_actions","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","_interopRequireDefault","now","Date","min","QUERY","BASE_ITEMS","header","height","id","title","status","engine","mode","startTime","endTime","query","activeFields","fields","filterFields","type","initialValue","items","logFilterApply","action","logFilterReset","meta","component","QueriesHistory","tags","parameters","layout","_default","exports","DefaultStory","_useState","useState","concat","_useState2","_slicedToArray","setItems","_useState3","value","fullSearch","_useState4","search","setSearch","_useState5","_useState6","visibleFields","setVisibleFields","_useState7","_useState8","compareMode","setCompareMode","_useState9","_useState0","comparedRows","setComparedRows","_useState1","undefined","_useState10","editingId","setEditingId","handleCompareChange","item","selected","result","_toConsumableArray","slice","filter","length","handleCompareCancel","handleEditSubmit","index","findIndex","_objectSpread","handleEditCancel","handleCompare","handleOnSearch","data","newItems","_item$query","toLowerCase","searchValue","includes","_jsx","style","width","children","onChange","hasClear","onUpdate","onApply","onReset","getRowActions","text","onClick","comparison","enabled","comparedRowIds","onCancel","onCompare","editing","rowId","onSubmit","EmptyStory","_useState11","_useState12","Default","render","Empty"],"sources":["QueriesHistory.stories.tsx"],"sourcesContent":["import React, {useState} from 'react';\nimport type {Meta, StoryObj} from '@storybook/react';\nimport {QueriesHistory} from './QueriesHistory';\nimport {\n QueryListFieldKey,\n QueryListFilterConfig,\n QueryListItem,\n QueryListVisibleFieldsConfig,\n} from '../../types/queryList';\nimport {QueryHistoryRow} from '../../types/history';\nimport {action} from 'storybook/actions';\n\nconst now = Date.now();\nconst min = 60 * 1000;\n\nconst QUERY = `use test;\n\nSELECT\n \"test_session\" AS session_id,\n \"test_task\" AS task_id,\n SUBSTRING(\"test\", 1, 1) AS truncated_char`;\n\nconst BASE_ITEMS: QueryListItem<QueryHistoryRow>[] = [\n {header: 'Today', height: 28},\n {\n id: 1,\n title: 'Query 1',\n status: 'completed',\n engine: 'YQL',\n mode: 'Validation',\n startTime: now - 2 * min,\n endTime: now - min,\n query: QUERY,\n height: 52,\n },\n {\n id: 2,\n title: 'Query 2',\n status: 'failed',\n engine: 'YQL',\n mode: 'Test',\n startTime: now - 10 * min,\n endTime: now - 9 * min,\n query: QUERY,\n height: 52,\n },\n {\n id: 3,\n title: 'Query 3',\n status: 'running',\n engine: 'YQL',\n mode: 'Test',\n startTime: now - min,\n query: QUERY,\n height: 52,\n },\n {header: 'Yesterday', height: 28},\n {\n id: 4,\n title: 'Query 4',\n status: 'aborted',\n engine: 'YQL',\n mode: 'Validation',\n startTime: now - 25 * 60 * min,\n endTime: now - 24 * 60 * min,\n query: 'SELECT 1',\n height: 52,\n },\n {\n id: 5,\n title: 'Query 5',\n status: 'draft',\n engine: 'YQL',\n mode: 'Test',\n startTime: now - 30 * 60 * min,\n query: QUERY,\n height: 52,\n },\n];\n\ntype VisibleFields = QueryListVisibleFieldsConfig<QueryHistoryRow>['fields'];\nconst activeFields: QueryListFieldKey<QueryHistoryRow>[] = [\n 'duration',\n 'mode',\n 'startTime',\n 'engine',\n 'isPrivate',\n];\nconst fields: VisibleFields = [\n {\n id: 'duration',\n title: 'Duration',\n },\n {\n id: 'mode',\n title: 'Mode',\n },\n {\n id: 'startTime',\n title: 'Start time',\n },\n {\n id: 'engine',\n title: 'Engine',\n },\n {\n id: 'isPrivate',\n title: 'ACO',\n },\n];\n\nconst filterFields: QueryListFilterConfig['fields'] = [\n {id: 'onlyMine', type: 'switch', title: 'My queries only', initialValue: true},\n {id: 'range', type: 'rangeDatePicker', title: 'Period'},\n {\n id: 'dialect',\n type: 'checkboxGroup',\n title: 'Dialect',\n initialValue: [],\n items: [\n {id: 'yql', title: 'YQL'},\n {id: 'sql', title: 'SQL'},\n ],\n },\n];\n\nconst logFilterApply = action('onFilterApply');\nconst logFilterReset = action('onFilterReset');\n\nconst meta: Meta<typeof QueriesHistory> = {\n title: 'Widgets/QueriesHistory',\n component: QueriesHistory,\n tags: ['autodocs'],\n parameters: {\n layout: 'padded',\n },\n};\n\nexport default meta;\ntype Story = StoryObj<typeof QueriesHistory>;\n\nconst DefaultStory = () => {\n const [items, setItems] = useState([...BASE_ITEMS]);\n const [search, setSearch] = useState({value: '', fullSearch: false});\n const [visibleFields, setVisibleFields] =\n useState<QueryListFieldKey<QueryHistoryRow>[]>(activeFields);\n const [compareMode, setCompareMode] = useState(false);\n const [comparedRows, setComparedRows] = useState<number[]>([]);\n const [editingId, setEditingId] = useState<number | undefined>(undefined);\n\n const handleCompareChange = (item: QueryHistoryRow, selected: boolean) => {\n const result = selected\n ? [...comparedRows.slice(0, 1), item.id]\n : comparedRows.filter((id) => id !== item.id);\n setComparedRows(result);\n\n if (!result.length) setCompareMode(false);\n };\n\n const handleCompareCancel = () => {\n setComparedRows([]);\n setCompareMode(false);\n };\n\n const handleEditSubmit = (item: QueryHistoryRow, title: string) => {\n const index = items.findIndex((i) => 'id' in i && i.id === item.id);\n if (index < 0) return;\n\n const result = [...items];\n result[index] = {...result[index], title};\n setItems(result);\n setEditingId(undefined);\n };\n\n const handleEditCancel = () => {\n setEditingId(undefined);\n };\n\n const handleCompare = () => {\n action('onCompare')(comparedRows);\n };\n\n const handleOnSearch = (data: {value: string; fullSearch: boolean}) => {\n setSearch(data);\n\n if (!data.value) {\n setItems(BASE_ITEMS);\n return;\n }\n\n const newItems = BASE_ITEMS.filter((item) => {\n if (!('id' in item)) return false;\n\n const title = item.title.toLowerCase();\n const query = item.query?.toLowerCase();\n const searchValue = data.value.toLowerCase();\n\n if (data.fullSearch) {\n return title.includes(searchValue) || query?.includes(searchValue);\n }\n\n return title.includes(searchValue);\n });\n setItems(newItems);\n };\n\n return (\n <div style={{width: 300, height: 500}}>\n <QueriesHistory\n title=\"History\"\n items={items}\n visibleFields={{value: visibleFields, fields, onChange: setVisibleFields}}\n search={{\n value: search.value,\n fullSearch: search.fullSearch,\n hasClear: true,\n onUpdate: handleOnSearch,\n }}\n filter={{\n fields: filterFields,\n onApply: logFilterApply,\n onReset: logFilterReset('reset'),\n }}\n getRowActions={() => [\n {\n text: 'Compare',\n onClick: (item) => {\n setCompareMode(true);\n setComparedRows([item.id]);\n },\n },\n {\n text: 'Edit',\n onClick: (item) => {\n setEditingId(item.id);\n },\n },\n ]}\n comparison={{\n enabled: compareMode,\n comparedRowIds: comparedRows,\n onChange: handleCompareChange,\n onCancel: handleCompareCancel,\n onCompare: handleCompare,\n }}\n editing={{\n rowId: editingId,\n onSubmit: handleEditSubmit,\n onCancel: handleEditCancel,\n }}\n />\n </div>\n );\n};\n\nconst EmptyStory = () => {\n const [search, setSearch] = useState({value: '', fullSearch: false});\n\n return (\n <div style={{width: 300, height: 500}}>\n <QueriesHistory\n title=\"History\"\n items={[]}\n search={{\n value: search.value,\n fullSearch: search.fullSearch,\n hasClear: true,\n onUpdate: setSearch,\n }}\n />\n </div>\n );\n};\n\nexport const Default: Story = {render: () => <DefaultStory />};\nexport const Empty: Story = {render: () => <EmptyStory />};\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_uikit","_QueriesHistory","_actions","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","_interopRequireDefault","now","Date","min","QUERY","BASE_ITEMS","header","height","id","title","status","engine","mode","startTime","endTime","query","activeFields","fields","filterFields","type","initialValue","items","logFilterApply","action","logFilterReset","meta","component","QueriesHistory","tags","parameters","layout","operationFilterOptions","value","content","_default","exports","DefaultStory","_useState","useState","concat","_useState2","_slicedToArray","setItems","_useState3","fullSearch","_useState4","search","setSearch","_useState5","_useState6","visibleFields","setVisibleFields","_useState7","_useState8","compareMode","setCompareMode","_useState9","_useState0","comparedRows","setComparedRows","_useState1","undefined","_useState10","editingId","setEditingId","handleCompareChange","item","selected","result","_toConsumableArray","slice","filter","length","handleCompareCancel","handleEditSubmit","index","findIndex","_objectSpread","handleEditCancel","handleCompare","handleOnSearch","data","newItems","_item$query","toLowerCase","searchValue","includes","_jsx","style","width","children","onChange","hasClear","onUpdate","onApply","onReset","getRowActions","text","onClick","comparison","enabled","comparedRowIds","onCancel","onCompare","editing","rowId","onSubmit","EmptyStory","_useState11","_useState12","WithHeaderStory","_useState13","_useState14","_useState15","_useState16","logo","SegmentedRadioGroup","options","Default","render","Empty","WithHeader"],"sources":["QueriesHistory.stories.tsx"],"sourcesContent":["import React, {useState} from 'react';\nimport type {Meta, StoryObj} from '@storybook/react';\nimport {SegmentedRadioGroup} from '@gravity-ui/uikit';\nimport {QueriesHistory} from './QueriesHistory';\nimport {\n QueryListFieldKey,\n QueryListFilterConfig,\n QueryListItem,\n QueryListVisibleFieldsConfig,\n} from '../../types/queryList';\nimport {QueryHistoryRow} from '../../types/history';\nimport {action} from 'storybook/actions';\n\nconst now = Date.now();\nconst min = 60 * 1000;\n\nconst QUERY = `use test;\n\nSELECT\n \"test_session\" AS session_id,\n \"test_task\" AS task_id,\n SUBSTRING(\"test\", 1, 1) AS truncated_char`;\n\nconst BASE_ITEMS: QueryListItem<QueryHistoryRow>[] = [\n {header: 'Today', height: 28},\n {\n id: 1,\n title: 'Query 1',\n status: 'completed',\n engine: 'YQL',\n mode: 'Validation',\n startTime: now - 2 * min,\n endTime: now - min,\n query: QUERY,\n height: 52,\n },\n {\n id: 2,\n title: 'Query 2',\n status: 'failed',\n engine: 'YQL',\n mode: 'Test',\n startTime: now - 10 * min,\n endTime: now - 9 * min,\n query: QUERY,\n height: 52,\n },\n {\n id: 3,\n title: 'Query 3',\n status: 'running',\n engine: 'YQL',\n mode: 'Test',\n startTime: now - min,\n query: QUERY,\n height: 52,\n },\n {header: 'Yesterday', height: 28},\n {\n id: 4,\n title: 'Query 4',\n status: 'aborted',\n engine: 'YQL',\n mode: 'Validation',\n startTime: now - 25 * 60 * min,\n endTime: now - 24 * 60 * min,\n query: 'SELECT 1',\n height: 52,\n },\n {\n id: 5,\n title: 'Query 5',\n status: 'draft',\n engine: 'YQL',\n mode: 'Test',\n startTime: now - 30 * 60 * min,\n query: QUERY,\n height: 52,\n },\n {\n id: 6,\n title: 'Query 6',\n status: 'draft',\n engine: 'YQL',\n mode: 'Test',\n startTime: now - 30 * 60 * min,\n query: QUERY,\n height: 52,\n },\n {\n id: 7,\n title: 'Query 7',\n status: 'draft',\n engine: 'YQL',\n mode: 'Test',\n startTime: now - 30 * 60 * min,\n query: QUERY,\n height: 52,\n },\n {\n id: 8,\n title: 'Query 8',\n status: 'draft',\n engine: 'YQL',\n mode: 'Test',\n startTime: now - 30 * 60 * min,\n query: QUERY,\n height: 52,\n },\n];\n\ntype VisibleFields = QueryListVisibleFieldsConfig<QueryHistoryRow>['fields'];\nconst activeFields: QueryListFieldKey<QueryHistoryRow>[] = [\n 'duration',\n 'mode',\n 'startTime',\n 'engine',\n 'isPrivate',\n];\nconst fields: VisibleFields = [\n {\n id: 'duration',\n title: 'Duration',\n },\n {\n id: 'mode',\n title: 'Mode',\n },\n {\n id: 'startTime',\n title: 'Start time',\n },\n {\n id: 'engine',\n title: 'Engine',\n },\n {\n id: 'isPrivate',\n title: 'ACO',\n },\n];\n\nconst filterFields: QueryListFilterConfig['fields'] = [\n {id: 'onlyMine', type: 'switch', title: 'My queries only', initialValue: true},\n {id: 'range', type: 'rangeDatePicker', title: 'Period'},\n {\n id: 'dialect',\n type: 'checkboxGroup',\n title: 'Dialect',\n initialValue: [],\n items: [\n {id: 'yql', title: 'YQL'},\n {id: 'sql', title: 'SQL'},\n ],\n },\n];\n\nconst logFilterApply = action('onFilterApply');\nconst logFilterReset = action('onFilterReset');\n\nconst meta: Meta<typeof QueriesHistory> = {\n title: 'Widgets/QueriesHistory',\n component: QueriesHistory,\n tags: ['autodocs'],\n parameters: {\n layout: 'padded',\n },\n};\n\nconst operationFilterOptions = [\n {\n value: 'My',\n content: 'My',\n },\n {\n value: 'All',\n content: 'All',\n },\n];\n\nexport default meta;\ntype Story = StoryObj<typeof QueriesHistory>;\n\nconst DefaultStory = () => {\n const [items, setItems] = useState([...BASE_ITEMS]);\n const [search, setSearch] = useState({value: '', fullSearch: false});\n const [visibleFields, setVisibleFields] =\n useState<QueryListFieldKey<QueryHistoryRow>[]>(activeFields);\n const [compareMode, setCompareMode] = useState(false);\n const [comparedRows, setComparedRows] = useState<(number | string)[]>([]);\n const [editingId, setEditingId] = useState<number | string | undefined>(undefined);\n\n const handleCompareChange = (item: QueryHistoryRow, selected: boolean) => {\n const result = selected\n ? [...comparedRows.slice(0, 1), item.id]\n : comparedRows.filter((id) => id !== item.id);\n setComparedRows(result);\n\n if (!result.length) setCompareMode(false);\n };\n\n const handleCompareCancel = () => {\n setComparedRows([]);\n setCompareMode(false);\n };\n\n const handleEditSubmit = (item: QueryHistoryRow, title: string) => {\n const index = items.findIndex((i) => 'id' in i && i.id === item.id);\n if (index < 0) return;\n\n const result = [...items];\n result[index] = {...result[index], title};\n setItems(result);\n setEditingId(undefined);\n };\n\n const handleEditCancel = () => {\n setEditingId(undefined);\n };\n\n const handleCompare = () => {\n action('onCompare')(comparedRows);\n };\n\n const handleOnSearch = (data: {value: string; fullSearch: boolean}) => {\n setSearch(data);\n\n if (!data.value) {\n setItems(BASE_ITEMS);\n return;\n }\n\n const newItems = BASE_ITEMS.filter((item) => {\n if (!('id' in item)) return false;\n\n const title = item.title.toLowerCase();\n const query = item.query?.toLowerCase();\n const searchValue = data.value.toLowerCase();\n\n if (data.fullSearch) {\n return title.includes(searchValue) || query?.includes(searchValue);\n }\n\n return title.includes(searchValue);\n });\n setItems(newItems);\n };\n\n return (\n <div style={{width: 300, height: 500}}>\n <QueriesHistory\n title=\"History\"\n items={items}\n visibleFields={{value: visibleFields, fields, onChange: setVisibleFields}}\n search={{\n value: search.value,\n fullSearch: search.fullSearch,\n hasClear: true,\n onUpdate: handleOnSearch,\n }}\n filter={{\n fields: filterFields,\n onApply: logFilterApply,\n onReset: logFilterReset('reset'),\n }}\n getRowActions={() => [\n {\n text: 'Compare',\n onClick: (item) => {\n setCompareMode(true);\n setComparedRows([item.id]);\n },\n },\n {\n text: 'Edit',\n onClick: (item) => {\n setEditingId(item.id);\n },\n },\n ]}\n comparison={{\n enabled: compareMode,\n comparedRowIds: comparedRows,\n onChange: handleCompareChange,\n onCancel: handleCompareCancel,\n onCompare: handleCompare,\n }}\n editing={{\n rowId: editingId,\n onSubmit: handleEditSubmit,\n onCancel: handleEditCancel,\n }}\n />\n </div>\n );\n};\n\nconst EmptyStory = () => {\n const [search, setSearch] = useState({value: '', fullSearch: false});\n\n return (\n <div style={{width: 300, height: 500}}>\n <QueriesHistory\n title=\"History\"\n items={[]}\n search={{\n value: search.value,\n fullSearch: search.fullSearch,\n hasClear: true,\n onUpdate: setSearch,\n }}\n />\n </div>\n );\n};\n\nconst WithHeaderStory = () => {\n const [search, setSearch] = useState({value: '', fullSearch: false});\n const [visibleFields, setVisibleFields] =\n useState<QueryListFieldKey<QueryHistoryRow>[]>(activeFields);\n\n return (\n <div style={{width: 300, height: 500}}>\n <QueriesHistory\n items={BASE_ITEMS}\n logo={<SegmentedRadioGroup options={operationFilterOptions} />}\n visibleFields={{value: visibleFields, fields, onChange: setVisibleFields}}\n filter={{\n fields: filterFields,\n onApply: logFilterApply,\n onReset: logFilterReset('reset'),\n }}\n search={{\n value: search.value,\n fullSearch: search.fullSearch,\n hasClear: true,\n onUpdate: setSearch,\n }}\n />\n </div>\n );\n};\n\nexport const Default: Story = {render: () => <DefaultStory />};\nexport const Empty: Story = {render: () => <EmptyStory />};\nexport const WithHeader: Story = {render: () => <WithHeaderStory />};\n"],"mappings":"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","ignoreList":[]}