@retailcrm/datalens-ui 0.0.1 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5581) hide show
  1. package/i18n/constants.js +10 -0
  2. package/i18n/index.js +23 -0
  3. package/i18n/utils.js +29 -0
  4. package/index.css +18533 -16857
  5. package/package.json +1 -1
  6. package/public/i18n/data.json +3285 -0
  7. package/public/i18n/en.b7a02f3f.js +3359 -0
  8. package/public/i18n/manifest.json +4 -0
  9. package/public/i18n/ru.baa3b15e.js +3359 -0
  10. package/shared/components/auth/constants/cookie.js +6 -0
  11. package/shared/components/auth/constants/role.js +11 -0
  12. package/shared/components/auth/constants/token.js +4 -0
  13. package/shared/components/auth/constants/url.js +4 -0
  14. package/shared/constants/api-v2.js +8 -0
  15. package/shared/constants/chartkit-handlers.js +18 -0
  16. package/shared/constants/charts.js +10 -0
  17. package/shared/constants/collections.js +8 -0
  18. package/shared/constants/colors/common/classic-20.js +30 -0
  19. package/shared/constants/colors/common/datalens.js +30 -0
  20. package/shared/constants/colors/common/default-20.js +30 -0
  21. package/shared/constants/colors/common/emerald-20.js +30 -0
  22. package/shared/constants/colors/common/golden-20.js +30 -0
  23. package/shared/constants/colors/common/neutral-20.js +30 -0
  24. package/shared/constants/colors/common/oceanic-20.js +30 -0
  25. package/shared/constants/colors/common/traffic-light-9.js +19 -0
  26. package/shared/constants/colors/index.js +85 -0
  27. package/shared/constants/colors/types.js +41 -0
  28. package/shared/constants/common.js +118 -0
  29. package/shared/constants/connections.js +108 -0
  30. package/shared/constants/cookie.js +6 -0
  31. package/shared/constants/dash.js +63 -0
  32. package/shared/constants/datasets.js +8 -0
  33. package/shared/constants/datepicker/relative-datepicker.js +14 -0
  34. package/shared/constants/entry.d.ts +65 -0
  35. package/shared/constants/entry.js +100 -0
  36. package/shared/constants/error-codes.js +66 -0
  37. package/shared/constants/exports.js +10 -0
  38. package/shared/constants/gradients/default.js +12 -0
  39. package/shared/constants/gradients/index.js +73 -0
  40. package/shared/constants/gradients/three-point/blue-gray-red.js +7 -0
  41. package/shared/constants/gradients/three-point/blue-yellow-red.js +7 -0
  42. package/shared/constants/gradients/three-point/orange-blue-green.js +7 -0
  43. package/shared/constants/gradients/three-point/orange-gray-blue.js +7 -0
  44. package/shared/constants/gradients/three-point/orange-violet-blue.js +7 -0
  45. package/shared/constants/gradients/three-point/pink-gray-green.js +7 -0
  46. package/shared/constants/gradients/three-point/red-orange-green.js +7 -0
  47. package/shared/constants/gradients/three-point/traffic-light.js +7 -0
  48. package/shared/constants/gradients/three-point/violet-blue-green.js +7 -0
  49. package/shared/constants/gradients/three-point/yellow-green-blue.js +7 -0
  50. package/shared/constants/gradients/three-point-gradients.js +38 -0
  51. package/shared/constants/gradients/two-point/blue.js +7 -0
  52. package/shared/constants/gradients/two-point/cyan.js +7 -0
  53. package/shared/constants/gradients/two-point/golden.js +7 -0
  54. package/shared/constants/gradients/two-point/gray.js +7 -0
  55. package/shared/constants/gradients/two-point/green-blue.js +7 -0
  56. package/shared/constants/gradients/two-point/green.js +7 -0
  57. package/shared/constants/gradients/two-point/oceanic.js +7 -0
  58. package/shared/constants/gradients/two-point/orange-yellow.js +7 -0
  59. package/shared/constants/gradients/two-point/red-blue.js +7 -0
  60. package/shared/constants/gradients/two-point/red.js +7 -0
  61. package/shared/constants/gradients/two-point/violet-orange.js +7 -0
  62. package/shared/constants/gradients/two-point/violet.js +7 -0
  63. package/shared/constants/gradients/two-point/yellow.js +7 -0
  64. package/shared/constants/gradients/two-point-gradients.js +47 -0
  65. package/shared/constants/header.js +78 -0
  66. package/shared/constants/index.js +230 -0
  67. package/shared/constants/markdown.js +4 -0
  68. package/shared/constants/markup.js +4 -0
  69. package/shared/constants/navigation.js +24 -0
  70. package/shared/constants/old-schema.js +8 -0
  71. package/shared/constants/placeholder.js +32 -0
  72. package/shared/constants/print.js +6 -0
  73. package/shared/constants/qa/action-panel.js +20 -0
  74. package/shared/constants/qa/chart.js +66 -0
  75. package/shared/constants/qa/collections.js +17 -0
  76. package/shared/constants/qa/components.js +240 -0
  77. package/shared/constants/qa/connections.js +40 -0
  78. package/shared/constants/qa/control.js +83 -0
  79. package/shared/constants/qa/dash.js +129 -0
  80. package/shared/constants/qa/datasets.js +76 -0
  81. package/shared/constants/qa/dl-navigation.js +13 -0
  82. package/shared/constants/qa/field-editor.js +7 -0
  83. package/shared/constants/qa/index.js +134 -0
  84. package/shared/constants/qa/ql.js +41 -0
  85. package/shared/constants/qa/settings.js +17 -0
  86. package/shared/constants/qa/sign-in.js +8 -0
  87. package/shared/constants/qa/uikit.js +10 -0
  88. package/shared/constants/qa/visualization.js +22 -0
  89. package/shared/constants/qa/wizard.js +224 -0
  90. package/shared/constants/qa/workbooks.js +24 -0
  91. package/shared/constants/ql.js +34 -0
  92. package/shared/constants/shapes/index.js +11 -0
  93. package/shared/constants/shapes/lines/index.js +73 -0
  94. package/shared/constants/shapes/points/index.js +13 -0
  95. package/shared/constants/themes.js +33 -0
  96. package/shared/constants/timeout.js +20 -0
  97. package/shared/constants/ui-sandbox.js +4 -0
  98. package/shared/constants/url.js +12 -0
  99. package/shared/constants/user.js +7 -0
  100. package/shared/constants/visualization.js +70 -0
  101. package/shared/constants/widgets.js +103 -0
  102. package/shared/constants/wizard.js +84 -0
  103. package/shared/constants/workbooks.js +8 -0
  104. package/shared/constants/yfm.js +31 -0
  105. package/shared/index.js +8 -0
  106. package/shared/modules/bi-api/index.js +1 -0
  107. package/shared/modules/bi-api/mappers/index.js +9 -0
  108. package/shared/modules/bi-api/mappers/v2.js +128 -0
  109. package/shared/modules/charts-shared.js +268 -0
  110. package/shared/modules/colors/common-helpers.js +33 -0
  111. package/shared/modules/colors/distincts-helpers.js +13 -0
  112. package/shared/modules/config/ql/index.js +4 -0
  113. package/shared/modules/config/ql/mapQlConfigToLatestVersion.js +36 -0
  114. package/shared/modules/config/ql/v1/mapUndefinedConfigToV1.js +37 -0
  115. package/shared/modules/config/ql/v2/mapV1ConfigToV2.js +23 -0
  116. package/shared/modules/config/ql/v3/mapV2ConfigToV3.js +14 -0
  117. package/shared/modules/config/ql/v4/mapV3ConfigToV4.js +54 -0
  118. package/shared/modules/config/ql/v5/mapV4ConfigToV5.js +44 -0
  119. package/shared/modules/config/ql/v6/mapV5ConfigToV6.js +27 -0
  120. package/shared/modules/config/ql/v7/mapV6ConfigToV7.js +14 -0
  121. package/shared/modules/config/utils.js +34 -0
  122. package/shared/modules/config/wizard/index.js +4 -0
  123. package/shared/modules/config/wizard/mapChartsConfigToLatestVersion.js +69 -0
  124. package/shared/modules/config/wizard/v1/mapV1ConfigToV2.js +47 -0
  125. package/shared/modules/config/wizard/v10/mapV10ConfigToV11.js +24 -0
  126. package/shared/modules/config/wizard/v11/mapV11ConfigToV12.js +24 -0
  127. package/shared/modules/config/wizard/v12/mapV12ConfigToV13.js +46 -0
  128. package/shared/modules/config/wizard/v13/mapV13ConfigToV14.js +28 -0
  129. package/shared/modules/config/wizard/v14/mapV14ConfigToV15.js +17 -0
  130. package/shared/modules/config/wizard/v2/mapV2ConfigToV3.js +42 -0
  131. package/shared/modules/config/wizard/v3/mapV3ConfigToV4.js +110 -0
  132. package/shared/modules/config/wizard/v4/mapV4ConfigToV5.js +91 -0
  133. package/shared/modules/config/wizard/v5/mapV5ConfigToV6.js +21 -0
  134. package/shared/modules/config/wizard/v6/mapV6ConfigToV7.js +120 -0
  135. package/shared/modules/config/wizard/v7/mapV7ConfigToV8.js +55 -0
  136. package/shared/modules/config/wizard/v8/mapV8ConfigToV9.js +22 -0
  137. package/shared/modules/config/wizard/v9/mapV9ConfigToV10.js +39 -0
  138. package/shared/modules/control/typed-query-helpers.js +11 -0
  139. package/shared/modules/dash-scheme-converter.js +319 -0
  140. package/shared/modules/entry.js +22 -0
  141. package/shared/modules/fields.js +47 -0
  142. package/shared/modules/format-units/formatUnit.js +145 -0
  143. package/shared/modules/format-units/i18n/en.json.js +6 -0
  144. package/shared/modules/format-units/i18n/i18n.js +12 -0
  145. package/shared/modules/format-units/i18n/ru.json.js +6 -0
  146. package/shared/modules/format-units/index.js +7 -0
  147. package/shared/modules/helpers.d.ts +38 -0
  148. package/shared/modules/helpers.js +195 -0
  149. package/shared/modules/index.js +103 -0
  150. package/shared/modules/language.js +6 -0
  151. package/shared/modules/markdown/emoji-defs.js +267 -0
  152. package/shared/modules/markdown/markdown.js +100 -0
  153. package/shared/modules/markup.js +17 -0
  154. package/shared/modules/predicates.d.ts +2 -0
  155. package/shared/modules/predicates.js +6 -0
  156. package/shared/modules/qa-helpers.js +6 -0
  157. package/shared/modules/ql-helpers.js +214 -0
  158. package/shared/modules/sleep.js +4 -0
  159. package/shared/modules/slugify.js +24 -0
  160. package/shared/modules/tenant.js +15 -0
  161. package/shared/modules/transliterate.js +45 -0
  162. package/shared/modules/typed-query-api/helpers/parameters.js +7 -0
  163. package/shared/modules/typed-query-api/index.js +5 -0
  164. package/shared/modules/typed-query-api/mappers/parameters.js +18 -0
  165. package/shared/modules/url.js +7 -0
  166. package/shared/modules/user.js +14 -0
  167. package/shared/modules/visualization/placeholder.js +13 -0
  168. package/shared/modules/wizard/axis-mode.js +86 -0
  169. package/shared/modules/wizard/axis-settings.js +16 -0
  170. package/shared/modules/wizard/config.js +11 -0
  171. package/shared/modules/wizard/index.js +9 -0
  172. package/shared/modules/wizard-helpers.js +179 -0
  173. package/shared/old-schema/charts.d.ts +131 -0
  174. package/shared/old-schema/charts.js +101 -0
  175. package/shared/old-schema/index.d.ts +113 -0
  176. package/shared/old-schema/index.js +10 -0
  177. package/shared/schema/api.d.ts +8 -0
  178. package/shared/schema/auth-schema/index.d.ts +19 -0
  179. package/shared/schema/index.d.ts +3359 -0
  180. package/shared/schema/mix/actions/dash/create-dashboard-v1.d.ts +723 -0
  181. package/shared/schema/mix/actions/dash/get-dashboard-v1.d.ts +515 -0
  182. package/shared/schema/mix/actions/dash/index.d.ts +1959 -0
  183. package/shared/schema/mix/actions/dash/update-dashboard-v1.d.ts +722 -0
  184. package/shared/schema/mix/actions/index.d.ts +2067 -0
  185. package/shared/schema/mix/helpers/editor/index.js +41 -0
  186. package/shared/schema/mix/helpers/editor/validation.js +52 -0
  187. package/shared/schema/mix/helpers/entries.js +194 -0
  188. package/shared/schema/mix/helpers/index.js +14 -0
  189. package/shared/schema/mix/helpers/validation.js +10 -0
  190. package/shared/schema/mix/index.d.ts +2071 -0
  191. package/shared/schema/us/actions/entries/get-entries.d.ts +100 -0
  192. package/shared/schema/us/actions/entries/index.d.ts +298 -0
  193. package/shared/schema/us/actions/entries/list-directory.d.ts +101 -0
  194. package/shared/schema/us/actions/index.d.ts +1064 -0
  195. package/shared/schema/us/actions/workbooks/get-workbooks-list.d.ts +75 -0
  196. package/shared/schema/us/actions/workbooks/index.d.ts +384 -0
  197. package/shared/schema/us/index.d.ts +1069 -0
  198. package/shared/schema/us/schemas/entries/get-entries.d.ts +172 -0
  199. package/shared/schema/us/schemas/entries/list-directory.d.ts +171 -0
  200. package/shared/schema/utils.js +37 -0
  201. package/shared/types/bi-api/index.js +1 -0
  202. package/shared/types/bi-api/v2.js +10 -0
  203. package/shared/types/chartkit/dl-chartkit.js +1 -0
  204. package/shared/types/chartkit/table.js +1 -0
  205. package/shared/types/charts.js +10 -0
  206. package/shared/types/color-palettes.js +1 -0
  207. package/shared/types/common-update.js +1 -0
  208. package/shared/types/common.js +23 -0
  209. package/shared/types/config/ql/index.js +1 -0
  210. package/shared/types/config/wizard/index.js +14 -0
  211. package/shared/types/config/wizard/v10.js +1 -0
  212. package/shared/types/config/wizard/v11.js +1 -0
  213. package/shared/types/config/wizard/v12.js +1 -0
  214. package/shared/types/config/wizard/v13.js +1 -0
  215. package/shared/types/config/wizard/v14.js +1 -0
  216. package/shared/types/config/wizard/v15.js +1 -0
  217. package/shared/types/config/wizard/v2.js +1 -0
  218. package/shared/types/config/wizard/v3.js +1 -0
  219. package/shared/types/config/wizard/v4.js +1 -0
  220. package/shared/types/config/wizard/v5.js +1 -0
  221. package/shared/types/config/wizard/v6.js +1 -0
  222. package/shared/types/config/wizard/v7.js +1 -0
  223. package/shared/types/config/wizard/v8.js +1 -0
  224. package/shared/types/config/wizard/v9.js +1 -0
  225. package/shared/types/configs/index.js +1 -0
  226. package/shared/types/connections.js +1 -0
  227. package/shared/types/dash.js +65 -0
  228. package/shared/types/dataset.js +102 -0
  229. package/shared/types/entry.js +1 -0
  230. package/shared/types/feature.js +83 -0
  231. package/shared/types/formatting.js +17 -0
  232. package/shared/types/index.js +66 -0
  233. package/shared/types/menu.js +31 -0
  234. package/shared/types/metrica.js +1 -0
  235. package/shared/types/notification.js +1 -0
  236. package/shared/types/permissions.js +1 -0
  237. package/shared/types/ql/common.js +1 -0
  238. package/shared/types/ql/versions.js +13 -0
  239. package/shared/types/typed-query-api/index.js +1 -0
  240. package/shared/types/typed-query-api/v1.js +1 -0
  241. package/shared/types/utility-types.js +8 -0
  242. package/shared/types/widget.js +56 -0
  243. package/shared/types/wizard/background-settings.js +1 -0
  244. package/shared/types/wizard/bars.js +1 -0
  245. package/shared/types/wizard/column.js +1 -0
  246. package/shared/types/wizard/export.js +1 -0
  247. package/shared/types/wizard/field.js +56 -0
  248. package/shared/types/wizard/index.js +59 -0
  249. package/shared/types/wizard/misc.js +45 -0
  250. package/shared/types/wizard/placeholder.js +1 -0
  251. package/shared/types/wizard/sub-totals.js +1 -0
  252. package/shared/types/wizard/versions.js +21 -0
  253. package/shared/utils/dash.js +27 -0
  254. package/shared/utils/dataset.js +30 -0
  255. package/shared/utils/date-time.js +7 -0
  256. package/shared/utils/entry.js +12 -0
  257. package/shared/utils/feature.js +15 -0
  258. package/shared/utils/functions-registry.js +32 -0
  259. package/shared/utils/index.js +31 -0
  260. package/shared/utils/makeFunctionTemplate.js +8 -0
  261. package/shared/utils/manualError.js +22 -0
  262. package/shared/utils/markdown.js +8 -0
  263. package/shared/utils/markup.js +8 -0
  264. package/shared/utils/palettes.js +17 -0
  265. package/shared/utils/ui-sandbox.js +17 -0
  266. package/shared/utils/visualization-check.js +57 -0
  267. package/shared/utils/wizard.js +30 -0
  268. package/ui/assets/icons/alert.svg.js +4 -0
  269. package/ui/assets/icons/arr-reverse.svg.js +4 -0
  270. package/ui/assets/icons/arr-right.svg.js +4 -0
  271. package/ui/assets/icons/arrow-left.svg.js +4 -0
  272. package/ui/assets/icons/arrow-right.svg.js +4 -0
  273. package/ui/assets/icons/avatar-middle.png.js +4 -0
  274. package/ui/assets/icons/broken.svg.js +4 -0
  275. package/ui/assets/icons/charts-visualisations/vis-flat-table.svg.js +4 -0
  276. package/ui/assets/icons/charts-visualisations/vis-geolayers.svg.js +4 -0
  277. package/ui/assets/icons/charts-visualisations/vis-metric.svg.js +4 -0
  278. package/ui/assets/icons/check-folder.svg.js +4 -0
  279. package/ui/assets/icons/collections/collection-colored-big-dark.svg.js +4 -0
  280. package/ui/assets/icons/collections/collection-colored-big.svg.js +4 -0
  281. package/ui/assets/icons/collections/collection-colored-dark.svg.js +4 -0
  282. package/ui/assets/icons/collections/collection-colored.svg.js +4 -0
  283. package/ui/assets/icons/collections/collection.svg.js +4 -0
  284. package/ui/assets/icons/collections/grid.svg.js +4 -0
  285. package/ui/assets/icons/collections/workbook-colored.svg.js +4 -0
  286. package/ui/assets/icons/collections/workbook.svg.js +4 -0
  287. package/ui/assets/icons/connections/choveryt.svg.js +4 -0
  288. package/ui/assets/icons/connections/undefined.svg.js +4 -0
  289. package/ui/assets/icons/copy-xmark.svg.js +4 -0
  290. package/ui/assets/icons/cross.svg.js +4 -0
  291. package/ui/assets/icons/dl-auth-logo-dark.svg.js +4 -0
  292. package/ui/assets/icons/dl-auth-logo-light.svg.js +4 -0
  293. package/ui/assets/icons/error.svg.js +4 -0
  294. package/ui/assets/icons/filter-tooltip.svg.js +4 -0
  295. package/ui/assets/icons/folder.svg.js +4 -0
  296. package/ui/assets/icons/funnel-clear.svg.js +4 -0
  297. package/ui/assets/icons/gradients/blue-gray-red.svg.js +4 -0
  298. package/ui/assets/icons/gradients/blue-yellow-red.svg.js +4 -0
  299. package/ui/assets/icons/gradients/blue.svg.js +4 -0
  300. package/ui/assets/icons/gradients/cyan.svg.js +4 -0
  301. package/ui/assets/icons/gradients/golden.svg.js +4 -0
  302. package/ui/assets/icons/gradients/gray.svg.js +4 -0
  303. package/ui/assets/icons/gradients/green-blue.svg.js +4 -0
  304. package/ui/assets/icons/gradients/green.svg.js +4 -0
  305. package/ui/assets/icons/gradients/oceanic.svg.js +4 -0
  306. package/ui/assets/icons/gradients/orange-blue-green.svg.js +4 -0
  307. package/ui/assets/icons/gradients/orange-gray-blue.svg.js +4 -0
  308. package/ui/assets/icons/gradients/orange-violet-blue.svg.js +4 -0
  309. package/ui/assets/icons/gradients/orange-yellow.svg.js +4 -0
  310. package/ui/assets/icons/gradients/pink-gray-green.svg.js +4 -0
  311. package/ui/assets/icons/gradients/red-blue.svg.js +4 -0
  312. package/ui/assets/icons/gradients/red-orange-green.svg.js +4 -0
  313. package/ui/assets/icons/gradients/red.svg.js +4 -0
  314. package/ui/assets/icons/gradients/traffic-light.svg.js +4 -0
  315. package/ui/assets/icons/gradients/violet-blue-green.svg.js +4 -0
  316. package/ui/assets/icons/gradients/violet-orange.svg.js +4 -0
  317. package/ui/assets/icons/gradients/violet.svg.js +4 -0
  318. package/ui/assets/icons/gradients/yellow-green-blue.svg.js +4 -0
  319. package/ui/assets/icons/gradients/yellow.svg.js +4 -0
  320. package/ui/assets/icons/id-square.svg.js +4 -0
  321. package/ui/assets/icons/info.svg.js +4 -0
  322. package/ui/assets/icons/lock.svg.js +4 -0
  323. package/ui/assets/icons/monitoring.svg.js +4 -0
  324. package/ui/assets/icons/mono-collection.svg.js +4 -0
  325. package/ui/assets/icons/okay.svg.js +4 -0
  326. package/ui/assets/icons/os-logo.svg.js +4 -0
  327. package/ui/assets/icons/palettes/datalens-classic20.svg.js +4 -0
  328. package/ui/assets/icons/palettes/datalens-default20.svg.js +4 -0
  329. package/ui/assets/icons/palettes/datalens-neo20.svg.js +4 -0
  330. package/ui/assets/icons/palettes/emerald-20.svg.js +4 -0
  331. package/ui/assets/icons/palettes/golden-20.svg.js +4 -0
  332. package/ui/assets/icons/palettes/neutral-20.svg.js +4 -0
  333. package/ui/assets/icons/palettes/oceanic-20.svg.js +4 -0
  334. package/ui/assets/icons/palettes/traffic-light-9.svg.js +4 -0
  335. package/ui/assets/icons/parameter-section.svg.js +4 -0
  336. package/ui/assets/icons/placeholder-tooltip.svg.js +4 -0
  337. package/ui/assets/icons/plus.svg.js +4 -0
  338. package/ui/assets/icons/ql-chart.svg.js +4 -0
  339. package/ui/assets/icons/relations-any.svg.js +4 -0
  340. package/ui/assets/icons/relations-controls.svg.js +4 -0
  341. package/ui/assets/icons/relations-no-data.svg.js +4 -0
  342. package/ui/assets/icons/relations-no-link.svg.js +4 -0
  343. package/ui/assets/icons/relations.svg.js +4 -0
  344. package/ui/assets/icons/source-table.svg.js +4 -0
  345. package/ui/assets/icons/sync.svg.js +4 -0
  346. package/ui/assets/icons/vis-area-100p.svg.js +4 -0
  347. package/ui/assets/icons/vis-area.svg.js +4 -0
  348. package/ui/assets/icons/vis-bar-100p.svg.js +4 -0
  349. package/ui/assets/icons/vis-bar.svg.js +4 -0
  350. package/ui/assets/icons/vis-column-100p.svg.js +4 -0
  351. package/ui/assets/icons/vis-column.svg.js +4 -0
  352. package/ui/assets/icons/vis-combined.svg.js +4 -0
  353. package/ui/assets/icons/vis-donut.svg.js +4 -0
  354. package/ui/assets/icons/vis-flat-table.svg.js +4 -0
  355. package/ui/assets/icons/vis-geolayers.svg.js +4 -0
  356. package/ui/assets/icons/vis-heatmap.svg.js +4 -0
  357. package/ui/assets/icons/vis-lines.svg.js +4 -0
  358. package/ui/assets/icons/vis-metric.svg.js +4 -0
  359. package/ui/assets/icons/vis-pie.svg.js +4 -0
  360. package/ui/assets/icons/vis-pivot.svg.js +4 -0
  361. package/ui/assets/icons/vis-scatter.svg.js +4 -0
  362. package/ui/assets/icons/vis-treemap.svg.js +4 -0
  363. package/ui/assets/icons/visualization.svg.js +4 -0
  364. package/ui/assets/icons/warning-colored.svg.js +4 -0
  365. package/ui/assets/images/dl-auth-background-dark.jpg.js +4 -0
  366. package/ui/assets/images/dl-auth-background-light.jpg.js +4 -0
  367. package/ui/capabilities/capabilities.js +51 -0
  368. package/ui/capabilities/index.js +14 -0
  369. package/ui/components/AccessRights/AccessRightsUrlOpen.js +9 -0
  370. package/ui/components/ActionPanel/ActionPanel.js +221 -0
  371. package/ui/components/ActionPanel/ActionPanelHelpers.js +9 -0
  372. package/ui/components/ActionPanel/components/ChartSaveControls/ChartSaveControl.js +111 -0
  373. package/ui/components/ActionPanel/components/ChartSaveControls/components/SaveButton/SaveButton.js +44 -0
  374. package/ui/components/ActionPanel/components/ChartSaveControls/components/SaveDropdown/SaveDropdown.js +37 -0
  375. package/ui/components/ActionPanel/components/ChartSaveControls/useAdditionalItems.js +48 -0
  376. package/ui/components/ActionPanel/components/EntryPanel/EntryPanel.js +283 -0
  377. package/ui/components/ActionPanel/index.js +6 -0
  378. package/ui/components/ActionPanel/utils.js +6 -0
  379. package/ui/components/AdaptiveDialog/AdaptiveDialog.js +45 -0
  380. package/ui/components/AnimateBlock/AnimateBlock.js +39 -0
  381. package/ui/components/AnimateBlock/index.js +4 -0
  382. package/ui/components/AsideHeaderAdapter/AsideHeaderAdapter.js +310 -0
  383. package/ui/components/AsideHeaderAdapter/LogoText/LogoText.js +21 -0
  384. package/ui/components/AsideHeaderAdapter/Settings/ItemField/ItemField.js +21 -0
  385. package/ui/components/AsideHeaderAdapter/Settings/LanguageSettings.js +50 -0
  386. package/ui/components/AsideHeaderAdapter/Settings/Settings.js +102 -0
  387. package/ui/components/AsideHeaderAdapter/Settings/types.js +8 -0
  388. package/ui/components/AsideHeaderAdapter/Settings/utils.js +47 -0
  389. package/ui/components/AsideHeaderAdapter/VersionDialog/VersionDialog.js +23 -0
  390. package/ui/components/AsideHeaderAdapter/constants.js +4 -0
  391. package/ui/components/AsideHeaderAdapter/helpers.js +13 -0
  392. package/ui/components/AsideHeaderAdapter/index.js +9 -0
  393. package/ui/components/AsyncImage/AsyncImage.js +77 -0
  394. package/ui/components/AutogeneratedPaletteIcon/AutogeneratedPaletteIcon.js +54 -0
  395. package/ui/components/BetaMark/BetaMark.js +10 -0
  396. package/ui/components/Breadcrumbs/CollectionsStructureBreadcrumbs/CollectionsStructureBreadcrumbs.js +19 -0
  397. package/ui/components/BreadcrumbsItemLink/BreadcrumbsItemLink.js +16 -0
  398. package/ui/components/ButtonAttach/ButtonAttach.js +33 -0
  399. package/ui/components/Collapse/Collapse.js +160 -0
  400. package/ui/components/CollectionFilters/CollectionFilters.js +238 -0
  401. package/ui/components/CollectionFilters/index.js +7 -0
  402. package/ui/components/CollectionIcon/CollectionIcon.js +14 -0
  403. package/ui/components/CollectionsStructure/CollectionDialog/CollectionDialog.js +94 -0
  404. package/ui/components/CollectionsStructure/CollectionDialog/index.js +4 -0
  405. package/ui/components/CollectionsStructure/CollectionNoCreatePermissionDialog/CollectionNoCreatePermissionDialog.js +37 -0
  406. package/ui/components/CollectionsStructure/CollectionNoCreatePermissionDialog/index.js +5 -0
  407. package/ui/components/CollectionsStructure/CollectionStructureDialog/CollectionStructureDialog.js +319 -0
  408. package/ui/components/CollectionsStructure/CollectionStructureDialog/CreateEntityDialog/CreateEntityDialog.js +57 -0
  409. package/ui/components/CollectionsStructure/CollectionStructureDialog/NewTitleDialog/NewTitleDialog.js +42 -0
  410. package/ui/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/Item/Item.js +64 -0
  411. package/ui/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/Item/index.js +4 -0
  412. package/ui/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/StructureItemSelect.js +132 -0
  413. package/ui/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/index.js +4 -0
  414. package/ui/components/CollectionsStructure/CollectionStructureDialog/index.js +5 -0
  415. package/ui/components/CollectionsStructure/CopyEntriesDialog.js +46 -0
  416. package/ui/components/CollectionsStructure/CopyWorkbookDialog.js +60 -0
  417. package/ui/components/CollectionsStructure/CreateCollectionDialog.js +73 -0
  418. package/ui/components/CollectionsStructure/CreateEntryInWorkbookDialog.js +70 -0
  419. package/ui/components/CollectionsStructure/CreateWorkbookDialog/CreateWorkbookDialog.js +357 -0
  420. package/ui/components/CollectionsStructure/CreateWorkbookDialog/ImportFileField/ImportFileField.js +81 -0
  421. package/ui/components/CollectionsStructure/CreateWorkbookDialog/ImportWorkbookView/ImportWorkbookView.js +69 -0
  422. package/ui/components/CollectionsStructure/CreateWorkbookDialog/utils.js +37 -0
  423. package/ui/components/CollectionsStructure/DeleteCollectionDialog.js +52 -0
  424. package/ui/components/CollectionsStructure/DeleteCollectionsWorkbooksContent/DeleteCollectionsWorkbooksContent.js +44 -0
  425. package/ui/components/CollectionsStructure/DeleteCollectionsWorkbooksContent/index.js +4 -0
  426. package/ui/components/CollectionsStructure/DeleteCollectionsWorkbooksDialog.js +72 -0
  427. package/ui/components/CollectionsStructure/DeleteDialog/DeleteDialog.js +36 -0
  428. package/ui/components/CollectionsStructure/DeleteDialog/index.js +4 -0
  429. package/ui/components/CollectionsStructure/DeleteWorkbookDialog.js +52 -0
  430. package/ui/components/CollectionsStructure/EditCollectionDialog.js +77 -0
  431. package/ui/components/CollectionsStructure/EditSharedEntryDialog.js +55 -0
  432. package/ui/components/CollectionsStructure/EditWorkbookDialog.js +75 -0
  433. package/ui/components/CollectionsStructure/ExportWorkbookDialog/ExportInfo/ExportInfo.js +40 -0
  434. package/ui/components/CollectionsStructure/ExportWorkbookDialog/ExportWorkbookDialog.js +262 -0
  435. package/ui/components/CollectionsStructure/ExportWorkbookDialog/utils.js +19 -0
  436. package/ui/components/CollectionsStructure/MigrateEntryToWorkbookDialog.js +44 -0
  437. package/ui/components/CollectionsStructure/MoveCollectionDialog.js +61 -0
  438. package/ui/components/CollectionsStructure/MoveCollectionsWorkbooksDialog.js +70 -0
  439. package/ui/components/CollectionsStructure/MoveSharedEntryDialog.js +63 -0
  440. package/ui/components/CollectionsStructure/MoveWorkbookDialog.js +61 -0
  441. package/ui/components/CollectionsStructure/WorkbookDialog/WorkbookDialog.js +120 -0
  442. package/ui/components/CollectionsStructure/WorkbookDialog/index.js +5 -0
  443. package/ui/components/CollectionsStructure/WorkbookDialog/types.js +1 -0
  444. package/ui/components/CollectionsStructure/components/EntriesNotificationCut/EntriesNotificationCut.js +85 -0
  445. package/ui/components/CollectionsStructure/components/EntriesNotificationCut/helpers.js +70 -0
  446. package/ui/components/CollectionsStructure/hooks/useCollectionEntityDialogState.js +30 -0
  447. package/ui/components/CollectionsStructure/hooks/useCollectionStructureDialogState.js +104 -0
  448. package/ui/components/CollectionsStructure/hooks/useNotificationsAndDetails.js +43 -0
  449. package/ui/components/CollectionsStructure/index.js +51 -0
  450. package/ui/components/ColorPaletteEditorContainer/ColorPaletteCharkitPreview/ColorPaletteChartkitPreview.js +18 -0
  451. package/ui/components/ColorPaletteEditorContainer/ColorPaletteCharkitPreview/utils.js +60 -0
  452. package/ui/components/ColorPaletteEditorContainer/ColorPaletteEditorContainer.js +127 -0
  453. package/ui/components/ColorPaletteEditorContainer/ColorPalettesCard/ColorPalettesCard.js +118 -0
  454. package/ui/components/ColorPaletteEditorContainer/ColorPalettesCard/DefaultPaletteSelect/DefaultPaletteSelect.js +93 -0
  455. package/ui/components/ColorPaletteEditorContainer/ColorTextInput/ColorTextInput.js +50 -0
  456. package/ui/components/ColorPaletteEditorContainer/GradientPaletteEditor/GradientPaletteEditor.js +251 -0
  457. package/ui/components/ColorPaletteEditorContainer/PaletteEditor/PaletteEditor.js +270 -0
  458. package/ui/components/ColorPaletteSelect/ColorPaletteSelect.js +128 -0
  459. package/ui/components/ColorPickerInput/ColorPickerInput.js +165 -0
  460. package/ui/components/ColorPickerInput/utils.js +47 -0
  461. package/ui/components/ConnectorIcon/ConnectorIcon.js +66 -0
  462. package/ui/components/ControlComponents/BackButton/BackButton.js +14 -0
  463. package/ui/components/ControlComponents/Dialog/Dialog.js +51 -0
  464. package/ui/components/ControlComponents/Sections/AppearanceSection/Rows/ColorAccentRow/ColorAccentRow.js +54 -0
  465. package/ui/components/ControlComponents/Sections/AppearanceSection/Rows/HintRow/HintRow.js +51 -0
  466. package/ui/components/ControlComponents/Sections/AppearanceSection/Rows/InnerTitleRow/InnerTitleRow.js +82 -0
  467. package/ui/components/ControlComponents/Sections/AppearanceSection/Rows/TitlePlacementRow/TitlePlacementRow.js +50 -0
  468. package/ui/components/ControlComponents/Sections/AppearanceSection/Rows/TitleRow/TitleRow.js +40 -0
  469. package/ui/components/ControlComponents/Sections/CommonSettingsSection/CommonGroupSettingsSection.js +66 -0
  470. package/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/ConnectionSettings.js +50 -0
  471. package/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/ConnectionSelector/ConnectionSelector.js +85 -0
  472. package/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/ConnectionSelector/helpers.js +19 -0
  473. package/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/QueryTypeControl.js +75 -0
  474. package/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/components/EditLabelControl/EditLabelControl.js +32 -0
  475. package/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/components/EditQueryControl/EditQueryControl.js +31 -0
  476. package/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/helpers.js +11 -0
  477. package/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/helpers/get-distincts-by-typed-query.js +34 -0
  478. package/ui/components/ControlComponents/Sections/CommonSettingsSection/DatasetSelectorSettings/DatasetSelectorSettings.js +174 -0
  479. package/ui/components/ControlComponents/Sections/CommonSettingsSection/EntrySelector/EntrySelector.js +42 -0
  480. package/ui/components/ControlComponents/Sections/CommonSettingsSection/ExternalSelectorSettings/ExternalSelectorSettings.js +124 -0
  481. package/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/CurrentTabOption/CurrentTabOption.js +32 -0
  482. package/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/ImpactTypeSelect.js +289 -0
  483. package/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/SelectedTabsOption/SelectedTabsOption.js +14 -0
  484. package/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/constants.js +18 -0
  485. package/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/helpers.js +55 -0
  486. package/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/useTabVisibilityValidation.js +65 -0
  487. package/ui/components/ControlComponents/Sections/CommonSettingsSection/InputTypeSelector/InputTypeSelector.js +75 -0
  488. package/ui/components/ControlComponents/Sections/CommonSettingsSection/ParameterNameInput/ParameterNameInput.js +47 -0
  489. package/ui/components/ControlComponents/Sections/CommonSettingsSection/helpers/input-type-select.js +45 -0
  490. package/ui/components/ControlComponents/Sections/Date/Default/Default.js +177 -0
  491. package/ui/components/ControlComponents/Sections/OperationSelector/OperationSelector.js +73 -0
  492. package/ui/components/ControlComponents/Sections/ParametersSection/ParametersSection.js +92 -0
  493. package/ui/components/ControlComponents/Sections/Switchers/DatasetField/DatasetField.js +142 -0
  494. package/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/Acceptable/Acceptable.js +107 -0
  495. package/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/Acceptable/SelectorValuesDialogBody.js +139 -0
  496. package/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/ListValueControl.js +40 -0
  497. package/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/MultiselectableCheckbox.js +40 -0
  498. package/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/DynamicValueSelect.js +53 -0
  499. package/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/StaticValueSelect.js +53 -0
  500. package/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/hooks.js +16 -0
  501. package/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/utils.js +8 -0
  502. package/ui/components/ControlComponents/Sections/ValueSelector/RequiredValueCheckbox/RequiredValueCheckbox.js +43 -0
  503. package/ui/components/ControlComponents/Sections/ValueSelector/ValueSelector.js +251 -0
  504. package/ui/components/ControlComponents/Sections/ValueSelector/helpers/get-distincts-by-dataset-field.js +64 -0
  505. package/ui/components/ControlComponents/SelectorPreview/SelectorPreview.js +6 -0
  506. package/ui/components/ControlComponents/SelectorTypeSelect/SelectorTypeSelect.js +88 -0
  507. package/ui/components/CopyEntriesToWorkbookDialog/CopyEntriesToWorkbookDialog.js +122 -0
  508. package/ui/components/CopyEntriesToWorkbookDialog/components/Body/Body.js +92 -0
  509. package/ui/components/CopyEntriesToWorkbookDialog/components/Body/index.js +4 -0
  510. package/ui/components/CopyEntriesToWorkbookDialog/components/EntriesGroup/EntriesGroup.js +59 -0
  511. package/ui/components/CopyEntriesToWorkbookDialog/components/EntriesGroup/index.js +4 -0
  512. package/ui/components/CopyEntriesToWorkbookDialog/components/EntryRow/EntryRow.js +36 -0
  513. package/ui/components/CopyEntriesToWorkbookDialog/components/EntryRow/index.js +4 -0
  514. package/ui/components/CopyEntriesToWorkbookDialog/index.js +5 -0
  515. package/ui/components/CopyEntriesToWorkbookDialog/utils.js +8 -0
  516. package/ui/components/DNDPane/DNDItem/DNDItem.js +47 -0
  517. package/ui/components/DNDPane/DNDPane.js +32 -0
  518. package/ui/components/DashKit/DashKit.js +83 -0
  519. package/ui/components/DashKit/constants.js +40 -0
  520. package/ui/components/DashKit/context/WidgetContext.js +38 -0
  521. package/ui/components/DashKit/helpers.js +109 -0
  522. package/ui/components/DashKit/plugins/Control/Control.js +640 -0
  523. package/ui/components/DashKit/plugins/Control/ControlItems/ControlItemSelect.js +225 -0
  524. package/ui/components/DashKit/plugins/Control/Error/Error.js +46 -0
  525. package/ui/components/DashKit/plugins/Control/constants.js +26 -0
  526. package/ui/components/DashKit/plugins/Control/prerenderMiddleware.js +62 -0
  527. package/ui/components/DashKit/plugins/Control/utils.js +225 -0
  528. package/ui/components/DashKit/plugins/DebugInfoTool/DebugInfoTool.js +33 -0
  529. package/ui/components/DashKit/plugins/GroupControl/Control/Control.js +462 -0
  530. package/ui/components/DashKit/plugins/GroupControl/Control/store/reducer.js +74 -0
  531. package/ui/components/DashKit/plugins/GroupControl/Control/store/types.js +65 -0
  532. package/ui/components/DashKit/plugins/GroupControl/GroupControl.js +733 -0
  533. package/ui/components/DashKit/plugins/GroupControl/utils.js +56 -0
  534. package/ui/components/DashKit/plugins/Image/Image.js +71 -0
  535. package/ui/components/DashKit/plugins/RendererWrapper/RendererWrapper.js +34 -0
  536. package/ui/components/DashKit/plugins/Text/Text.js +166 -0
  537. package/ui/components/DashKit/plugins/Title/AnchorLink/AnchorLink.js +20 -0
  538. package/ui/components/DashKit/plugins/Title/Title.js +204 -0
  539. package/ui/components/DashKit/plugins/Title/constants.js +6 -0
  540. package/ui/components/DashKit/plugins/Title/utils.d.ts +12 -0
  541. package/ui/components/DashKit/plugins/Title/utils.js +60 -0
  542. package/ui/components/DashKit/plugins/Widget/WidgetPlugin.js +59 -0
  543. package/ui/components/DashKit/plugins/Widget/components/helpers.d.ts +3 -0
  544. package/ui/components/DashKit/plugins/Widget/components/helpers.js +14 -0
  545. package/ui/components/DashKit/utils.js +243 -0
  546. package/ui/components/DataTypeIcon/DataTypeIcon.js +70 -0
  547. package/ui/components/DatasetFieldList/DatasetFieldList.js +55 -0
  548. package/ui/components/DebouncedInput/DebouncedInput.js +47 -0
  549. package/ui/components/DebouncedInput/index.js +4 -0
  550. package/ui/components/DialogAddSharedEntryFromLink/DialogAddSharedEntryFromLink.js +150 -0
  551. package/ui/components/DialogChartWidget/DialogChartWidget.js +797 -0
  552. package/ui/components/DialogCommon/DialogCommon.js +92 -0
  553. package/ui/components/DialogConfirm/DialogConfirm.js +71 -0
  554. package/ui/components/DialogDefault/DialogDefault.js +86 -0
  555. package/ui/components/DialogEditItem/DialogEditItem.js +188 -0
  556. package/ui/components/DialogEntryDescription/DialogEntryDescription.js +146 -0
  557. package/ui/components/DialogEntryDescription/DialogEntryDescriptionWrapper.js +13 -0
  558. package/ui/components/DialogEntryDescription/EntryDescriptionButton.js +39 -0
  559. package/ui/components/DialogEntryDescription/index.js +10 -0
  560. package/ui/components/DialogErrorWithTabs/DebugInfo/DebugInfo.js +55 -0
  561. package/ui/components/DialogErrorWithTabs/DialogErrorWithTabs.js +276 -0
  562. package/ui/components/DialogErrorWithTabs/ErrorText/ErrorText.js +19 -0
  563. package/ui/components/DialogErrorWithTabs/Tabs/DatabaseRequestTab/DatabaseRequestTab.js +11 -0
  564. package/ui/components/DialogErrorWithTabs/Tabs/DatabaseResponseTab/DatabaseResponseTab.js +11 -0
  565. package/ui/components/DialogErrorWithTabs/Tabs/DebugTab/DebugTab.js +38 -0
  566. package/ui/components/DialogErrorWithTabs/Tabs/DebugTab/utils.js +7 -0
  567. package/ui/components/DialogErrorWithTabs/Tabs/DocumentationTab/DocumentationTab.js +24 -0
  568. package/ui/components/DialogExternalControl/DialogExternalControl.js +115 -0
  569. package/ui/components/DialogFieldEditor/DialogFieldEditor.js +47 -0
  570. package/ui/components/DialogFilter/BooleanFilter/BooleanFilter.js +34 -0
  571. package/ui/components/DialogFilter/DateFilter/DateFilter.js +29 -0
  572. package/ui/components/DialogFilter/DialogFilter.js +501 -0
  573. package/ui/components/DialogFilter/InputFilter/InputFilter.js +71 -0
  574. package/ui/components/DialogFilter/SelectFilter/SelectFilter.js +177 -0
  575. package/ui/components/DialogFilter/constants.js +48 -0
  576. package/ui/components/DialogFilter/typings.js +8 -0
  577. package/ui/components/DialogFilter/utils.js +64 -0
  578. package/ui/components/DialogGroupControl/DialogGroupControl.js +124 -0
  579. package/ui/components/DialogGroupControl/GroupControlBody/GroupControlBody.js +65 -0
  580. package/ui/components/DialogGroupControl/GroupControlBody/SimilarSelectorsBlock/SimilarSelectorsBlock.js +84 -0
  581. package/ui/components/DialogGroupControl/GroupControlFooter/GroupControlFooter.js +27 -0
  582. package/ui/components/DialogGroupControl/GroupControlSidebar/GroupControlSidebar.js +139 -0
  583. package/ui/components/DialogGroupControl/GroupControlSidebar/TabItemWrapper/TabItemWrapper.js +21 -0
  584. package/ui/components/DialogGroupControl/GroupExtendedSettings/ControlPlacementRow.js +68 -0
  585. package/ui/components/DialogGroupControl/GroupExtendedSettings/GroupExtendedSettings.js +321 -0
  586. package/ui/components/DialogGroupControl/hooks/useSimilarSelectorsActions.js +201 -0
  587. package/ui/components/DialogImageWidget/DialogImageWidget.js +209 -0
  588. package/ui/components/DialogImageWidget/index.js +4 -0
  589. package/ui/components/DialogManager/DialogManager.js +16 -0
  590. package/ui/components/DialogManager/DialogManagerContainer.js +32 -0
  591. package/ui/components/DialogNoRights/DialogNoRights.js +20 -0
  592. package/ui/components/DialogParameter/DefaultValueSection.js +89 -0
  593. package/ui/components/DialogParameter/DialogParameter.js +230 -0
  594. package/ui/components/DialogParameter/TemplateSection.js +115 -0
  595. package/ui/components/DialogParameter/helpers.js +62 -0
  596. package/ui/components/DialogParameter/useParameterForm.js +39 -0
  597. package/ui/components/DialogParameter/useParameterTooltipMarkdown.js +25 -0
  598. package/ui/components/DialogParameter/useValidationErrors.js +43 -0
  599. package/ui/components/DialogQLParameter/DialogQLParameter.js +76 -0
  600. package/ui/components/DialogRelatedEntities/DialogRelatedEntities.d.ts +7 -0
  601. package/ui/components/DialogRelatedEntities/DialogRelatedEntities.js +209 -0
  602. package/ui/components/DialogRelatedEntities/constants.js +7 -0
  603. package/ui/components/DialogRelations/DialogRelations.d.ts +22 -0
  604. package/ui/components/DialogRelations/components/Content/helpers.js +67 -0
  605. package/ui/components/DialogRelations/components/DialogAliases/DialogAliases.js +315 -0
  606. package/ui/components/DialogRelations/components/DialogAliases/components/AddAliases/AddAliases.js +230 -0
  607. package/ui/components/DialogRelations/components/DialogAliases/components/AddAliases/helpers.js +66 -0
  608. package/ui/components/DialogRelations/components/DialogAliases/components/AliasesDetail/AliasesDetail.js +43 -0
  609. package/ui/components/DialogRelations/components/DialogAliases/components/AliasesList/AliasesInvalidList.js +82 -0
  610. package/ui/components/DialogRelations/components/DialogAliases/components/AliasesList/AliasesList.js +178 -0
  611. package/ui/components/DialogRelations/components/Filters/Filters.js +95 -0
  612. package/ui/components/DialogRelations/constants.d.ts +27 -0
  613. package/ui/components/DialogRelations/constants.js +50 -0
  614. package/ui/components/DialogRelations/helpers.js +331 -0
  615. package/ui/components/DialogRelations/hooks/helpers.d.ts +109 -0
  616. package/ui/components/DialogRelations/hooks/helpers.js +421 -0
  617. package/ui/components/DialogRelations/hooks/helpersChart.js +256 -0
  618. package/ui/components/DialogRelations/hooks/helpersControls.d.ts +26 -0
  619. package/ui/components/DialogRelations/hooks/helpersControls.js +179 -0
  620. package/ui/components/DialogRelations/hooks/helpersDatasets.js +76 -0
  621. package/ui/components/DialogRelations/hooks/predicates.d.ts +8 -0
  622. package/ui/components/DialogRelations/hooks/predicates.js +22 -0
  623. package/ui/components/DialogRelations/hooks/useRelations.js +146 -0
  624. package/ui/components/DialogSelectSharedEntry/DialogSelectSharedEntry.js +137 -0
  625. package/ui/components/DialogSharedEntryBindings/DialogSharedEntryBindings.js +114 -0
  626. package/ui/components/DialogSharedEntryBindings/components/DeleteAlert.js +41 -0
  627. package/ui/components/DialogSharedEntryBindings/components/DirectionControl.js +24 -0
  628. package/ui/components/DialogSharedEntryBindings/components/Relations.js +187 -0
  629. package/ui/components/DialogSharedEntryBindings/components/SharedBindingsFooter.js +39 -0
  630. package/ui/components/DialogSharedEntryBindings/components/SharedBindingsHeader.js +14 -0
  631. package/ui/components/DialogSharedEntryBindings/constants.js +16 -0
  632. package/ui/components/DialogSharedEntryBindings/hooks/useSharedEntryBindings.js +109 -0
  633. package/ui/components/DialogSharedEntryBindings/utils.js +28 -0
  634. package/ui/components/DialogSharedEntryPermissions/DialogSharedEntryPermissions.js +109 -0
  635. package/ui/components/DialogSharedEntryPermissions/components/PermissionButton/PermissionButton.js +49 -0
  636. package/ui/components/DialogSharedEntryUnbind/DialogSharedEntryUnbind.js +108 -0
  637. package/ui/components/DialogSharedEntryUnbind/constants.js +29 -0
  638. package/ui/components/DialogSharedRelatedEntities/DialogSharedRelatedEntities.js +201 -0
  639. package/ui/components/DialogSuccessWithAction/DialogSuccessWithAction.js +24 -0
  640. package/ui/components/DialogTextWidget/DialogTextWidget.js +211 -0
  641. package/ui/components/DialogTextWidget/index.js +9 -0
  642. package/ui/components/DialogTitleWidget/DialogTitleWidget.js +437 -0
  643. package/ui/components/DialogTitleWidget/useColorSettings.js +119 -0
  644. package/ui/components/DialogWarning/DialogWarning.js +61 -0
  645. package/ui/components/DropdownAction/DropdownAction.js +14 -0
  646. package/ui/components/DropdownNavigation/DropdownNavigation.js +177 -0
  647. package/ui/components/EditableText/EditableText.js +56 -0
  648. package/ui/components/EntitiesList/EntitiesList.js +57 -0
  649. package/ui/components/EntityIcon/EntityIcon.js +47 -0
  650. package/ui/components/EntityLink/EntityLink.js +15 -0
  651. package/ui/components/EntityRow/EntityRow.js +104 -0
  652. package/ui/components/EntriesList/EntriesList.js +28 -0
  653. package/ui/components/EntriesList/Item/Item.js +39 -0
  654. package/ui/components/EntryBreadcrumbs/EntryBreadcrumbs.js +49 -0
  655. package/ui/components/EntryBreadcrumbs/helpers.js +69 -0
  656. package/ui/components/EntryContextMenu/EntryContextMenu.js +147 -0
  657. package/ui/components/EntryContextMenu/EntryContextMenuBase/EntryContextMenuBase.js +99 -0
  658. package/ui/components/EntryContextMenu/constants.js +234 -0
  659. package/ui/components/EntryContextMenu/helpers.js +258 -0
  660. package/ui/components/EntryContextMenu/index.js +12 -0
  661. package/ui/components/EntryContextMenu/utils.js +6 -0
  662. package/ui/components/EntryContextMenu/withConfiguredEntryContextMenu/helpers.js +39 -0
  663. package/ui/components/EntryContextMenu/withConfiguredEntryContextMenu/withConfiguredEntryContextMenu.js +69 -0
  664. package/ui/components/EntryDialogues/DialogAccess/DialogAccess.js +9 -0
  665. package/ui/components/EntryDialogues/DialogAccessDescription/DialogAccessDescription.js +35 -0
  666. package/ui/components/EntryDialogues/DialogCopyEntry/DialogCopyEntry.js +172 -0
  667. package/ui/components/EntryDialogues/DialogCreateDashboard/DialogCreateDashboard.js +98 -0
  668. package/ui/components/EntryDialogues/DialogCreateDashboard/index.js +4 -0
  669. package/ui/components/EntryDialogues/DialogCreateEditorChart/DialogCreateEditorChart.js +100 -0
  670. package/ui/components/EntryDialogues/DialogCreateEditorChart/index.js +4 -0
  671. package/ui/components/EntryDialogues/DialogCreateFolder/DialogCreateFolder.js +69 -0
  672. package/ui/components/EntryDialogues/DialogCreateFolder/index.js +4 -0
  673. package/ui/components/EntryDialogues/DialogCreateQLChart/DialogCreateQLChart.js +103 -0
  674. package/ui/components/EntryDialogues/DialogCreateQLChart/index.js +4 -0
  675. package/ui/components/EntryDialogues/DialogCreateWizardChart/DialogCreateWizardChart.js +104 -0
  676. package/ui/components/EntryDialogues/DialogCreateWizardChart/index.js +4 -0
  677. package/ui/components/EntryDialogues/DialogCreateWorkbookEntry/DialogCreateWorkbookEntry.js +136 -0
  678. package/ui/components/EntryDialogues/DialogDeleteEntry/DialogDeleteEntry.js +87 -0
  679. package/ui/components/EntryDialogues/DialogDeleteEntry/index.js +4 -0
  680. package/ui/components/EntryDialogues/DialogEditFavoritesAlias/DialogEditFavoritesAlias.js +99 -0
  681. package/ui/components/EntryDialogues/DialogEditFavoritesAlias/index.js +4 -0
  682. package/ui/components/EntryDialogues/DialogEditWarning/DialogEditWarning.js +87 -0
  683. package/ui/components/EntryDialogues/DialogEntrySaveAsNew/DialogEntrySaveAsNew.js +93 -0
  684. package/ui/components/EntryDialogues/DialogEntrySaveAsNew/index.js +4 -0
  685. package/ui/components/EntryDialogues/DialogMakeActualConfirm/DialogMakeActualConfirm.js +66 -0
  686. package/ui/components/EntryDialogues/DialogMigrateToWorkbook/DialogMigrateToWorkbook.js +25 -0
  687. package/ui/components/EntryDialogues/DialogMigrateToWorkbook/index.js +4 -0
  688. package/ui/components/EntryDialogues/DialogMoveEntry/DialogMoveEntry.js +67 -0
  689. package/ui/components/EntryDialogues/DialogMoveEntry/index.js +4 -0
  690. package/ui/components/EntryDialogues/DialogRenameEntry/DialogRenameEntry.js +95 -0
  691. package/ui/components/EntryDialogues/DialogRenameEntry/index.js +4 -0
  692. package/ui/components/EntryDialogues/DialogShareEntry/DialogShareEntry.js +16 -0
  693. package/ui/components/EntryDialogues/DialogShareEntry/index.js +4 -0
  694. package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/AlertTooltip/AlertTooltip.js +14 -0
  695. package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/AuthorSection/AuthorSection.js +38 -0
  696. package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/ContentError/ContentError.js +15 -0
  697. package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/ContentLoader/ContentLoader.js +11 -0
  698. package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/CurrentEntrySection/CurrentEntrySection.js +71 -0
  699. package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/DialogAlert/DialogAlert.js +43 -0
  700. package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/DialogPublic.js +175 -0
  701. package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/RelationsList/RelationsList.js +85 -0
  702. package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/SharedLink/SharedLink.js +33 -0
  703. package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/constants.js +13 -0
  704. package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/helpers.js +9 -0
  705. package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/types.js +24 -0
  706. package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/useDialogPublicState.js +470 -0
  707. package/ui/components/EntryDialogues/DialogSwitchPublic/DialogSwitchPublic.js +16 -0
  708. package/ui/components/EntryDialogues/DialogSwitchPublic/index.js +4 -0
  709. package/ui/components/EntryDialogues/DialogUnlock/DialogUnlock.js +23 -0
  710. package/ui/components/EntryDialogues/DialogUnlock/index.js +4 -0
  711. package/ui/components/EntryDialogues/EntryDialogBase/EntryDialogBase.js +175 -0
  712. package/ui/components/EntryDialogues/EntryDialogues.d.ts +95 -0
  713. package/ui/components/EntryDialogues/EntryDialogues.js +196 -0
  714. package/ui/components/EntryDialogues/constants.js +8 -0
  715. package/ui/components/EntryDialogues/index.js +12 -0
  716. package/ui/components/EntryDialogues/types.js +1 -0
  717. package/ui/components/EntryDialogues/utils.js +6 -0
  718. package/ui/components/EntryIcon/EntryIcon.js +106 -0
  719. package/ui/components/EntryRow/EntryRow.js +102 -0
  720. package/ui/components/EntryTitle/EntryTitle.js +53 -0
  721. package/ui/components/EntryTitle/index.js +4 -0
  722. package/ui/components/EntryTitle/utils.js +8 -0
  723. package/ui/components/ErrorBoundary/ErrorBoundary.js +24 -0
  724. package/ui/components/ErrorContent/DebugInfo/DebugInfo.js +40 -0
  725. package/ui/components/ErrorContent/ErrorContent.js +233 -0
  726. package/ui/components/ErrorPage/ErrorPage.js +9 -0
  727. package/ui/components/ErrorPage/withErrorPage.js +27 -0
  728. package/ui/components/ExpandablePanel/ExpandablePanel.js +73 -0
  729. package/ui/components/FieldEditor/FieldEditor.js +377 -0
  730. package/ui/components/FieldEditor/components/DocSection.js +266 -0
  731. package/ui/components/FieldEditor/components/FormulaSection.js +243 -0
  732. package/ui/components/FieldEditor/components/NameHeader.js +14 -0
  733. package/ui/components/FieldEditor/components/Settings.js +158 -0
  734. package/ui/components/FieldEditor/components/SourceSection.js +182 -0
  735. package/ui/components/FieldEditor/components/helpers.js +15 -0
  736. package/ui/components/FieldEditor/constants.js +29 -0
  737. package/ui/components/FieldEditor/index.js +38 -0
  738. package/ui/components/FieldEditor/utils.js +103 -0
  739. package/ui/components/FieldWrapper/FieldWrapper.js +16 -0
  740. package/ui/components/FloatMenu/FloatMenu.js +35 -0
  741. package/ui/components/FormSection/FormSection.js +17 -0
  742. package/ui/components/FormattedValue/FormattedValue.js +82 -0
  743. package/ui/components/IamAccessDialog/IamAccessDialog.js +15 -0
  744. package/ui/components/IamAccessDialog/index.js +5 -0
  745. package/ui/components/IconById/IconById.js +14 -0
  746. package/ui/components/Illustration/Illustration.js +21 -0
  747. package/ui/components/Illustration/context.js +31 -0
  748. package/ui/components/Illustration/getIllustrationStore.js +31 -0
  749. package/ui/components/Illustration/utils.js +24 -0
  750. package/ui/components/InaccessibleOnMobileInset/InaccessibleOnMobileInset.js +43 -0
  751. package/ui/components/Interpolate/Interpolate.js +32 -0
  752. package/ui/components/Interpolate/index.js +6 -0
  753. package/ui/components/Interpolate/utils.js +10 -0
  754. package/ui/components/InterpolatedText/InterpolatedText.js +47 -0
  755. package/ui/components/LandingPage/LandingPage.js +45 -0
  756. package/ui/components/ListWithMenu/ListWithMenu.js +173 -0
  757. package/ui/components/ListWithRemove/ListWithRemove.js +44 -0
  758. package/ui/components/LocationChange/LocationChange.js +23 -0
  759. package/ui/components/MarkdownControl/MarkdownControl.js +22 -0
  760. package/ui/components/MarkdownHelpPopover/Content.js +16 -0
  761. package/ui/components/MarkdownHelpPopover/MarkdownHelpPopover.js +33 -0
  762. package/ui/components/Markup/Markup.js +167 -0
  763. package/ui/components/Markup/components/MarkupTooltip/MarkupTooltip.js +13 -0
  764. package/ui/components/Markup/components/UserInfo/UserInfo.js +13 -0
  765. package/ui/components/Markup/components/index.js +6 -0
  766. package/ui/components/Markup/index.js +4 -0
  767. package/ui/components/Markup/utils.js +30 -0
  768. package/ui/components/MigrateToWorkbookDialog/MigrateToWorkbookDialog.js +155 -0
  769. package/ui/components/MigrateToWorkbookDialog/components/Body/Body.js +120 -0
  770. package/ui/components/MigrateToWorkbookDialog/components/Body/index.js +4 -0
  771. package/ui/components/MigrateToWorkbookDialog/components/EntriesGroup/EntriesGroup.js +59 -0
  772. package/ui/components/MigrateToWorkbookDialog/components/EntriesGroup/index.js +4 -0
  773. package/ui/components/MigrateToWorkbookDialog/components/EntryRow/EntryRow.js +24 -0
  774. package/ui/components/MigrateToWorkbookDialog/components/EntryRow/index.js +4 -0
  775. package/ui/components/MobileHeader/MobileHeaderComponent/BurgerMenuFooter/BurgerMenuFooter.js +49 -0
  776. package/ui/components/MobileHeader/MobileHeaderComponent/MobileHeaderComponent.js +94 -0
  777. package/ui/components/MobileHeader/MobileHeaderComponent/UserPanel/UserPanel.js +30 -0
  778. package/ui/components/MobileHeader/constants.js +4 -0
  779. package/ui/components/MobileTocToggle/MobileTocToggle.js +19 -0
  780. package/ui/components/Monaco/LazyMonaco.js +49 -0
  781. package/ui/components/Monaco/Monaco.js +78 -0
  782. package/ui/components/Navigation/Base/NavigationBase.js +482 -0
  783. package/ui/components/Navigation/Base/configure.js +166 -0
  784. package/ui/components/Navigation/Base/utils.js +9 -0
  785. package/ui/components/Navigation/Core/CreateEntry/CreateEntry.d.ts +11 -0
  786. package/ui/components/Navigation/Core/CreateEntry/CreateEntry.js +88 -0
  787. package/ui/components/Navigation/Core/CreateEntry/constants.d.ts +9 -0
  788. package/ui/components/Navigation/Core/CreateEntry/constants.js +13 -0
  789. package/ui/components/Navigation/Core/CreateEntry/getCreateEntryItems.js +60 -0
  790. package/ui/components/Navigation/Core/EntryContextButton/EntryContextButton.js +16 -0
  791. package/ui/components/Navigation/Core/ErrorView/ErrorView.js +42 -0
  792. package/ui/components/Navigation/Core/FavoritesNameWithAliasItem/FavoritesNameWithAliasItem.js +59 -0
  793. package/ui/components/Navigation/Core/NavigationBreadcrumbs/BreadcrumbMenu.js +188 -0
  794. package/ui/components/Navigation/Core/NavigationBreadcrumbs/NavigationBreadcrumbs.js +116 -0
  795. package/ui/components/Navigation/Core/NavigationEntries.js +570 -0
  796. package/ui/components/Navigation/Core/NavigationInline.js +110 -0
  797. package/ui/components/Navigation/Core/NavigationMinimal.js +163 -0
  798. package/ui/components/Navigation/Core/NavigationModal.js +188 -0
  799. package/ui/components/Navigation/Core/OrderSelect/OrderSelect.js +39 -0
  800. package/ui/components/Navigation/Core/SearchInput/SearchInput.js +35 -0
  801. package/ui/components/Navigation/Core/Sidebar/Sidebar.js +92 -0
  802. package/ui/components/Navigation/Core/TableView/BatchDialog/BatchDialog.js +29 -0
  803. package/ui/components/Navigation/Core/TableView/List/List.js +158 -0
  804. package/ui/components/Navigation/Core/TableView/Row/Row.js +292 -0
  805. package/ui/components/Navigation/Core/TableView/Row/RowHeader.js +53 -0
  806. package/ui/components/Navigation/Core/TableView/TableView.js +66 -0
  807. package/ui/components/Navigation/Core/TableView/useBatchSelect.js +96 -0
  808. package/ui/components/Navigation/NavigationMinimal.js +187 -0
  809. package/ui/components/Navigation/NavigationModal.js +73 -0
  810. package/ui/components/Navigation/PlaceSelect/PlaceSelect.js +83 -0
  811. package/ui/components/Navigation/components/BatchPanel/BatchPanel.js +43 -0
  812. package/ui/components/Navigation/components/EmptyState/EmptyState.js +42 -0
  813. package/ui/components/Navigation/components/EmptyState/utils.js +44 -0
  814. package/ui/components/Navigation/constants.js +42 -0
  815. package/ui/components/Navigation/dialogs/BatchMove/AccessError/AccessError.js +77 -0
  816. package/ui/components/Navigation/dialogs/BatchMove/BatchMove.js +147 -0
  817. package/ui/components/Navigation/dialogs/BatchMove/MoveError/MoveError.js +69 -0
  818. package/ui/components/Navigation/dialogs/BatchMove/SelectDestination/SelectDestination.js +55 -0
  819. package/ui/components/Navigation/hoc/resolveNavigationPath.js +65 -0
  820. package/ui/components/Navigation/index.js +12 -0
  821. package/ui/components/Navigation/settings.js +34 -0
  822. package/ui/components/Navigation/util.js +34 -0
  823. package/ui/components/NavigationPrompt/NavigationPrompt.js +18 -0
  824. package/ui/components/NavigationTabs/NavigationTabs.js +84 -0
  825. package/ui/components/NumberFormatSettings/NumberFormatSettings.js +157 -0
  826. package/ui/components/NumberFormatSettings/NumberInput/NumberInput.js +49 -0
  827. package/ui/components/OpenDialogNeedReset/OpenDialogNeedReset.js +50 -0
  828. package/ui/components/OrderBySelect/OrderBySelect.js +44 -0
  829. package/ui/components/OrderBySelect/constants.js +9 -0
  830. package/ui/components/OrderBySelect/index.js +7 -0
  831. package/ui/components/OrderBySelect/types.js +1 -0
  832. package/ui/components/PageTitle/PageTitle.js +8 -0
  833. package/ui/components/PageTitle/index.js +6 -0
  834. package/ui/components/PageTitle/usePageTitle.js +41 -0
  835. package/ui/components/PaletteIcon/PaletteIcon.js +27 -0
  836. package/ui/components/PaletteItem/PaletteItem.js +45 -0
  837. package/ui/components/PathSelect/PathSelect.js +123 -0
  838. package/ui/components/PlaceholderIllustration/PlaceholderIllustration.js +39 -0
  839. package/ui/components/Progress/DialogCounterProgress.js +48 -0
  840. package/ui/components/ProgressBar/ProgressBar.js +20 -0
  841. package/ui/components/RelativeDatesPicker/RelativeDatesPicker.js +534 -0
  842. package/ui/components/RelativeDatesPicker/constants.js +45 -0
  843. package/ui/components/RelativeDatesPicker/utils.js +121 -0
  844. package/ui/components/RevisionStatusPoint/RevisionStatusPoint.js +27 -0
  845. package/ui/components/Revisions/Revisions.js +163 -0
  846. package/ui/components/Revisions/RevisionsList/RevisionsList.js +112 -0
  847. package/ui/components/Revisions/helpers.js +51 -0
  848. package/ui/components/RevisionsPanel/RevisionsPanel.js +203 -0
  849. package/ui/components/RevisionsPanel/components/RevisionsControls.js +92 -0
  850. package/ui/components/RevisionsPanel/utils.js +12 -0
  851. package/ui/components/SectionWrapper/SectionWrapper.js +53 -0
  852. package/ui/components/Select/constants/SelectStyles.js +6 -0
  853. package/ui/components/Select/hooks/useSelectAsyncFetch/useIntersection.js +18 -0
  854. package/ui/components/Select/hooks/useSelectAsyncFetch/useSelectAsyncFetch.js +78 -0
  855. package/ui/components/Select/hooks/useSelectInfinityFetch/useSelectInfinityFetch.js +72 -0
  856. package/ui/components/Select/hooks/useSelectOptionsEnhancer.js +11 -0
  857. package/ui/components/Select/hooks/useSelectRenderEmptyOptions/useSelectRenderEmptyOptions.js +21 -0
  858. package/ui/components/Select/hooks/useSelectRenderError.js +26 -0
  859. package/ui/components/Select/hooks/useSelectRenderFilter/useSelectRenderFilter.js +147 -0
  860. package/ui/components/Select/wrappers/SelectFeatured.js +42 -0
  861. package/ui/components/Select/wrappers/SelectFeaturedAsync.js +46 -0
  862. package/ui/components/SelectComponents/components/SelectOptionWithIcon/SelectOptionWithIcon.js +13 -0
  863. package/ui/components/SelectComponents/index.js +4 -0
  864. package/ui/components/SelectMigrationToWorkbookDialog/Body/Body.js +35 -0
  865. package/ui/components/SelectMigrationToWorkbookDialog/SelectMigrationToWorkbookDialog.js +94 -0
  866. package/ui/components/SelectMigrationToWorkbookDialog/constants.js +57 -0
  867. package/ui/components/SharedBindingsList/ListSearch.js +36 -0
  868. package/ui/components/SharedBindingsList/SharedBindingsList.js +65 -0
  869. package/ui/components/SharedEntryIcon/SharedEntryIcon.js +23 -0
  870. package/ui/components/SlugifyUrl/SlugifyUrl.js +26 -0
  871. package/ui/components/SlugifyUrl/index.js +4 -0
  872. package/ui/components/SmartLoader/SmartLoader.js +29 -0
  873. package/ui/components/TabMenu/TabMenu.js +352 -0
  874. package/ui/components/TabMenu/types.js +12 -0
  875. package/ui/components/Tabs/Tabs.js +6 -0
  876. package/ui/components/Tabs/withDatalensSpecific.js +66 -0
  877. package/ui/components/TagInput/TagInput.js +143 -0
  878. package/ui/components/TemplateTextPaper/TemplateTextPaper.js +33 -0
  879. package/ui/components/TextEditor/TextEditor.js +42 -0
  880. package/ui/components/UserAvatar/UserAvatarById.js +27 -0
  881. package/ui/components/UserMenu/UserAvatar.js +7 -0
  882. package/ui/components/UserMenu/UserMenu.js +54 -0
  883. package/ui/components/ValuesList/ValuesList.js +56 -0
  884. package/ui/components/Veil/Veil.js +20 -0
  885. package/ui/components/ViewAsync/ViewAsync.js +46 -0
  886. package/ui/components/ViewError/ViewError.js +123 -0
  887. package/ui/components/ViewLoader/ViewLoader.js +19 -0
  888. package/ui/components/WidgetRoundingsInput/WidgetRoundingsInput.js +48 -0
  889. package/ui/components/Widgets/Chart/Chart.js +260 -0
  890. package/ui/components/Widgets/Chart/ChartSelector.js +258 -0
  891. package/ui/components/Widgets/Chart/ChartWidget.js +485 -0
  892. package/ui/components/Widgets/Chart/ChartWidgetWithProvider.js +53 -0
  893. package/ui/components/Widgets/Chart/components/ChartInfoIcon.js +38 -0
  894. package/ui/components/Widgets/Chart/components/Content.js +224 -0
  895. package/ui/components/Widgets/Chart/components/Header.js +149 -0
  896. package/ui/components/Widgets/Chart/components/WidgetFooter.js +27 -0
  897. package/ui/components/Widgets/Chart/components/WidgetHeader.js +182 -0
  898. package/ui/components/Widgets/Chart/helpers/helpers.d.ts +139 -0
  899. package/ui/components/Widgets/Chart/helpers/helpers.js +302 -0
  900. package/ui/components/Widgets/Chart/helpers/yandex-map.d.ts +12 -0
  901. package/ui/components/Widgets/Chart/helpers/yandex-map.js +84 -0
  902. package/ui/components/Widgets/Chart/hooks/useAutoHeightResizeObserver.js +57 -0
  903. package/ui/components/Widgets/Chart/hooks/useChartActivities.js +144 -0
  904. package/ui/components/Widgets/Chart/hooks/useIntersectionObserver.js +105 -0
  905. package/ui/components/Widgets/Chart/hooks/useLoadingChart.js +655 -0
  906. package/ui/components/Widgets/Chart/hooks/useLoadingChartSelector.js +302 -0
  907. package/ui/components/Widgets/Chart/hooks/useLoadingChartWidget.d.ts +195 -0
  908. package/ui/components/Widgets/Chart/hooks/useLoadingChartWidget.js +518 -0
  909. package/ui/components/Widgets/Chart/hooks/useMemoCallback.js +11 -0
  910. package/ui/components/Widgets/Chart/store/reducer.js +73 -0
  911. package/ui/components/Widgets/Chart/store/types.js +18 -0
  912. package/ui/components/Widgets/Chart/utils.js +14 -0
  913. package/ui/components/WorkbookIcon/WorkbookIcon.js +64 -0
  914. package/ui/components/WorkbookNavigationMinimal/WorkbookNavigationMinimal.js +311 -0
  915. package/ui/components/WorkbookNavigationMinimal/components/ListWithSharedEntries.js +56 -0
  916. package/ui/components/WorkbookNavigationMinimal/constants.js +4 -0
  917. package/ui/components/YfmWrapper/YfmWrapper.js +126 -0
  918. package/ui/components/YfmWrapper/YfmWrapperContent.js +30 -0
  919. package/ui/components/common/Datepicker/Calendar/Calendar.js +551 -0
  920. package/ui/components/common/Datepicker/Datepicker.js +511 -0
  921. package/ui/components/common/Datepicker/Month/Month.js +158 -0
  922. package/ui/components/common/Datepicker/Months/Months.js +132 -0
  923. package/ui/components/common/Datepicker/PopupContent/PopupContent.js +74 -0
  924. package/ui/components/common/Datepicker/Presets/Presets.js +40 -0
  925. package/ui/components/common/Datepicker/Quarters/Quarters.js +114 -0
  926. package/ui/components/common/Datepicker/YearSwitcher/YearSwitcher.js +49 -0
  927. package/ui/components/common/Datepicker/Years/Years.js +89 -0
  928. package/ui/components/common/Datepicker/constants.js +58 -0
  929. package/ui/components/common/Datepicker/index.js +9 -0
  930. package/ui/components/common/Datepicker/utils.js +221 -0
  931. package/ui/components/common/DatepickerControl/DatepickerControl.js +9 -0
  932. package/ui/components/common/RangeInputPicker/RangeInputPicker.js +366 -0
  933. package/ui/components/common/RangeInputPicker/constants.js +17 -0
  934. package/ui/components/common/RangeInputPicker/index.js +4 -0
  935. package/ui/components/common/RangeInputPicker/utils.js +83 -0
  936. package/ui/components/common/YCSelect/Item/Item.js +358 -0
  937. package/ui/components/common/YCSelect/Items/Items.js +366 -0
  938. package/ui/components/common/YCSelect/Search/Search.js +70 -0
  939. package/ui/components/common/YCSelect/YCSelect.js +1339 -0
  940. package/ui/components/common/YCSelect/constants.js +6 -0
  941. package/ui/components/common/YCSelect/isBothEmpty.js +12 -0
  942. package/ui/components/common/YCSelect/utils.js +47 -0
  943. package/ui/configs/common/icons.js +65 -0
  944. package/ui/configs/index.js +7 -0
  945. package/ui/constants/common.js +413 -0
  946. package/ui/constants/connections.js +15 -0
  947. package/ui/constants/dialogs.js +29 -0
  948. package/ui/constants/embedded.js +7 -0
  949. package/ui/constants/index.js +59 -0
  950. package/ui/constants/misc.js +147 -0
  951. package/ui/constants/mobile.js +11 -0
  952. package/ui/constants/navigation.js +4 -0
  953. package/ui/constants/operations.js +199 -0
  954. package/ui/constants/visualizations/combined-chart.js +14 -0
  955. package/ui/constants/visualizations/donut.js +14 -0
  956. package/ui/constants/visualizations/flatTable.js +55 -0
  957. package/ui/constants/visualizations/geolayer.js +18 -0
  958. package/ui/constants/visualizations/geopoint.js +56 -0
  959. package/ui/constants/visualizations/geopolygon.js +30 -0
  960. package/ui/constants/visualizations/heatmap.js +30 -0
  961. package/ui/constants/visualizations/index.js +217 -0
  962. package/ui/constants/visualizations/line.js +395 -0
  963. package/ui/constants/visualizations/metric.js +30 -0
  964. package/ui/constants/visualizations/pie.js +70 -0
  965. package/ui/constants/visualizations/pivotTable.js +91 -0
  966. package/ui/constants/visualizations/polyline.js +62 -0
  967. package/ui/constants/visualizations/scatter.js +114 -0
  968. package/ui/constants/visualizations/treemap.js +89 -0
  969. package/ui/constants/visualizations/utils.js +18 -0
  970. package/ui/constants/workbooks.js +6 -0
  971. package/ui/constants/yfm.js +10 -0
  972. package/ui/datalens/helpers.js +10 -0
  973. package/ui/datalens/hooks.js +17 -0
  974. package/ui/datalens/index.js +127 -0
  975. package/ui/datalens/pages/AuthPage/AuthPage.js +6 -0
  976. package/ui/datalens/pages/CollectionsNavigationPage/CollectionsNavigationPage.js +14 -0
  977. package/ui/datalens/pages/ConnectionsPage/ConnectionsPage.js +10 -0
  978. package/ui/datalens/pages/DashAndWizardQLPages/DashAndWizardQLPages.js +67 -0
  979. package/ui/datalens/pages/DashPage/DashPage.js +23 -0
  980. package/ui/datalens/pages/DatasetPage/DatasetPage.js +15 -0
  981. package/ui/datalens/pages/FallbackPage/FallbackPage.js +9 -0
  982. package/ui/datalens/pages/LandingPage/LandingPage.js +9 -0
  983. package/ui/datalens/pages/OwnUserProfilePage/OwnUserProfilePage.js +30 -0
  984. package/ui/datalens/pages/PreviewPage/PreviewPage.js +6 -0
  985. package/ui/datalens/pages/QLPage/QLPage.js +20 -0
  986. package/ui/datalens/pages/ServiceSettingsPage/ServiceSettingsPage.js +6 -0
  987. package/ui/datalens/pages/WizardPage/WizardPage.js +12 -0
  988. package/ui/datalens/render.d.ts +7 -0
  989. package/ui/datalens/render.js +14 -0
  990. package/ui/entries/main.d.ts +4 -0
  991. package/ui/entries/main.js +82 -0
  992. package/ui/hoc/index.js +4 -0
  993. package/ui/hoc/withHiddenUnmount.js +17 -0
  994. package/ui/hoc/withHotkeysContext.js +14 -0
  995. package/ui/hoc/withInaccessibleOnMobile.js +22 -0
  996. package/ui/hoc/withPromiseOpen.js +33 -0
  997. package/ui/hooks/index.js +16 -0
  998. package/ui/hooks/useBeforeLoad.js +13 -0
  999. package/ui/hooks/useBindHotkey.js +17 -0
  1000. package/ui/hooks/useChangedProp.js +13 -0
  1001. package/ui/hooks/useEffectOnce.js +7 -0
  1002. package/ui/hooks/useEnterClick.js +22 -0
  1003. package/ui/hooks/useHover.js +19 -0
  1004. package/ui/hooks/useLocalStorageFallback.js +59 -0
  1005. package/ui/hooks/useMarkdown.js +42 -0
  1006. package/ui/hooks/useMountedState.js +15 -0
  1007. package/ui/hooks/usePrevious.js +11 -0
  1008. package/ui/hooks/useRefMounted.js +14 -0
  1009. package/ui/hooks/useSetState.js +16 -0
  1010. package/ui/hooks/useShallowEqualSelector.js +7 -0
  1011. package/ui/hooks/useTitle.js +16 -0
  1012. package/ui/index.js +41 -0
  1013. package/ui/libs/DatalensChartkit/ChartKit/ChartKit.js +99 -0
  1014. package/ui/libs/DatalensChartkit/ChartKit/ChartKitAdapter.js +172 -0
  1015. package/ui/libs/DatalensChartkit/ChartKit/components/ChartKitTooltip/ChartKitTooltip.js +143 -0
  1016. package/ui/libs/DatalensChartkit/ChartKit/components/Error/Error.js +17 -0
  1017. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/IconRenderer.js +58 -0
  1018. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/CirclePointIcon.js +15 -0
  1019. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DashDotLineIcon.js +23 -0
  1020. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DashLineIcon.js +23 -0
  1021. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DiamondPointIcon.js +21 -0
  1022. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DotLineIcon.js +15 -0
  1023. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/LongDashDotDotLineIcon.js +23 -0
  1024. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/LongDashDotLineIcon.js +23 -0
  1025. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/LongDashLineIcon.js +15 -0
  1026. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDashDotDotLineIcon.js +23 -0
  1027. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDashDotLineIcon.js +23 -0
  1028. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDashLineIcon.js +23 -0
  1029. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDotLineIcon.js +23 -0
  1030. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/SolidLineIcon.js +15 -0
  1031. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/SquarePointIcon.js +16 -0
  1032. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/TriangleDownPointIcon.js +16 -0
  1033. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/TrianglePointIcon.js +16 -0
  1034. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/constants.js +6 -0
  1035. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/renderTooltipIcon.js +36 -0
  1036. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/DashDotLineIcon.js +23 -0
  1037. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/DashLineIcon.js +28 -0
  1038. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/DotLineIcon.js +23 -0
  1039. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/LongDashDotDotLineIcon.js +21 -0
  1040. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/LongDashDotLineIcon.js +21 -0
  1041. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/LongDashLineIcon.js +18 -0
  1042. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDashDotDotLineIcon.js +21 -0
  1043. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDashDotLineIcon.js +21 -0
  1044. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDashLineIcon.js +21 -0
  1045. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDotLineIcon.js +23 -0
  1046. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/SolidLineIcon.js +16 -0
  1047. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/index.js +24 -0
  1048. package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/utils.js +8 -0
  1049. package/ui/libs/DatalensChartkit/ChartKit/components/Loader/Loader.js +11 -0
  1050. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/Widget.js +67 -0
  1051. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/AlertWidget/AlertWidget.js +112 -0
  1052. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/AlertWidget/utils.js +317 -0
  1053. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Markdown/Markdown.js +49 -0
  1054. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Bar/Bar.js +51 -0
  1055. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Bar/utils.js +225 -0
  1056. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Paginator/Paginator.js +94 -0
  1057. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Table.js +340 -0
  1058. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/WrappedHTMLNode.js +16 -0
  1059. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/action-params.js +272 -0
  1060. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/event-handlers.js +73 -0
  1061. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/index.js +11 -0
  1062. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/misc.js +225 -0
  1063. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/render.js +418 -0
  1064. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/validation.js +85 -0
  1065. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/constants.js +10 -0
  1066. package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/index.js +8 -0
  1067. package/ui/libs/DatalensChartkit/ChartKit/components/index.js +10 -0
  1068. package/ui/libs/DatalensChartkit/ChartKit/helpers/action-params-handlers.js +241 -0
  1069. package/ui/libs/DatalensChartkit/ChartKit/helpers/apply-hc-handlers.js +144 -0
  1070. package/ui/libs/DatalensChartkit/ChartKit/helpers/chartkit-adapter.d.ts +59 -0
  1071. package/ui/libs/DatalensChartkit/ChartKit/helpers/chartkit-adapter.js +202 -0
  1072. package/ui/libs/DatalensChartkit/ChartKit/helpers/constants.js +10 -0
  1073. package/ui/libs/DatalensChartkit/ChartKit/helpers/getRandomCKId.js +11 -0
  1074. package/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/chart-to-table.js +95 -0
  1075. package/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/chartkit-adapter.js +138 -0
  1076. package/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/comments.js +61 -0
  1077. package/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/event-handlers.js +151 -0
  1078. package/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/holidays.js +38 -0
  1079. package/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/utils.js +65 -0
  1080. package/ui/libs/DatalensChartkit/ChartKit/helpers/tooltip.js +213 -0
  1081. package/ui/libs/DatalensChartkit/ChartKit/helpers/utils.js +81 -0
  1082. package/ui/libs/DatalensChartkit/ChartKit/helpers/wait-for-content.js +29 -0
  1083. package/ui/libs/DatalensChartkit/ChartKit/init.js +73 -0
  1084. package/ui/libs/DatalensChartkit/ChartKit/modules/chartkit-custom-error/chartkit-custom-error.js +41 -0
  1085. package/ui/libs/DatalensChartkit/ChartKit/modules/comments/drawing.js +570 -0
  1086. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/config.d.ts +576 -0
  1087. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/config.js +1458 -0
  1088. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/handleLegendItemClick.js +62 -0
  1089. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/options.js +436 -0
  1090. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/predicates.d.ts +1 -0
  1091. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/predicates.js +6 -0
  1092. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/addShowInNavigatorToSeries.js +49 -0
  1093. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/buildNavigatorFallback.js +16 -0
  1094. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/calculatePrecision.js +23 -0
  1095. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/concatStrings.js +4 -0
  1096. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/getChartKitFormattedValue.js +26 -0
  1097. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/getFormatOptionsFromLine.js +18 -0
  1098. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/getXAxisThresholdValue.js +12 -0
  1099. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/index.js +24 -0
  1100. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/isSafari.js +14 -0
  1101. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/isTooltipShared.js +9 -0
  1102. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/localStorage.js +23 -0
  1103. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/mergeArrayWithObject.js +13 -0
  1104. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/numberFormat.js +29 -0
  1105. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/setNavigatorDefaultPeriod.js +31 -0
  1106. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/graph.js +83 -0
  1107. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/prepare-data.js +144 -0
  1108. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/tooltip/helpers.js +8 -0
  1109. package/ui/libs/DatalensChartkit/ChartKit/modules/graph/tooltip/tooltip.js +211 -0
  1110. package/ui/libs/DatalensChartkit/ChartKit/modules/highcharts/colors.js +20 -0
  1111. package/ui/libs/DatalensChartkit/ChartKit/modules/highcharts/helpers/calcucalteClosestPointManually.js +21 -0
  1112. package/ui/libs/DatalensChartkit/ChartKit/modules/highcharts/helpers/index.js +4 -0
  1113. package/ui/libs/DatalensChartkit/ChartKit/modules/highcharts/highcharts.js +350 -0
  1114. package/ui/libs/DatalensChartkit/ChartKit/modules/i18n/i18n.js +14 -0
  1115. package/ui/libs/DatalensChartkit/ChartKit/modules/i18n/keysets/en.js +60 -0
  1116. package/ui/libs/DatalensChartkit/ChartKit/modules/i18n/keysets/ru.js +61 -0
  1117. package/ui/libs/DatalensChartkit/ChartKit/modules/map/map.js +231 -0
  1118. package/ui/libs/DatalensChartkit/ChartKit/modules/map/options.js +33 -0
  1119. package/ui/libs/DatalensChartkit/ChartKit/modules/map/tooltip/tooltip.js +30 -0
  1120. package/ui/libs/DatalensChartkit/ChartKit/modules/perfomance.js +23 -0
  1121. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/helpers/fetch-script.js +14 -0
  1122. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/helpers/index.js +6 -0
  1123. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/helpers/number-format.js +9 -0
  1124. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/Canvas.js +157 -0
  1125. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/DataConverter.js +84 -0
  1126. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/Heatmap.js +105 -0
  1127. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/TileUrlsGenerator.js +107 -0
  1128. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/Gridmap.js +123 -0
  1129. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/utils/hexagonGrid.js +48 -0
  1130. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/utils/squareGrid.js +36 -0
  1131. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/Polygonmap.js +329 -0
  1132. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/colorLegend.js +62 -0
  1133. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/colorize.js +80 -0
  1134. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultBalloonContent.js +10 -0
  1135. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultFilter.js +7 -0
  1136. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultMapper.js +25 -0
  1137. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultOnClick.js +46 -0
  1138. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultOnMouseEnter.js +24 -0
  1139. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultOnMouseLeave.js +16 -0
  1140. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/inside.js +31 -0
  1141. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/normalizeFeature.js +22 -0
  1142. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/modules.js +14 -0
  1143. package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/yandex-map.js +571 -0
  1144. package/ui/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/index.js +8 -0
  1145. package/ui/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/AdvancedChartWidget.js +222 -0
  1146. package/ui/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/components/Tooltip/Tooltip.js +40 -0
  1147. package/ui/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/utils.js +10 -0
  1148. package/ui/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/index.js +8 -0
  1149. package/ui/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/renderer/HighchartsMapComponent.js +102 -0
  1150. package/ui/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/renderer/HighchartsMapWidget.js +13 -0
  1151. package/ui/libs/DatalensChartkit/ChartKit/plugins/Markup/index.js +8 -0
  1152. package/ui/libs/DatalensChartkit/ChartKit/plugins/Markup/renderer/MarkupWidget.js +37 -0
  1153. package/ui/libs/DatalensChartkit/ChartKit/plugins/Metric/index.js +8 -0
  1154. package/ui/libs/DatalensChartkit/ChartKit/plugins/Metric/renderer/MetricTile.js +157 -0
  1155. package/ui/libs/DatalensChartkit/ChartKit/plugins/Metric/renderer/MetricWidget.js +37 -0
  1156. package/ui/libs/DatalensChartkit/ChartKit/plugins/Metric/renderer/metricHelpers.js +192 -0
  1157. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/index.js +8 -0
  1158. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/TableWidget.js +93 -0
  1159. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/BarCell/BarCell.js +40 -0
  1160. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/DiffCell/DiffCell.js +29 -0
  1161. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/HtmlCell/HtmlCell.js +45 -0
  1162. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/MarkupCell/MarkupCell.js +24 -0
  1163. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/SortIcon/SortIcon.js +27 -0
  1164. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/BackgroundTable.js +73 -0
  1165. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/Table.js +275 -0
  1166. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/TableBody.js +74 -0
  1167. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/TableFooter.js +35 -0
  1168. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/TableHead.js +57 -0
  1169. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/cell-width.js +21 -0
  1170. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/usePreparedTableData.js +406 -0
  1171. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/utils.js +271 -0
  1172. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/TableTitleView/TableTitleView.js +13 -0
  1173. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/TreeCell/TreeCell.js +36 -0
  1174. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/action-params.js +49 -0
  1175. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/drill-down.js +13 -0
  1176. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/index.js +20 -0
  1177. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/math.js +29 -0
  1178. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/migrate-to-old-format.js +68 -0
  1179. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/renderer.js +148 -0
  1180. package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/tree.js +105 -0
  1181. package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/index.js +8 -0
  1182. package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Icons/EyeSlashIcon.js +11 -0
  1183. package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Icons/SizeIcon.js +15 -0
  1184. package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Layer/Layer.js +170 -0
  1185. package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Legend.js +32 -0
  1186. package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/YandexMapComponent.js +495 -0
  1187. package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/YandexMapWidget.js +13 -0
  1188. package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/events.js +187 -0
  1189. package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/utils.js +17 -0
  1190. package/ui/libs/DatalensChartkit/ChartKit/plugins/chart-storage.js +4 -0
  1191. package/ui/libs/DatalensChartkit/ChartKit/plugins/components/StyledSplitPane/StyledSplitPane.js +42 -0
  1192. package/ui/libs/DatalensChartkit/ChartKit/plugins/components/index.js +6 -0
  1193. package/ui/libs/DatalensChartkit/ChartKit/plugins/components/withSplitPane/withSplitPane.js +228 -0
  1194. package/ui/libs/DatalensChartkit/ChartKit/plugins/index.js +28 -0
  1195. package/ui/libs/DatalensChartkit/DatalensChartKitOld.js +68 -0
  1196. package/ui/libs/DatalensChartkit/Error/Error.js +244 -0
  1197. package/ui/libs/DatalensChartkit/Error/getAdditionalChartkitErrorContent.js +6 -0
  1198. package/ui/libs/DatalensChartkit/components/ChartKitBase/ChartKitBase.js +540 -0
  1199. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Chart/Chart.js +52 -0
  1200. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/ChartkitError/ChartkitError.js +29 -0
  1201. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/Header.js +43 -0
  1202. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/ChartsInsights.js +98 -0
  1203. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/components/ChartsInsightsIcon/ChartsInsightsIcon.js +24 -0
  1204. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/components/ChartsInsightsIcon/getIconData.js +12 -0
  1205. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/components/TooltipContent/TooltipContent.js +34 -0
  1206. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/helpers/getIconLevel.js +28 -0
  1207. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/DownloadCsv/DownloadCsv.js +142 -0
  1208. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/CsvExport/CsvExport.js +29 -0
  1209. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/Export.js +161 -0
  1210. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/ToastContent/ToastContent.js +59 -0
  1211. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/content.d.ts +2 -0
  1212. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/content.js +42 -0
  1213. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/utils.d.ts +10 -0
  1214. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/utils.js +114 -0
  1215. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Inspector.js +124 -0
  1216. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/SourceMeta/Datalens.js +30 -0
  1217. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/Source/Source.js +83 -0
  1218. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/SourceError/SourceError.js +66 -0
  1219. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/SourceSuccess/SourceSuccess.js +108 -0
  1220. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/Sources.js +57 -0
  1221. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Timings/Timings.js +265 -0
  1222. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/constants.js +11 -0
  1223. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Menu.js +264 -0
  1224. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/MenuWithErrorBoundary/MenuWithErrorBoundary.js +6 -0
  1225. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/index.js +6 -0
  1226. package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Loader/Loader.js +32 -0
  1227. package/ui/libs/DatalensChartkit/components/ChartKitBase/helpers.js +42 -0
  1228. package/ui/libs/DatalensChartkit/components/ChartKitIcon/ChartKitIcon.js +58 -0
  1229. package/ui/libs/DatalensChartkit/components/Control/Control.js +291 -0
  1230. package/ui/libs/DatalensChartkit/components/Control/Items/Items.js +513 -0
  1231. package/ui/libs/DatalensChartkit/components/Control/Items/withWrapForControls.js +74 -0
  1232. package/ui/libs/DatalensChartkit/components/DeferredInitializer/DeferredInitializer.js +88 -0
  1233. package/ui/libs/DatalensChartkit/components/Drill/Drill.js +135 -0
  1234. package/ui/libs/DatalensChartkit/components/Error/Error.js +51 -0
  1235. package/ui/libs/DatalensChartkit/components/Error/More/More.js +64 -0
  1236. package/ui/libs/DatalensChartkit/components/ErrorBoundary/ErrorBoundary.js +27 -0
  1237. package/ui/libs/DatalensChartkit/components/ErrorBoundary/withErrorBoundary.js +13 -0
  1238. package/ui/libs/DatalensChartkit/components/Palette/Attach/Attach.js +28 -0
  1239. package/ui/libs/DatalensChartkit/components/Palette/ColorItem/ColorItem.js +44 -0
  1240. package/ui/libs/DatalensChartkit/components/Palette/DraggableModalHOC/DraggableModalHOC.js +35 -0
  1241. package/ui/libs/DatalensChartkit/components/Palette/PaletteEditor/PaletteEditor.js +98 -0
  1242. package/ui/libs/DatalensChartkit/components/Palette/PaletteSettings/PaletteSettings.js +38 -0
  1243. package/ui/libs/DatalensChartkit/components/SideMarkdown/SideMarkdown.js +35 -0
  1244. package/ui/libs/DatalensChartkit/extensions/control.js +8 -0
  1245. package/ui/libs/DatalensChartkit/extensions/markdown.js +9 -0
  1246. package/ui/libs/DatalensChartkit/extensions/table.js +9 -0
  1247. package/ui/libs/DatalensChartkit/helpers/convert-data-to-table.js +61 -0
  1248. package/ui/libs/DatalensChartkit/helpers/helpers.js +53 -0
  1249. package/ui/libs/DatalensChartkit/index.js +11 -0
  1250. package/ui/libs/DatalensChartkit/menu/Menu.js +45 -0
  1251. package/ui/libs/DatalensChartkit/menu/MenuItems.d.ts +56 -0
  1252. package/ui/libs/DatalensChartkit/menu/MenuItems.js +234 -0
  1253. package/ui/libs/DatalensChartkit/menu/constants.d.ts +10 -0
  1254. package/ui/libs/DatalensChartkit/menu/constants.js +16 -0
  1255. package/ui/libs/DatalensChartkit/menu/helpers.js +85 -0
  1256. package/ui/libs/DatalensChartkit/modules/axios/axios.js +67 -0
  1257. package/ui/libs/DatalensChartkit/modules/axios/axiosConcurrency.js +69 -0
  1258. package/ui/libs/DatalensChartkit/modules/constants/constants.js +42 -0
  1259. package/ui/libs/DatalensChartkit/modules/data-provider/charts/chartkit-handlers.js +139 -0
  1260. package/ui/libs/DatalensChartkit/modules/data-provider/charts/constants.d.ts +14 -0
  1261. package/ui/libs/DatalensChartkit/modules/data-provider/charts/constants.js +17 -0
  1262. package/ui/libs/DatalensChartkit/modules/data-provider/charts/get-graph/get-graph.js +13 -0
  1263. package/ui/libs/DatalensChartkit/modules/data-provider/charts/get-graph/prepare-config.js +202 -0
  1264. package/ui/libs/DatalensChartkit/modules/data-provider/charts/get-graph/prepare-data.js +144 -0
  1265. package/ui/libs/DatalensChartkit/modules/data-provider/charts/helpers/getChartsInsightsData.js +68 -0
  1266. package/ui/libs/DatalensChartkit/modules/data-provider/charts/helpers/index.js +4 -0
  1267. package/ui/libs/DatalensChartkit/modules/data-provider/charts/index.d.ts +113 -0
  1268. package/ui/libs/DatalensChartkit/modules/data-provider/charts/index.js +755 -0
  1269. package/ui/libs/DatalensChartkit/modules/data-provider/charts/node.js +350 -0
  1270. package/ui/libs/DatalensChartkit/modules/data-provider/charts/types.js +1 -0
  1271. package/ui/libs/DatalensChartkit/modules/data-provider/charts/ui-sandbox-runtime.js +189 -0
  1272. package/ui/libs/DatalensChartkit/modules/data-provider/charts/ui-sandbox.js +523 -0
  1273. package/ui/libs/DatalensChartkit/modules/data-provider/charts/utils.js +41 -0
  1274. package/ui/libs/DatalensChartkit/modules/data-provider/charts/wizard.js +335 -0
  1275. package/ui/libs/DatalensChartkit/modules/data-provider/helpers.js +15 -0
  1276. package/ui/libs/DatalensChartkit/modules/data-provider/withDataProvider.js +29 -0
  1277. package/ui/libs/DatalensChartkit/modules/datalens-chartkit-custom-error/datalens-chartkit-custom-error.js +157 -0
  1278. package/ui/libs/DatalensChartkit/modules/export/export.js +420 -0
  1279. package/ui/libs/DatalensChartkit/modules/extensions-manager/extensions-manager.js +42 -0
  1280. package/ui/libs/DatalensChartkit/modules/html-generator/constants.js +205 -0
  1281. package/ui/libs/DatalensChartkit/modules/html-generator/index.js +89 -0
  1282. package/ui/libs/DatalensChartkit/modules/html-generator/utils.js +146 -0
  1283. package/ui/libs/DatalensChartkit/modules/localStorage.js +23 -0
  1284. package/ui/libs/DatalensChartkit/modules/menu/menu.js +70 -0
  1285. package/ui/libs/DatalensChartkit/modules/perfomance.js +23 -0
  1286. package/ui/libs/DatalensChartkit/modules/settings/settings.js +83 -0
  1287. package/ui/libs/DatalensChartkit/modules/table.js +14 -0
  1288. package/ui/libs/auth/refreshToken.js +27 -0
  1289. package/ui/libs/axios/axios.js +41 -0
  1290. package/ui/libs/axios/interceptors.js +13 -0
  1291. package/ui/libs/datasetHelper/index.js +40 -0
  1292. package/ui/libs/datasetSdk/index.js +118 -0
  1293. package/ui/libs/index.js +12 -0
  1294. package/ui/libs/logger/index.js +18 -0
  1295. package/ui/libs/metrica/index.js +45 -0
  1296. package/ui/libs/monaco/constants.js +6 -0
  1297. package/ui/libs/monaco/dl-lang/constants.js +49 -0
  1298. package/ui/libs/monaco/dl-lang/index.js +184 -0
  1299. package/ui/libs/monaco/index.js +19 -0
  1300. package/ui/libs/monaco/load-monaco-core.js +7 -0
  1301. package/ui/libs/monaco/ql-lang/constants.js +487 -0
  1302. package/ui/libs/monaco/ql-lang/index.js +142 -0
  1303. package/ui/libs/monaco/theme-mappers.js +67 -0
  1304. package/ui/libs/monaco/types.js +1 -0
  1305. package/ui/libs/monaco/utils.js +41 -0
  1306. package/ui/libs/navigateHelper/index.js +74 -0
  1307. package/ui/libs/schematic-sdk/decorator.js +59 -0
  1308. package/ui/libs/schematic-sdk/index.js +94 -0
  1309. package/ui/libs/schematic-sdk/parse-error.js +92 -0
  1310. package/ui/libs/sdk/index.js +118 -0
  1311. package/ui/libs/userSettings/index.js +24 -0
  1312. package/ui/modules/index.js +4 -0
  1313. package/ui/modules/markdownProvider.js +65 -0
  1314. package/ui/navigation/history.js +15 -0
  1315. package/ui/navigation/index.js +33 -0
  1316. package/ui/navigation/router.js +77 -0
  1317. package/ui/registry/components/DefaultEmpty.js +10 -0
  1318. package/ui/registry/functions/example-function.js +6 -0
  1319. package/ui/registry/index.js +39 -0
  1320. package/ui/registry/libs/index.js +7 -0
  1321. package/ui/registry/libs/registryLibsPlugins.js +11 -0
  1322. package/ui/registry/libs/schematic-sdk/index.js +18 -0
  1323. package/ui/registry/units/auth/components-map.js +9 -0
  1324. package/ui/registry/units/auth/functions-map.js +10 -0
  1325. package/ui/registry/units/auth/index.js +13 -0
  1326. package/ui/registry/units/auth/register.js +14 -0
  1327. package/ui/registry/units/chart/components-map.js +8 -0
  1328. package/ui/registry/units/chart/functions-map.js +19 -0
  1329. package/ui/registry/units/chart/index.js +13 -0
  1330. package/ui/registry/units/chart/register.js +21 -0
  1331. package/ui/registry/units/collections/components-map.js +8 -0
  1332. package/ui/registry/units/collections/functionts-map.js +11 -0
  1333. package/ui/registry/units/collections/index.js +11 -0
  1334. package/ui/registry/units/collections/register.js +15 -0
  1335. package/ui/registry/units/common/components/Example/Example.js +16 -0
  1336. package/ui/registry/units/common/components-map.js +44 -0
  1337. package/ui/registry/units/common/constants/components.js +4 -0
  1338. package/ui/registry/units/common/constants/functions.js +4 -0
  1339. package/ui/registry/units/common/functions-map.js +73 -0
  1340. package/ui/registry/units/common/index.js +13 -0
  1341. package/ui/registry/units/common/register.js +109 -0
  1342. package/ui/registry/units/common/types/components/IamAccessDialog.js +9 -0
  1343. package/ui/registry/units/connections/components-map.js +8 -0
  1344. package/ui/registry/units/connections/functions-map.js +16 -0
  1345. package/ui/registry/units/connections/index.js +13 -0
  1346. package/ui/registry/units/connections/register.js +23 -0
  1347. package/ui/registry/units/dash/components-map.js +12 -0
  1348. package/ui/registry/units/dash/functions-map.js +22 -0
  1349. package/ui/registry/units/dash/index.js +13 -0
  1350. package/ui/registry/units/dash/register.js +26 -0
  1351. package/ui/registry/units/datasets/functions-map.js +8 -0
  1352. package/ui/registry/units/datasets/index.js +9 -0
  1353. package/ui/registry/units/datasets/register.js +10 -0
  1354. package/ui/registry/units/docs/functions-map.js +7 -0
  1355. package/ui/registry/units/docs/index.js +12 -0
  1356. package/ui/registry/units/docs/register.js +8 -0
  1357. package/ui/registry/units/editor/components-map.js +8 -0
  1358. package/ui/registry/units/editor/constants/components.js +4 -0
  1359. package/ui/registry/units/editor/constants/functions.js +4 -0
  1360. package/ui/registry/units/editor/functions-map.js +9 -0
  1361. package/ui/registry/units/editor/index.js +13 -0
  1362. package/ui/registry/units/fieldEditor/components-map.js +10 -0
  1363. package/ui/registry/units/fieldEditor/index.js +9 -0
  1364. package/ui/registry/units/main/components-map.js +7 -0
  1365. package/ui/registry/units/main/index.js +12 -0
  1366. package/ui/registry/units/main/register.js +7 -0
  1367. package/ui/registry/units/preview/components-map.js +7 -0
  1368. package/ui/registry/units/preview/index.js +12 -0
  1369. package/ui/registry/units/public/components-map.js +7 -0
  1370. package/ui/registry/units/public/index.js +12 -0
  1371. package/ui/registry/units/public/register.js +5 -0
  1372. package/ui/registry/units/ql/components-map.js +8 -0
  1373. package/ui/registry/units/ql/functions-map.js +8 -0
  1374. package/ui/registry/units/ql/index.js +13 -0
  1375. package/ui/registry/units/ql/register.js +14 -0
  1376. package/ui/registry/units/wizard/components-map.js +7 -0
  1377. package/ui/registry/units/wizard/index.js +12 -0
  1378. package/ui/registry/units/wizard/register.js +5 -0
  1379. package/ui/registry/units/workbooks/components-map.js +8 -0
  1380. package/ui/registry/units/workbooks/functions-map.js +15 -0
  1381. package/ui/registry/units/workbooks/index.js +13 -0
  1382. package/ui/registry/units/workbooks/register.js +25 -0
  1383. package/ui/registry/utils/components-registry.js +47 -0
  1384. package/ui/registry/utils/register-app-plugins.js +33 -0
  1385. package/ui/store/actions/asideHeader/index.js +83 -0
  1386. package/ui/store/actions/asideHeader/navigation.js +23 -0
  1387. package/ui/store/actions/chartWidget.js +92 -0
  1388. package/ui/store/actions/collectionsStructure/common.js +715 -0
  1389. package/ui/store/actions/collectionsStructure/export.js +267 -0
  1390. package/ui/store/actions/collectionsStructure/index.js +35 -0
  1391. package/ui/store/actions/collectionsStructure/showCollectionEntityErrorToast.js +30 -0
  1392. package/ui/store/actions/collectionsStructure/templates.js +47 -0
  1393. package/ui/store/actions/colorPaletteEditor.js +122 -0
  1394. package/ui/store/actions/controlDialog/controlDialog.js +441 -0
  1395. package/ui/store/actions/controlDialog/helpers.js +29 -0
  1396. package/ui/store/actions/copyEntriesToWorkbook.js +105 -0
  1397. package/ui/store/actions/dialog.js +218 -0
  1398. package/ui/store/actions/editHistory.js +173 -0
  1399. package/ui/store/actions/entryContent.js +240 -0
  1400. package/ui/store/actions/landing.js +11 -0
  1401. package/ui/store/actions/localStorageFallback.js +11 -0
  1402. package/ui/store/actions/migrationToWorkbook.js +167 -0
  1403. package/ui/store/actions/toaster.js +42 -0
  1404. package/ui/store/actions/user.js +33 -0
  1405. package/ui/store/actions/usersByIds.js +8 -0
  1406. package/ui/store/configure.js +39 -0
  1407. package/ui/store/constants/collectionsStructure.js +180 -0
  1408. package/ui/store/constants/controlDialog.js +62 -0
  1409. package/ui/store/constants/copyEntriesToWorkbook.js +28 -0
  1410. package/ui/store/constants/editHistory.js +7 -0
  1411. package/ui/store/constants/migrationToWorkbook.js +38 -0
  1412. package/ui/store/index.js +8 -0
  1413. package/ui/store/reducer-registry.js +55 -0
  1414. package/ui/store/reducers/asideHeader.js +102 -0
  1415. package/ui/store/reducers/collectionsStructure.js +960 -0
  1416. package/ui/store/reducers/colorPaletteEditor.js +26 -0
  1417. package/ui/store/reducers/controlDialog/controlDialog.d.ts +59 -0
  1418. package/ui/store/reducers/controlDialog/controlDialog.js +455 -0
  1419. package/ui/store/reducers/controlDialog/helpers.js +41 -0
  1420. package/ui/store/reducers/copyEntriesToWorkbook.js +121 -0
  1421. package/ui/store/reducers/dialog.js +63 -0
  1422. package/ui/store/reducers/editHistory.js +127 -0
  1423. package/ui/store/reducers/entryContent.js +87 -0
  1424. package/ui/store/reducers/index.js +31 -0
  1425. package/ui/store/reducers/landing.js +21 -0
  1426. package/ui/store/reducers/localStorageFallback.js +19 -0
  1427. package/ui/store/reducers/migrationToWorkbook.js +156 -0
  1428. package/ui/store/reducers/user.js +41 -0
  1429. package/ui/store/selectors/asideHeader.js +18 -0
  1430. package/ui/store/selectors/collectionsStructure.js +205 -0
  1431. package/ui/store/selectors/colorPaletteEditor.js +15 -0
  1432. package/ui/store/selectors/controlDialog/controlDialog.d.ts +2 -0
  1433. package/ui/store/selectors/controlDialog/controlDialog.js +16 -0
  1434. package/ui/store/selectors/controlDialog.js +181 -0
  1435. package/ui/store/selectors/copyEntriesToWorkbook.js +41 -0
  1436. package/ui/store/selectors/editHistory.js +19 -0
  1437. package/ui/store/selectors/entryContent.js +41 -0
  1438. package/ui/store/selectors/landing.js +4 -0
  1439. package/ui/store/selectors/localStorageFallback.js +4 -0
  1440. package/ui/store/selectors/migrationToWorkbook.js +58 -0
  1441. package/ui/store/selectors/user.js +51 -0
  1442. package/ui/store/toolkit/chartkit/api.js +20 -0
  1443. package/ui/store/toolkit/index.js +5 -0
  1444. package/ui/store/typings/entryContent.js +14 -0
  1445. package/ui/store/utils/asideHeader.js +16 -0
  1446. package/ui/store/utils/collectionStructure.js +39 -0
  1447. package/ui/store/utils/controlDialog.js +293 -0
  1448. package/ui/store/utils/jdp.js +38 -0
  1449. package/ui/store/utils/user.js +22 -0
  1450. package/ui/typings/common.js +1 -0
  1451. package/ui/typings/components.js +1 -0
  1452. package/ui/typings/error.js +7 -0
  1453. package/ui/typings/index.js +6 -0
  1454. package/ui/units/auth/components/AuthPage/AuthPage.js +64 -0
  1455. package/ui/units/auth/components/AuthPage/useAuthPageInit.js +48 -0
  1456. package/ui/units/auth/components/ChangePasswordDialog/ChangePasswordDialog.js +198 -0
  1457. package/ui/units/auth/components/ChangeUserRoleDialog/ChangeUserRoleDialog.js +109 -0
  1458. package/ui/units/auth/components/DeleteUserDialog/DeleteUserDialog.js +42 -0
  1459. package/ui/units/auth/components/EditUserProfileDialog/EditUserProfileDialog.js +128 -0
  1460. package/ui/units/auth/components/LoginById/LoginById.js +24 -0
  1461. package/ui/units/auth/components/LoginById/utils.js +5 -0
  1462. package/ui/units/auth/components/Logout/Logout.js +42 -0
  1463. package/ui/units/auth/components/Reload/Reload.js +51 -0
  1464. package/ui/units/auth/components/Signin/Signin.js +78 -0
  1465. package/ui/units/auth/components/Signin/components/Login.js +27 -0
  1466. package/ui/units/auth/components/Signin/components/Password.js +27 -0
  1467. package/ui/units/auth/components/Signup/Signup.js +75 -0
  1468. package/ui/units/auth/components/Signup/components/Back.js +24 -0
  1469. package/ui/units/auth/components/UserProfile/UserProfile.js +143 -0
  1470. package/ui/units/auth/components/UserRoleLabel/UserRoleLabel.js +17 -0
  1471. package/ui/units/auth/components/formControls/CustomRow.js +11 -0
  1472. package/ui/units/auth/components/formControls/Email.js +30 -0
  1473. package/ui/units/auth/components/formControls/FirstName.js +30 -0
  1474. package/ui/units/auth/components/formControls/GeneratePasswordButton.js +20 -0
  1475. package/ui/units/auth/components/formControls/LastName.js +30 -0
  1476. package/ui/units/auth/components/formControls/Login.js +30 -0
  1477. package/ui/units/auth/components/formControls/Password.js +34 -0
  1478. package/ui/units/auth/components/formControls/RepeatPassword.js +31 -0
  1479. package/ui/units/auth/components/formControls/Roles.js +39 -0
  1480. package/ui/units/auth/components/formControls/RowButton.js +12 -0
  1481. package/ui/units/auth/components/formControls/utils.js +36 -0
  1482. package/ui/units/auth/constants/errors.js +6 -0
  1483. package/ui/units/auth/constants/routes.js +11 -0
  1484. package/ui/units/auth/containers/UserProfile/UserProfile.js +49 -0
  1485. package/ui/units/auth/hooks/useClearReloadedQuery.js +26 -0
  1486. package/ui/units/auth/hooks/useUserById.js +63 -0
  1487. package/ui/units/auth/store/actions/common.js +12 -0
  1488. package/ui/units/auth/store/actions/logout.js +21 -0
  1489. package/ui/units/auth/store/actions/signin.js +44 -0
  1490. package/ui/units/auth/store/actions/userInfoForm.js +100 -0
  1491. package/ui/units/auth/store/actions/userProfile.js +203 -0
  1492. package/ui/units/auth/store/actions/usersByIds.js +94 -0
  1493. package/ui/units/auth/store/constants/common.js +6 -0
  1494. package/ui/units/auth/store/constants/signin.js +4 -0
  1495. package/ui/units/auth/store/constants/userInfoForm.js +10 -0
  1496. package/ui/units/auth/store/constants/userProfile.js +38 -0
  1497. package/ui/units/auth/store/constants/usersByIds.js +6 -0
  1498. package/ui/units/auth/store/reducers/common.js +21 -0
  1499. package/ui/units/auth/store/reducers/index.js +23 -0
  1500. package/ui/units/auth/store/reducers/signin.js +21 -0
  1501. package/ui/units/auth/store/reducers/userInfoForm.js +63 -0
  1502. package/ui/units/auth/store/reducers/userProfile.js +198 -0
  1503. package/ui/units/auth/store/reducers/usersByIds.js +41 -0
  1504. package/ui/units/auth/store/selectors/common.js +6 -0
  1505. package/ui/units/auth/store/selectors/signin.js +8 -0
  1506. package/ui/units/auth/store/selectors/userInfoForm.js +30 -0
  1507. package/ui/units/auth/store/selectors/userProfile.js +16 -0
  1508. package/ui/units/auth/store/selectors/usersByIds.js +39 -0
  1509. package/ui/units/auth/utils/fields.js +12 -0
  1510. package/ui/units/auth/utils/getUsersRoles.js +7 -0
  1511. package/ui/units/auth/utils/userProfile.js +12 -0
  1512. package/ui/units/auth/utils/validation.js +42 -0
  1513. package/ui/units/collections/components/CollectionActions/components/SharedEntryNotice/SharedEntryNotice.js +11 -0
  1514. package/ui/units/collections/components/CollectionActions/utils.js +39 -0
  1515. package/ui/units/collections/components/CollectionContent/utils.js +20 -0
  1516. package/ui/units/collections/components/CollectionPage/hooks/useCreateWorkbookDialogHandlers.js +66 -0
  1517. package/ui/units/collections/components/constants.js +118 -0
  1518. package/ui/units/collections/components/helpers.js +58 -0
  1519. package/ui/units/collections/store/actions/index.js +173 -0
  1520. package/ui/units/collections/store/constants/index.js +40 -0
  1521. package/ui/units/collections/store/reducers/index.js +191 -0
  1522. package/ui/units/collections-navigation/components/CollectionBreadcrumbs/CollectionBreadcrumbs.js +64 -0
  1523. package/ui/units/collections-navigation/components/CollectionBreadcrumbs/index.js +6 -0
  1524. package/ui/units/collections-navigation/components/CollectionBreadcrumbs/utils.js +16 -0
  1525. package/ui/units/collections-navigation/components/CollectionsNavigationApp/CollectionsNavigationApp.js +84 -0
  1526. package/ui/units/collections-navigation/components/CollectionsNavigationApp/index.js +4 -0
  1527. package/ui/units/collections-navigation/components/CollectionsNavigationLayout/CollectionsNavigationLayout.js +103 -0
  1528. package/ui/units/collections-navigation/components/CollectionsNavigationLayout/index.js +4 -0
  1529. package/ui/units/collections-navigation/constants/index.js +6 -0
  1530. package/ui/units/collections-navigation/contexts/LayoutContext.js +10 -0
  1531. package/ui/units/collections-navigation/store/actions/index.js +49 -0
  1532. package/ui/units/collections-navigation/store/constants/index.js +18 -0
  1533. package/ui/units/collections-navigation/store/reducers/index.js +63 -0
  1534. package/ui/units/collections-navigation/store/selectors/index.js +19 -0
  1535. package/ui/units/collections-navigation/utils/index.js +8 -0
  1536. package/ui/units/connections/assets/icons/file-item.svg.js +4 -0
  1537. package/ui/units/connections/assets/icons/gauth-btn-dark-en.svg.js +4 -0
  1538. package/ui/units/connections/assets/icons/gauth-btn-dark-ru.svg.js +4 -0
  1539. package/ui/units/connections/assets/icons/gauth-btn-light-en.svg.js +4 -0
  1540. package/ui/units/connections/assets/icons/gauth-btn-light-ru.svg.js +4 -0
  1541. package/ui/units/connections/components/ConnectorForm/ConnectorForm.js +52 -0
  1542. package/ui/units/connections/components/ConnectorForm/FormActions/CheckParamsButton/CheckParamsButton.js +48 -0
  1543. package/ui/units/connections/components/ConnectorForm/FormActions/FormActions.js +193 -0
  1544. package/ui/units/connections/components/ConnectorForm/FormActions/SubmitButton/SubmitButton.js +22 -0
  1545. package/ui/units/connections/components/ConnectorForm/FormActions/selectors.js +35 -0
  1546. package/ui/units/connections/components/ConnectorForm/FormActions/utils.js +14 -0
  1547. package/ui/units/connections/components/ConnectorForm/FormRow/FormItem.js +79 -0
  1548. package/ui/units/connections/components/ConnectorForm/FormRow/FormRow.js +56 -0
  1549. package/ui/units/connections/components/ConnectorForm/FormRow/PreparedRowItem.js +29 -0
  1550. package/ui/units/connections/components/ConnectorForm/components/Checkbox/Checkbox.js +53 -0
  1551. package/ui/units/connections/components/ConnectorForm/components/Datepicker/Datepicker.js +67 -0
  1552. package/ui/units/connections/components/ConnectorForm/components/Description/Description.js +12 -0
  1553. package/ui/units/connections/components/ConnectorForm/components/FileInput/FileInput.js +98 -0
  1554. package/ui/units/connections/components/ConnectorForm/components/FileInput/utils.js +22 -0
  1555. package/ui/units/connections/components/ConnectorForm/components/Input/Input.js +98 -0
  1556. package/ui/units/connections/components/ConnectorForm/components/KeyValue/KeyValue.js +100 -0
  1557. package/ui/units/connections/components/ConnectorForm/components/KeyValue/hooks.js +110 -0
  1558. package/ui/units/connections/components/ConnectorForm/components/Label/Label.js +58 -0
  1559. package/ui/units/connections/components/ConnectorForm/components/MarkdownItem/MarkdownItem.js +60 -0
  1560. package/ui/units/connections/components/ConnectorForm/components/PlainText/PlainText.js +14 -0
  1561. package/ui/units/connections/components/ConnectorForm/components/RadioButton/RadioButton.js +68 -0
  1562. package/ui/units/connections/components/ConnectorForm/components/RadioGroup/RadioGroup.js +97 -0
  1563. package/ui/units/connections/components/ConnectorForm/components/Select/Select.js +119 -0
  1564. package/ui/units/connections/components/ConnectorForm/components/index.js +30 -0
  1565. package/ui/units/connections/components/ConnectorForm/components/withControlWrap/withControlWrap.js +35 -0
  1566. package/ui/units/connections/components/ConnectorForm/preparedRows/CacheTtlRow/CacheTtlRow.js +101 -0
  1567. package/ui/units/connections/components/ConnectorForm/preparedRows/CollapseRow/CollapseRow.js +49 -0
  1568. package/ui/units/connections/components/ConnectorForm/preparedRows/RawSQLLevelRow/RawSQLLevelRow.js +43 -0
  1569. package/ui/units/connections/components/ConnectorForm/preparedRows/index.js +8 -0
  1570. package/ui/units/connections/components/ConnectorForm/utils/index.js +25 -0
  1571. package/ui/units/connections/components/ConnectorsList/ConnectorsList.js +126 -0
  1572. package/ui/units/connections/components/ConnectorsList/ListItem.js +54 -0
  1573. package/ui/units/connections/components/ConnectorsList/utils/index.js +36 -0
  1574. package/ui/units/connections/components/ConnectorsList/utils/listItemRender.js +12 -0
  1575. package/ui/units/connections/components/ErrorView/ErrorView.js +98 -0
  1576. package/ui/units/connections/components/FormTitle/FormTitle.js +44 -0
  1577. package/ui/units/connections/components/Page/ConnPanelActions.js +39 -0
  1578. package/ui/units/connections/components/Page/Page.js +317 -0
  1579. package/ui/units/connections/components/Page/components/ConnSettings.js +62 -0
  1580. package/ui/units/connections/components/Page/components/CreateDatasetButton.js +58 -0
  1581. package/ui/units/connections/components/Page/components/CreateQlChartButton.js +49 -0
  1582. package/ui/units/connections/components/Page/components/DescriptionButton.js +75 -0
  1583. package/ui/units/connections/components/Page/components/S3BasedConnButton.js +122 -0
  1584. package/ui/units/connections/components/Page/components/UnloadConfirmation.js +34 -0
  1585. package/ui/units/connections/components/Page/components/index.js +12 -0
  1586. package/ui/units/connections/components/Page/constants.js +17 -0
  1587. package/ui/units/connections/components/Page/filterContextMenuItems.js +25 -0
  1588. package/ui/units/connections/components/Page/useAdditionalContextMenuItems.js +186 -0
  1589. package/ui/units/connections/components/Page/useApiErrors.js +30 -0
  1590. package/ui/units/connections/components/Page/utils.js +19 -0
  1591. package/ui/units/connections/components/Router/Router.js +167 -0
  1592. package/ui/units/connections/components/WrappedLoader/WrappedLoader.js +18 -0
  1593. package/ui/units/connections/components/custom-forms/ChOverYT/ChOverYT.js +41 -0
  1594. package/ui/units/connections/components/custom-forms/ChOverYT/ChoicePage.js +56 -0
  1595. package/ui/units/connections/components/custom-forms/ChOverYT/ConnectorCard.js +43 -0
  1596. package/ui/units/connections/components/custom-forms/ChOverYT/Notification.js +14 -0
  1597. package/ui/units/connections/components/custom-forms/ChOverYT/constants.js +10 -0
  1598. package/ui/units/connections/components/custom-forms/File/File.js +78 -0
  1599. package/ui/units/connections/components/custom-forms/File/components/AddFileButton.js +31 -0
  1600. package/ui/units/connections/components/custom-forms/File/components/FilesList.js +83 -0
  1601. package/ui/units/connections/components/custom-forms/File/components/ListItem/FileItem.js +67 -0
  1602. package/ui/units/connections/components/custom-forms/File/components/ListItem/ListItem.js +12 -0
  1603. package/ui/units/connections/components/custom-forms/File/components/ListItem/SourceItem.js +99 -0
  1604. package/ui/units/connections/components/custom-forms/File/components/ReplaceSourceButton.js +32 -0
  1605. package/ui/units/connections/components/custom-forms/File/components/Workspace/ColumnFilter.js +20 -0
  1606. package/ui/units/connections/components/custom-forms/File/components/Workspace/FileSettings.js +143 -0
  1607. package/ui/units/connections/components/custom-forms/File/components/Workspace/TypeSelect.js +73 -0
  1608. package/ui/units/connections/components/custom-forms/File/components/Workspace/Workspace.js +145 -0
  1609. package/ui/units/connections/components/custom-forms/File/components/index.js +8 -0
  1610. package/ui/units/connections/components/custom-forms/File/context.js +24 -0
  1611. package/ui/units/connections/components/custom-forms/File/useHandlers.js +176 -0
  1612. package/ui/units/connections/components/custom-forms/File/utils.js +197 -0
  1613. package/ui/units/connections/components/custom-forms/GSheetsV2/GSheetsV2.js +28 -0
  1614. package/ui/units/connections/components/custom-forms/GSheetsV2/components/AddSection.js +78 -0
  1615. package/ui/units/connections/components/custom-forms/GSheetsV2/components/AdditionalTitleContent/GAuthButton.js +36 -0
  1616. package/ui/units/connections/components/custom-forms/GSheetsV2/components/AdditionalTitleContent/index.js +77 -0
  1617. package/ui/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/GSheetSourceInfoView.js +37 -0
  1618. package/ui/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/GSheetSourceView.js +48 -0
  1619. package/ui/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/UploadedGSheetView.js +50 -0
  1620. package/ui/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/index.js +48 -0
  1621. package/ui/units/connections/components/custom-forms/GSheetsV2/components/SheetsList.js +64 -0
  1622. package/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/EmptyWorkspace.js +16 -0
  1623. package/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/GSheetSourceInfoWorkspace.js +13 -0
  1624. package/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/GSheetSourceWorkspace.js +51 -0
  1625. package/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/GSheetWorkspace.js +13 -0
  1626. package/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/Workspace.js +100 -0
  1627. package/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/utils.js +28 -0
  1628. package/ui/units/connections/components/custom-forms/GSheetsV2/components/index.js +8 -0
  1629. package/ui/units/connections/components/custom-forms/GSheetsV2/containers/ActionBarContainer.js +88 -0
  1630. package/ui/units/connections/components/custom-forms/GSheetsV2/containers/SheetsListContainer.js +232 -0
  1631. package/ui/units/connections/components/custom-forms/GSheetsV2/containers/WorkspaceContainer.js +53 -0
  1632. package/ui/units/connections/components/custom-forms/GSheetsV2/containers/index.js +8 -0
  1633. package/ui/units/connections/components/custom-forms/GSheetsV2/containers/useGSheetDialogs.js +176 -0
  1634. package/ui/units/connections/components/custom-forms/GSheetsV2/containers/useGoogleAuth.js +35 -0
  1635. package/ui/units/connections/components/custom-forms/GSheetsV2/containers/utils.js +53 -0
  1636. package/ui/units/connections/components/custom-forms/Yadocs/Yadocs.js +28 -0
  1637. package/ui/units/connections/components/custom-forms/Yadocs/components/AdditionalTitleContent.js +54 -0
  1638. package/ui/units/connections/components/custom-forms/Yadocs/components/DialogAddDocument/DialogAddDocument.js +189 -0
  1639. package/ui/units/connections/components/custom-forms/Yadocs/components/DocsList.js +70 -0
  1640. package/ui/units/connections/components/custom-forms/Yadocs/components/Workspace.js +158 -0
  1641. package/ui/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/UploadedYadocView.js +50 -0
  1642. package/ui/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/YadocSourceInfoView.js +35 -0
  1643. package/ui/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/YadocSourceView.js +48 -0
  1644. package/ui/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/index.js +43 -0
  1645. package/ui/units/connections/components/custom-forms/Yadocs/components/index.js +10 -0
  1646. package/ui/units/connections/components/custom-forms/Yadocs/containers/ActionBarContainer.js +103 -0
  1647. package/ui/units/connections/components/custom-forms/Yadocs/containers/DocsListContainer.js +247 -0
  1648. package/ui/units/connections/components/custom-forms/Yadocs/containers/WorkspaceContainer.js +42 -0
  1649. package/ui/units/connections/components/custom-forms/Yadocs/containers/index.js +8 -0
  1650. package/ui/units/connections/components/custom-forms/Yadocs/containers/useYadocsDialogs.js +220 -0
  1651. package/ui/units/connections/components/custom-forms/components/ButtonLogout/ButtonLogout.js +18 -0
  1652. package/ui/units/connections/components/custom-forms/components/ColumnFilter/ColumnFilter.js +21 -0
  1653. package/ui/units/connections/components/custom-forms/components/ColumnsHeaderSwitcher/ColumnsHeaderSwitcher.js +44 -0
  1654. package/ui/units/connections/components/custom-forms/components/DialogWithInput/DialogWithInput.js +74 -0
  1655. package/ui/units/connections/components/custom-forms/components/DialogWithInput/index.js +7 -0
  1656. package/ui/units/connections/components/custom-forms/components/ListItem/ActionDeleteView.js +19 -0
  1657. package/ui/units/connections/components/custom-forms/components/ListItem/ActionErrorView.js +44 -0
  1658. package/ui/units/connections/components/custom-forms/components/ListItem/ActionMoreView.js +67 -0
  1659. package/ui/units/connections/components/custom-forms/components/ListItem/ListItem.js +24 -0
  1660. package/ui/units/connections/components/custom-forms/components/ListItem/ListItemActions.js +53 -0
  1661. package/ui/units/connections/components/custom-forms/components/index.js +12 -0
  1662. package/ui/units/connections/components/custom-forms/hooks/useFileSourceTableWidgetData.js +40 -0
  1663. package/ui/units/connections/components/custom-forms/index.js +10 -0
  1664. package/ui/units/connections/components/custom-forms/utils/render.js +69 -0
  1665. package/ui/units/connections/components/dialogs/Confirm/Confirm.js +20 -0
  1666. package/ui/units/connections/components/dialogs/Confirm/index.js +7 -0
  1667. package/ui/units/connections/components/dialogs/CreateConnection/CreateConnection.js +40 -0
  1668. package/ui/units/connections/components/dialogs/CreateConnectionInWbOrCollection/CreateConnectionInWbOrCollection.js +40 -0
  1669. package/ui/units/connections/components/dialogs/S3Source/DialogS3Source.js +102 -0
  1670. package/ui/units/connections/components/dialogs/S3Source/ListHeader.js +28 -0
  1671. package/ui/units/connections/components/dialogs/S3Source/ListItem.js +16 -0
  1672. package/ui/units/connections/components/dialogs/S3Source/index.js +7 -0
  1673. package/ui/units/connections/components/dialogs/S3Source/utils.js +47 -0
  1674. package/ui/units/connections/components/dialogs/index.js +10 -0
  1675. package/ui/units/connections/components/hooks/index.js +4 -0
  1676. package/ui/units/connections/components/hooks/useCreationHandler/index.js +75 -0
  1677. package/ui/units/connections/components/index.js +18 -0
  1678. package/ui/units/connections/constants/form.js +50 -0
  1679. package/ui/units/connections/constants/index.js +18 -0
  1680. package/ui/units/connections/constants/validation.js +10 -0
  1681. package/ui/units/connections/index.js +35 -0
  1682. package/ui/units/connections/store/actions/api.js +347 -0
  1683. package/ui/units/connections/store/actions/base.js +359 -0
  1684. package/ui/units/connections/store/actions/connection.d.ts +12 -0
  1685. package/ui/units/connections/store/actions/connection.js +27 -0
  1686. package/ui/units/connections/store/actions/data.d.ts +8 -0
  1687. package/ui/units/connections/store/actions/data.js +82 -0
  1688. package/ui/units/connections/store/actions/file.js +464 -0
  1689. package/ui/units/connections/store/actions/gsheet/index.js +257 -0
  1690. package/ui/units/connections/store/actions/gsheet/misc-actions.js +178 -0
  1691. package/ui/units/connections/store/actions/gsheet/utils.js +171 -0
  1692. package/ui/units/connections/store/actions/index.d.ts +28 -0
  1693. package/ui/units/connections/store/actions/index.js +466 -0
  1694. package/ui/units/connections/store/actions/s3-based.js +100 -0
  1695. package/ui/units/connections/store/actions/yadoc/index.js +211 -0
  1696. package/ui/units/connections/store/actions/yadoc/misc-actions.js +183 -0
  1697. package/ui/units/connections/store/actions/yadoc/utils.js +165 -0
  1698. package/ui/units/connections/store/constants.js +64 -0
  1699. package/ui/units/connections/store/index.js +26 -0
  1700. package/ui/units/connections/store/reducers/index.js +370 -0
  1701. package/ui/units/connections/store/selectors/connection-data.js +24 -0
  1702. package/ui/units/connections/store/selectors/form.js +32 -0
  1703. package/ui/units/connections/store/selectors/gsheet.js +27 -0
  1704. package/ui/units/connections/store/selectors/index.js +76 -0
  1705. package/ui/units/connections/store/selectors/initial-form.js +6 -0
  1706. package/ui/units/connections/store/selectors/inner-form.js +13 -0
  1707. package/ui/units/connections/store/selectors/yadocs.js +23 -0
  1708. package/ui/units/connections/store/typings/file.js +1 -0
  1709. package/ui/units/connections/store/typings/gsheet.js +1 -0
  1710. package/ui/units/connections/store/typings/index.js +4 -0
  1711. package/ui/units/connections/store/typings/s3-based.js +1 -0
  1712. package/ui/units/connections/store/typings/yadocs.js +1 -0
  1713. package/ui/units/connections/store/utils/connectors.js +43 -0
  1714. package/ui/units/connections/store/utils/entry.js +15 -0
  1715. package/ui/units/connections/store/utils/file.js +78 -0
  1716. package/ui/units/connections/store/utils/forms.js +110 -0
  1717. package/ui/units/connections/store/utils/index.js +22 -0
  1718. package/ui/units/connections/store/utils/validation.js +97 -0
  1719. package/ui/units/connections/utils/common.js +36 -0
  1720. package/ui/units/connections/utils/connectors.js +35 -0
  1721. package/ui/units/connections/utils/entry.js +16 -0
  1722. package/ui/units/connections/utils/gsheet.js +59 -0
  1723. package/ui/units/connections/utils/i18n.js +15 -0
  1724. package/ui/units/connections/utils/index.js +23 -0
  1725. package/ui/units/connections/utils/validation.js +28 -0
  1726. package/ui/units/connections/utils/yadocs.js +60 -0
  1727. package/ui/units/dash/components/DashActionPanel/DashActionPanel.js +306 -0
  1728. package/ui/units/dash/components/DashActionPanel/DashActionPanelMobile.js +40 -0
  1729. package/ui/units/dash/components/DashActionPanel/Description/Description.js +94 -0
  1730. package/ui/units/dash/components/DashActionPanel/EditControls/EditControls.js +135 -0
  1731. package/ui/units/dash/components/DashActionPanel/SaveDropDown/SaveDropDown.js +54 -0
  1732. package/ui/units/dash/components/DashActionPanel/ViewControls/ViewControls.js +52 -0
  1733. package/ui/units/dash/components/DashActionPanel/helpers.js +34 -0
  1734. package/ui/units/dash/components/EmptyState/EmptyState.js +56 -0
  1735. package/ui/units/dash/components/GlobalSelectorIcon/GlobalSelectorIcon.js +32 -0
  1736. package/ui/units/dash/components/Loader/Loader.js +14 -0
  1737. package/ui/units/dash/components/NavigationInput/InputLink/InputLink.js +165 -0
  1738. package/ui/units/dash/components/NavigationInput/NavigationInput.js +120 -0
  1739. package/ui/units/dash/components/ParamsSettings/ParamsRow.js +191 -0
  1740. package/ui/units/dash/components/ParamsSettings/ParamsSettings.js +142 -0
  1741. package/ui/units/dash/components/ParamsSettings/helpers.js +80 -0
  1742. package/ui/units/dash/containers/App/App.js +96 -0
  1743. package/ui/units/dash/containers/Body/Body.js +549 -0
  1744. package/ui/units/dash/containers/Body/LazyBody.js +5 -0
  1745. package/ui/units/dash/containers/Body/components/Content/Content.js +187 -0
  1746. package/ui/units/dash/containers/Body/components/Content/hooks/useCopiedData.js +28 -0
  1747. package/ui/units/dash/containers/Body/components/DashkitWrapper/DashkitWrapper.js +279 -0
  1748. package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useConfig.js +37 -0
  1749. package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useDashKitContext.js +23 -0
  1750. package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useDashkitRef.js +14 -0
  1751. package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useDataProviderContext.js +22 -0
  1752. package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useHashStates.js +93 -0
  1753. package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useOverlay/getGearGlobalIcon.js +41 -0
  1754. package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useOverlay/helpers.js +31 -0
  1755. package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useOverlay/useOverlay.js +213 -0
  1756. package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/usePreparedCopyItemOptions.js +26 -0
  1757. package/ui/units/dash/containers/Body/context.js +49 -0
  1758. package/ui/units/dash/containers/Dash/Dash.js +384 -0
  1759. package/ui/units/dash/containers/DashError/DashError.js +16 -0
  1760. package/ui/units/dash/containers/DashHotkes/DashHotkeys.js +58 -0
  1761. package/ui/units/dash/containers/Dialogs/DialogEditQuery/DialogEditQuery.js +93 -0
  1762. package/ui/units/dash/containers/Dialogs/DialogEditQuery/QueryEditor/QueryEditor.js +26 -0
  1763. package/ui/units/dash/containers/Dialogs/DialogEditQuery/QueryError/QueryError.js +15 -0
  1764. package/ui/units/dash/containers/Dialogs/DialogEditQuery/helpers/validate-query.js +7 -0
  1765. package/ui/units/dash/containers/Dialogs/Dialogs.js +99 -0
  1766. package/ui/units/dash/containers/Dialogs/Settings/Settings.js +273 -0
  1767. package/ui/units/dash/containers/Dialogs/Settings/components/AutoRefresh.js +66 -0
  1768. package/ui/units/dash/containers/Dialogs/Settings/components/Display.js +104 -0
  1769. package/ui/units/dash/containers/Dialogs/Settings/components/LoadPriority.js +39 -0
  1770. package/ui/units/dash/containers/Dialogs/Settings/components/MaxConnection.js +50 -0
  1771. package/ui/units/dash/containers/Dialogs/Settings/components/OtherSettings.js +88 -0
  1772. package/ui/units/dash/containers/Dialogs/Settings/components/Params.js +73 -0
  1773. package/ui/units/dash/containers/Dialogs/Settings/components/Row.js +10 -0
  1774. package/ui/units/dash/containers/Dialogs/Settings/components/Title.js +13 -0
  1775. package/ui/units/dash/containers/Dialogs/Settings/utils.js +6 -0
  1776. package/ui/units/dash/containers/Dialogs/Tabs/EditedTabItem.js +30 -0
  1777. package/ui/units/dash/containers/Dialogs/Tabs/PopupWidgetsOrder/PopupWidgetsOrder.js +163 -0
  1778. package/ui/units/dash/containers/Dialogs/Tabs/PopupWidgetsOrder/helpers.js +132 -0
  1779. package/ui/units/dash/containers/Dialogs/Tabs/TabItem.js +171 -0
  1780. package/ui/units/dash/containers/Dialogs/Tabs/Tabs.js +254 -0
  1781. package/ui/units/dash/containers/Dialogs/components/ColorInputsGroup/ColorInputsGroup.js +71 -0
  1782. package/ui/units/dash/containers/Dialogs/components/ColorPalette/ColorItem/ColorItem.js +38 -0
  1783. package/ui/units/dash/containers/Dialogs/components/ColorPalette/ColorPalette.js +188 -0
  1784. package/ui/units/dash/containers/Dialogs/components/ColorPicker/ColorPicker.js +81 -0
  1785. package/ui/units/dash/containers/Dialogs/components/ColorPickerInputWithPreset/ColorPickerInputWithPreset.js +86 -0
  1786. package/ui/units/dash/containers/Dialogs/components/PaletteBackground/PaletteBackground.js +77 -0
  1787. package/ui/units/dash/containers/Dialogs/components/PaletteText/PaletteText.js +54 -0
  1788. package/ui/units/dash/containers/Dialogs/utils.js +26 -0
  1789. package/ui/units/dash/containers/FixedHeader/FixedHeader.js +213 -0
  1790. package/ui/units/dash/containers/FixedHeader/FixedHeaderMobile.js +62 -0
  1791. package/ui/units/dash/containers/Header/Header.js +71 -0
  1792. package/ui/units/dash/containers/MobileFloatMenu/MobileFloatMenu.js +63 -0
  1793. package/ui/units/dash/containers/TableOfContent/TableOfContent.js +218 -0
  1794. package/ui/units/dash/containers/TableOfContent/helpers.js +25 -0
  1795. package/ui/units/dash/containers/Tabs/Tabs.js +58 -0
  1796. package/ui/units/dash/hooks/useIframeFeatures.js +57 -0
  1797. package/ui/units/dash/modules/constants.js +87 -0
  1798. package/ui/units/dash/modules/helpers.js +375 -0
  1799. package/ui/units/dash/modules/postMessage.js +28 -0
  1800. package/ui/units/dash/modules/pushStats.js +26 -0
  1801. package/ui/units/dash/store/actions/base/actions.d.ts +21 -0
  1802. package/ui/units/dash/store/actions/base/actions.js +287 -0
  1803. package/ui/units/dash/store/actions/base/helpers.js +104 -0
  1804. package/ui/units/dash/store/actions/base/save.d.ts +14 -0
  1805. package/ui/units/dash/store/actions/base/save.js +64 -0
  1806. package/ui/units/dash/store/actions/dash.js +13 -0
  1807. package/ui/units/dash/store/actions/dashTyped.js +855 -0
  1808. package/ui/units/dash/store/actions/dialogs/actions.js +50 -0
  1809. package/ui/units/dash/store/actions/dialogs/dialog-edit-query.js +10 -0
  1810. package/ui/units/dash/store/actions/helpers.js +303 -0
  1811. package/ui/units/dash/store/actions/relations/actions.js +90 -0
  1812. package/ui/units/dash/store/constants/dashActionTypes.js +12 -0
  1813. package/ui/units/dash/store/constants/index.js +6 -0
  1814. package/ui/units/dash/store/reducers/dash.js +353 -0
  1815. package/ui/units/dash/store/reducers/dashHelpers.js +333 -0
  1816. package/ui/units/dash/store/reducers/dashTypedReducer.js +315 -0
  1817. package/ui/units/dash/store/selectors/dashTypedSelectors.js +189 -0
  1818. package/ui/units/dash/store/utils.js +82 -0
  1819. package/ui/units/dash/typings/dash.js +9 -0
  1820. package/ui/units/dash/utils/context.js +5 -0
  1821. package/ui/units/dash/utils/customEvents.js +11 -0
  1822. package/ui/units/dash/utils/dashkitProps.js +16 -0
  1823. package/ui/units/dash/utils/getTabId.js +6 -0
  1824. package/ui/units/dash/utils/scrollUtils.js +38 -0
  1825. package/ui/units/dash/utils/selectors.js +104 -0
  1826. package/ui/units/dash/utils/url.js +24 -0
  1827. package/ui/units/datasets/components/Avatar/Avatar.js +114 -0
  1828. package/ui/units/datasets/components/ColorsDialog/ColorsDialog.js +232 -0
  1829. package/ui/units/datasets/components/ContainerLoader/ContainerLoader.js +47 -0
  1830. package/ui/units/datasets/components/DatasetPanel/DatasetPanel.js +145 -0
  1831. package/ui/units/datasets/components/DatasetPanel/helpers.js +28 -0
  1832. package/ui/units/datasets/components/DatasetRouter/DatasetRouter.js +129 -0
  1833. package/ui/units/datasets/components/DatasetRouter/UnloadConfirmation.js +43 -0
  1834. package/ui/units/datasets/components/DatasetTabFieldList/DatasetTabFieldList.js +54 -0
  1835. package/ui/units/datasets/components/DatasetTabFieldList/components/FieldRow/FieldRow.js +97 -0
  1836. package/ui/units/datasets/components/DatasetTabFieldList/components/TitleColumn/TitleColumn.js +16 -0
  1837. package/ui/units/datasets/components/DatasetTabFieldList/components/TypeColumn/TypeColumn.js +21 -0
  1838. package/ui/units/datasets/components/DatasetTabFieldList/components/ValidationColumn/ValidationColumn.js +17 -0
  1839. package/ui/units/datasets/components/DatasetTabFieldList/components/ValueColumn/ValueColumn.js +11 -0
  1840. package/ui/units/datasets/components/DatasetTabFieldList/constants.js +12 -0
  1841. package/ui/units/datasets/components/DatasetTabFieldList/helpers.js +59 -0
  1842. package/ui/units/datasets/components/DatasetTabSection/DatasetTabSection.js +69 -0
  1843. package/ui/units/datasets/components/DatasetTable/DatasetTable.js +446 -0
  1844. package/ui/units/datasets/components/DatasetTable/columns/Aggregation.js +37 -0
  1845. package/ui/units/datasets/components/DatasetTable/columns/Cast.js +37 -0
  1846. package/ui/units/datasets/components/DatasetTable/columns/Description.js +40 -0
  1847. package/ui/units/datasets/components/DatasetTable/columns/FieldSettings.js +60 -0
  1848. package/ui/units/datasets/components/DatasetTable/columns/Hidden.js +46 -0
  1849. package/ui/units/datasets/components/DatasetTable/columns/Id.js +41 -0
  1850. package/ui/units/datasets/components/DatasetTable/columns/IndexColumn.js +60 -0
  1851. package/ui/units/datasets/components/DatasetTable/columns/More.js +32 -0
  1852. package/ui/units/datasets/components/DatasetTable/columns/Rls.js +40 -0
  1853. package/ui/units/datasets/components/DatasetTable/columns/Source.js +44 -0
  1854. package/ui/units/datasets/components/DatasetTable/columns/Title.js +45 -0
  1855. package/ui/units/datasets/components/DatasetTable/columns/index.js +22 -0
  1856. package/ui/units/datasets/components/DatasetTable/components/AggregationSelect/AggregationSelect.js +114 -0
  1857. package/ui/units/datasets/components/DatasetTable/components/BatchActionPanel/BatchActionPanel.js +131 -0
  1858. package/ui/units/datasets/components/DatasetTable/components/BatchActionPanel/components/DialogChangeDatasetFields/DialogChangeDatasetFields.js +103 -0
  1859. package/ui/units/datasets/components/DatasetTable/components/DisplaySettings.js +32 -0
  1860. package/ui/units/datasets/components/DatasetTable/components/FieldActionsPopup.js +64 -0
  1861. package/ui/units/datasets/components/DatasetTable/components/ObservedDataTable.js +31 -0
  1862. package/ui/units/datasets/components/DatasetTable/components/TableTextInput.js +45 -0
  1863. package/ui/units/datasets/components/DatasetTable/components/TypeSelect/TypeSelect.js +87 -0
  1864. package/ui/units/datasets/components/DatasetTable/components/index.js +12 -0
  1865. package/ui/units/datasets/components/DatasetTable/constants.js +50 -0
  1866. package/ui/units/datasets/components/DatasetTable/fields.d.ts +2 -0
  1867. package/ui/units/datasets/components/DatasetTable/fields.js +15 -0
  1868. package/ui/units/datasets/components/DatasetTable/predicates.d.ts +2 -0
  1869. package/ui/units/datasets/components/DatasetTable/predicates.js +8 -0
  1870. package/ui/units/datasets/components/DatasetTable/sort.d.ts +8 -0
  1871. package/ui/units/datasets/components/DatasetTable/sort.js +58 -0
  1872. package/ui/units/datasets/components/DatasetTable/utils.d.ts +36 -0
  1873. package/ui/units/datasets/components/DatasetTable/utils.js +113 -0
  1874. package/ui/units/datasets/components/DescriptionButton/DescriptionButton.js +64 -0
  1875. package/ui/units/datasets/components/DialogCreateDataset/DialogCreateDataset.js +51 -0
  1876. package/ui/units/datasets/components/DragAndDrop/DragAndDrop.js +19 -0
  1877. package/ui/units/datasets/components/FieldSettingsDialog/FieldSettingsDialog.js +192 -0
  1878. package/ui/units/datasets/components/FilterSection/FilterSection.js +72 -0
  1879. package/ui/units/datasets/components/FilterSection/helpers.js +81 -0
  1880. package/ui/units/datasets/components/FilterSection/types.js +7 -0
  1881. package/ui/units/datasets/components/FilterSection/useFilterSection.js +85 -0
  1882. package/ui/units/datasets/components/ParametersSection/ParametersSection.js +57 -0
  1883. package/ui/units/datasets/components/ParametersSection/components/CopyToClipboard/CopyToClipboardMenuItem.js +14 -0
  1884. package/ui/units/datasets/components/ParametersSection/components/HeaderWithTooltip/HeaderWithTooltip.js +37 -0
  1885. package/ui/units/datasets/components/ParametersSection/helpers.js +116 -0
  1886. package/ui/units/datasets/components/ParametersSection/useParametersSection.js +38 -0
  1887. package/ui/units/datasets/components/PreviewHeader/PreviewHeader.js +128 -0
  1888. package/ui/units/datasets/components/PreviewHeader/constants.js +4 -0
  1889. package/ui/units/datasets/components/PreviewHeader/utils.js +8 -0
  1890. package/ui/units/datasets/components/PreviewTable/PreviewTable.js +197 -0
  1891. package/ui/units/datasets/components/RLSDialog/RLSDialog.js +95 -0
  1892. package/ui/units/datasets/components/RelationDialog/RelationDialog.js +490 -0
  1893. package/ui/units/datasets/components/RelationsMap/RelationsMap.js +340 -0
  1894. package/ui/units/datasets/components/SelectSourcePrototypes/SelectSourcePrototypes.js +471 -0
  1895. package/ui/units/datasets/components/SelectSourcePrototypes/SourcesTable.js +194 -0
  1896. package/ui/units/datasets/components/SelectSourcePrototypes/constants.js +8 -0
  1897. package/ui/units/datasets/components/SelectSourcePrototypes/utils.js +11 -0
  1898. package/ui/units/datasets/components/Source/Source.js +132 -0
  1899. package/ui/units/datasets/components/SourceEditorDialog/SourceEditorDialog.js +239 -0
  1900. package/ui/units/datasets/components/SourceEditorDialog/components/EditorFormItem.js +122 -0
  1901. package/ui/units/datasets/components/SourceEditorDialog/components/Form.js +86 -0
  1902. package/ui/units/datasets/components/SourceEditorDialog/components/InputFormItem.js +86 -0
  1903. package/ui/units/datasets/components/SourceEditorDialog/components/ParamSelector.js +165 -0
  1904. package/ui/units/datasets/components/SourceEditorDialog/components/SelectFormItem.js +46 -0
  1905. package/ui/units/datasets/components/SourceEditorDialog/components/SourceError.js +37 -0
  1906. package/ui/units/datasets/components/SourceEditorDialog/components/SourceHelpTooltip.js +160 -0
  1907. package/ui/units/datasets/components/SourceEditorDialog/components/SourceSwitcher.js +30 -0
  1908. package/ui/units/datasets/components/SourceEditorDialog/components/index.js +12 -0
  1909. package/ui/units/datasets/components/SourceEditorDialog/utils/helpers.js +198 -0
  1910. package/ui/units/datasets/components/SourceEditorDialog/utils/index.js +19 -0
  1911. package/ui/units/datasets/components/SourceEditorDialog/utils/validation.js +59 -0
  1912. package/ui/units/datasets/components/Veil/Veil.js +27 -0
  1913. package/ui/units/datasets/components/dialogs/DatasetFieldInspector/DatasetFieldInspector.js +32 -0
  1914. package/ui/units/datasets/components/dialogs/index.js +4 -0
  1915. package/ui/units/datasets/components/hoc/AvatarDnD.js +85 -0
  1916. package/ui/units/datasets/constants/datasets.js +55 -0
  1917. package/ui/units/datasets/constants/index.js +260 -0
  1918. package/ui/units/datasets/containers/Dataset/ActionPanelRightItems.js +190 -0
  1919. package/ui/units/datasets/containers/Dataset/Dataset.js +692 -0
  1920. package/ui/units/datasets/containers/Dataset/constants.js +4 -0
  1921. package/ui/units/datasets/containers/Dataset/getAdditionalContextMenuItems.js +144 -0
  1922. package/ui/units/datasets/containers/Dataset/useHistoryActions.js +71 -0
  1923. package/ui/units/datasets/containers/DatasetEditor/DatasetEditor.js +398 -0
  1924. package/ui/units/datasets/containers/DatasetEditor/utils.js +19 -0
  1925. package/ui/units/datasets/containers/DatasetError/DatasetError.js +100 -0
  1926. package/ui/units/datasets/containers/DatasetFilters/DatasetFilters.js +64 -0
  1927. package/ui/units/datasets/containers/DatasetPage/DatasetPage.d.ts +24 -0
  1928. package/ui/units/datasets/containers/DatasetPage/DatasetPage.js +73 -0
  1929. package/ui/units/datasets/containers/DatasetPage/DatasetPageContext.d.ts +10 -0
  1930. package/ui/units/datasets/containers/DatasetPage/DatasetPageContext.js +7 -0
  1931. package/ui/units/datasets/containers/DatasetParameters/DatasetParameters.js +29 -0
  1932. package/ui/units/datasets/containers/DatasetPreview/DatasetPreview.js +76 -0
  1933. package/ui/units/datasets/containers/DatasetSources/DatasetSources.js +706 -0
  1934. package/ui/units/datasets/containers/DatasetTabViewer/DatasetTabViewer.js +46 -0
  1935. package/ui/units/datasets/helpers/dataset-error-helpers.js +89 -0
  1936. package/ui/units/datasets/helpers/datasets.js +32 -0
  1937. package/ui/units/datasets/helpers/utils.js +140 -0
  1938. package/ui/units/datasets/helpers/validation.js +11 -0
  1939. package/ui/units/datasets/icons/join-full-outer.svg.js +4 -0
  1940. package/ui/units/datasets/icons/join-inner.svg.js +4 -0
  1941. package/ui/units/datasets/icons/join-left.svg.js +4 -0
  1942. package/ui/units/datasets/icons/join-right.svg.js +4 -0
  1943. package/ui/units/datasets/store/actions/creators/datasetTyped.js +1962 -0
  1944. package/ui/units/datasets/store/actions/creators/dialogs.js +50 -0
  1945. package/ui/units/datasets/store/actions/creators/index.js +89 -0
  1946. package/ui/units/datasets/store/actions/creators/utils.js +48 -0
  1947. package/ui/units/datasets/store/actions/types/dataset.js +178 -0
  1948. package/ui/units/datasets/store/constants.js +124 -0
  1949. package/ui/units/datasets/store/edit-history-middleware.js +32 -0
  1950. package/ui/units/datasets/store/reducers/dataset.js +1318 -0
  1951. package/ui/units/datasets/store/reducers/index.js +25 -0
  1952. package/ui/units/datasets/store/reducers/utils/index.js +34 -0
  1953. package/ui/units/datasets/store/selectors/dataset.js +235 -0
  1954. package/ui/units/datasets/store/selectors/datasetTyped.js +4 -0
  1955. package/ui/units/datasets/store/selectors/index.js +67 -0
  1956. package/ui/units/preview/components/App/App.js +80 -0
  1957. package/ui/units/preview/components/IndexPage/IndexPage.js +15 -0
  1958. package/ui/units/preview/components/Preview/Preview.js +190 -0
  1959. package/ui/units/preview/hooks/useChartAutoupdate.js +33 -0
  1960. package/ui/units/preview/modules/constants/constants.js +6 -0
  1961. package/ui/units/preview/modules/helpers.js +17 -0
  1962. package/ui/units/ql/components/Dialogs/Settings/Settings.js +88 -0
  1963. package/ui/units/ql/components/Grid/Grid.js +120 -0
  1964. package/ui/units/ql/components/Grid/GridPane/GridPane.js +15 -0
  1965. package/ui/units/ql/components/Grid/GridPane/GridPaneView/GridPaneView.js +54 -0
  1966. package/ui/units/ql/components/Grid/GridPane/GridPaneView/GridPaneViewContent.js +31 -0
  1967. package/ui/units/ql/configs/chart-types.js +15 -0
  1968. package/ui/units/ql/constants/index.js +93 -0
  1969. package/ui/units/ql/containers/App/App.js +65 -0
  1970. package/ui/units/ql/containers/PaneMain/PaneMain.js +33 -0
  1971. package/ui/units/ql/containers/PaneMain/ScreenEditor/ScreenEditor.js +265 -0
  1972. package/ui/units/ql/containers/PaneMain/ScreenEditor/TabParams/DefaultValue.js +171 -0
  1973. package/ui/units/ql/containers/PaneMain/ScreenEditor/TabParams/OverridenValue.js +24 -0
  1974. package/ui/units/ql/containers/PaneMain/ScreenEditor/TabParams/TabParams.js +348 -0
  1975. package/ui/units/ql/containers/PaneMain/ScreenEditor/TabParams/utils.js +18 -0
  1976. package/ui/units/ql/containers/PaneMain/ScreenEditor/TabQuery/ScreenPromQL/ScreenPromQL.js +482 -0
  1977. package/ui/units/ql/containers/PaneMain/ScreenEditor/TabQuery/ScreenSQL/ScreenSQL.js +210 -0
  1978. package/ui/units/ql/containers/PaneMain/ScreenEditor/TabQuery/TabQuery.js +56 -0
  1979. package/ui/units/ql/containers/PanePreview/PanePreview.js +198 -0
  1980. package/ui/units/ql/containers/PaneTablePreview/PaneTablePreview.js +48 -0
  1981. package/ui/units/ql/containers/PaneVisualization/PaneVisualization.js +45 -0
  1982. package/ui/units/ql/containers/QL/QL.js +187 -0
  1983. package/ui/units/ql/containers/QL/QLActionPanel/QLActionPanel.js +294 -0
  1984. package/ui/units/ql/containers/QL/QLActionPanel/useQLActionPanel.js +153 -0
  1985. package/ui/units/ql/containers/QL/ViewSetup/ViewSetup.js +308 -0
  1986. package/ui/units/ql/modules/helpers.js +28 -0
  1987. package/ui/units/ql/store/actions/dialog.js +30 -0
  1988. package/ui/units/ql/store/actions/ql.js +990 -0
  1989. package/ui/units/ql/store/reducers/index.js +14 -0
  1990. package/ui/units/ql/store/reducers/ql.d.ts +483 -0
  1991. package/ui/units/ql/store/reducers/ql.js +581 -0
  1992. package/ui/units/ql/store/selectors/ql.d.ts +433 -0
  1993. package/ui/units/ql/store/selectors/ql.js +196 -0
  1994. package/ui/units/ql/store/utils/grid.js +133 -0
  1995. package/ui/units/ql/store/utils/monitoring.js +179 -0
  1996. package/ui/units/ql/utils/chart-settings.js +20 -0
  1997. package/ui/units/ql/utils/connectionts.js +7 -0
  1998. package/ui/units/ql/utils/query.js +14 -0
  1999. package/ui/units/ql/utils/visualization/getAvailableQlVisualizations.js +43 -0
  2000. package/ui/units/ql/utils/visualization/getDefaultQlVisualization.js +11 -0
  2001. package/ui/units/ql/utils/visualization/getQlVisualization.js +28 -0
  2002. package/ui/units/ql/utils/visualization/index.js +8 -0
  2003. package/ui/units/service-settings/components/AppearanceSettings/AppearanceSettings.js +41 -0
  2004. package/ui/units/service-settings/components/CreateUserForm/CreateUserForm.js +96 -0
  2005. package/ui/units/service-settings/components/SectionGroup/SectionGroup.js +16 -0
  2006. package/ui/units/service-settings/components/UsersList/LabelsList/LabelsList.js +66 -0
  2007. package/ui/units/service-settings/components/UsersList/UsersFilters/UsersFilters.js +75 -0
  2008. package/ui/units/service-settings/components/UsersList/UsersList.js +255 -0
  2009. package/ui/units/service-settings/components/UsersList/constants.js +4 -0
  2010. package/ui/units/service-settings/components/UsersList/utils.js +79 -0
  2011. package/ui/units/service-settings/containers/AccessErrorPage/AccessErrorPage.js +20 -0
  2012. package/ui/units/service-settings/containers/App/App.js +31 -0
  2013. package/ui/units/service-settings/containers/CreateProfilePage/CreateProfilePage.js +35 -0
  2014. package/ui/units/service-settings/containers/MainPage/MainPage.js +127 -0
  2015. package/ui/units/service-settings/containers/UserProfilePage/UserProfilePage.js +51 -0
  2016. package/ui/units/service-settings/store/actions/serviceSettings.js +109 -0
  2017. package/ui/units/service-settings/store/constants/serviceSettings.js +24 -0
  2018. package/ui/units/service-settings/store/reducers/serviceSettings.js +129 -0
  2019. package/ui/units/service-settings/store/selectors/serviceSettings.js +18 -0
  2020. package/ui/units/wizard/actions/dataset.js +171 -0
  2021. package/ui/units/wizard/actions/dialog.js +423 -0
  2022. package/ui/units/wizard/actions/dialogColor.js +101 -0
  2023. package/ui/units/wizard/actions/dndItems.d.ts +64 -0
  2024. package/ui/units/wizard/actions/dndItems.js +334 -0
  2025. package/ui/units/wizard/actions/dndItemsEnums.d.ts +5 -0
  2026. package/ui/units/wizard/actions/dndItemsEnums.js +9 -0
  2027. package/ui/units/wizard/actions/hierarchyEditor.js +19 -0
  2028. package/ui/units/wizard/actions/index.d.ts +699 -0
  2029. package/ui/units/wizard/actions/index.js +1623 -0
  2030. package/ui/units/wizard/actions/placeholder.d.ts +31 -0
  2031. package/ui/units/wizard/actions/placeholder.js +431 -0
  2032. package/ui/units/wizard/actions/preview.js +170 -0
  2033. package/ui/units/wizard/actions/settings.js +46 -0
  2034. package/ui/units/wizard/actions/tooltip.js +31 -0
  2035. package/ui/units/wizard/actions/utils/getDatasetUpdates.js +240 -0
  2036. package/ui/units/wizard/actions/utils/index.js +8 -0
  2037. package/ui/units/wizard/actions/utils/mutateAndValidateItem.js +57 -0
  2038. package/ui/units/wizard/actions/utils/placeholders.js +9 -0
  2039. package/ui/units/wizard/actions/visualization/colors.d.ts +20 -0
  2040. package/ui/units/wizard/actions/visualization/colors.js +20 -0
  2041. package/ui/units/wizard/actions/visualization/contents.d.ts +46 -0
  2042. package/ui/units/wizard/actions/visualization/contents.js +59 -0
  2043. package/ui/units/wizard/actions/visualization/dashboard.d.ts +9 -0
  2044. package/ui/units/wizard/actions/visualization/dashboard.js +13 -0
  2045. package/ui/units/wizard/actions/visualization/filters.d.ts +9 -0
  2046. package/ui/units/wizard/actions/visualization/filters.js +11 -0
  2047. package/ui/units/wizard/actions/visualization/geometry.d.ts +9 -0
  2048. package/ui/units/wizard/actions/visualization/geometry.js +13 -0
  2049. package/ui/units/wizard/actions/visualization/index.d.ts +99 -0
  2050. package/ui/units/wizard/actions/visualization/index.js +216 -0
  2051. package/ui/units/wizard/actions/visualization/layers.d.ts +25 -0
  2052. package/ui/units/wizard/actions/visualization/layers.js +31 -0
  2053. package/ui/units/wizard/actions/visualization/shapes.d.ts +17 -0
  2054. package/ui/units/wizard/actions/visualization/shapes.js +22 -0
  2055. package/ui/units/wizard/actions/visualization/sort.d.ts +9 -0
  2056. package/ui/units/wizard/actions/visualization/sort.js +11 -0
  2057. package/ui/units/wizard/actions/widget.js +156 -0
  2058. package/ui/units/wizard/components/AddField/AddField.js +86 -0
  2059. package/ui/units/wizard/components/DND/DNDContainer.js +172 -0
  2060. package/ui/units/wizard/components/DND/DNDItem.js +188 -0
  2061. package/ui/units/wizard/components/DND/DragAndDrop.js +19 -0
  2062. package/ui/units/wizard/components/DatasetSelect/DatasetSelect.js +159 -0
  2063. package/ui/units/wizard/components/DatasetSelect/DatasetSelectItem.js +118 -0
  2064. package/ui/units/wizard/components/Dialogs/DialogColor/ColorSettingsContainer/ColorSettingsContainer.js +159 -0
  2065. package/ui/units/wizard/components/Dialogs/DialogColor/DialogColor.js +214 -0
  2066. package/ui/units/wizard/components/Dialogs/DialogColor/DialogColorGradient/DialogColorGradient.js +282 -0
  2067. package/ui/units/wizard/components/Dialogs/DialogColor/DialogColorPalette/DialogColorPalette.js +129 -0
  2068. package/ui/units/wizard/components/Dialogs/DialogColumnSettings/DialogColumnSettings.js +153 -0
  2069. package/ui/units/wizard/components/Dialogs/DialogColumnSettings/components/ColumnWidthSetting/ColumnWidthSetting.js +69 -0
  2070. package/ui/units/wizard/components/Dialogs/DialogColumnSettings/components/ColumnWidthSettingsSection/ColumnWidthSettingsSection.js +56 -0
  2071. package/ui/units/wizard/components/Dialogs/DialogColumnSettings/components/FieldInfo/FieldInfo.js +26 -0
  2072. package/ui/units/wizard/components/Dialogs/DialogColumnSettings/components/Subheader/Subheader.js +15 -0
  2073. package/ui/units/wizard/components/Dialogs/DialogColumnSettings/hooks/useDialogColumnSettingsState.js +68 -0
  2074. package/ui/units/wizard/components/Dialogs/DialogColumnSettings/utils/index.js +59 -0
  2075. package/ui/units/wizard/components/Dialogs/DialogField/DialogField.js +523 -0
  2076. package/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/BackgroundSettings.js +142 -0
  2077. package/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/helpers.js +120 -0
  2078. package/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgrounColorFieldSelect.js +87 -0
  2079. package/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundColorModeRadioButtons.js +85 -0
  2080. package/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundNullModeSettings.js +28 -0
  2081. package/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundSettings.js +43 -0
  2082. package/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundSettingsButtonColorDialog.js +29 -0
  2083. package/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundSettingsSwitch.js +15 -0
  2084. package/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/BarsSettings.js +224 -0
  2085. package/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/ColorControls/ColorsControl.js +113 -0
  2086. package/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/GradientColorControl/GradientColorControl.js +54 -0
  2087. package/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/MinMaxInputs/MinMaxInputs.js +75 -0
  2088. package/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/PaletteColorControl/PaletteColorControl.js +113 -0
  2089. package/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/useBarsSettings/helpers.js +42 -0
  2090. package/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/useBarsSettings/useBarsSettings.js +109 -0
  2091. package/ui/units/wizard/components/Dialogs/DialogField/components/ButtonColorDialog/ButtonColorDialog.js +100 -0
  2092. package/ui/units/wizard/components/Dialogs/DialogField/components/DialogFieldInput/DialogFieldInput.js +22 -0
  2093. package/ui/units/wizard/components/Dialogs/DialogField/components/DialogFieldMainSection/DialogFieldMainSection.js +338 -0
  2094. package/ui/units/wizard/components/Dialogs/DialogField/components/DialogFieldRow/DialogFieldRow.js +18 -0
  2095. package/ui/units/wizard/components/Dialogs/DialogField/components/DialogFieldSelect/DialogFieldSelect.js +35 -0
  2096. package/ui/units/wizard/components/Dialogs/DialogField/components/SubTotalsSettings/SubTotalsSettings.js +33 -0
  2097. package/ui/units/wizard/components/Dialogs/DialogField/utils/backgroundSettings.js +80 -0
  2098. package/ui/units/wizard/components/Dialogs/DialogField/utils/barsSettings.js +24 -0
  2099. package/ui/units/wizard/components/Dialogs/DialogField/utils/misc.js +97 -0
  2100. package/ui/units/wizard/components/Dialogs/DialogField/utils/subTotals.js +22 -0
  2101. package/ui/units/wizard/components/Dialogs/DialogFieldInspector/DialogFieldInspector.js +129 -0
  2102. package/ui/units/wizard/components/Dialogs/DialogGeolayer/DialogGeolayer.js +70 -0
  2103. package/ui/units/wizard/components/Dialogs/DialogLabelSettings/DialogLabelSettings.js +108 -0
  2104. package/ui/units/wizard/components/Dialogs/DialogLink.js +118 -0
  2105. package/ui/units/wizard/components/Dialogs/DialogMetricSettings/DialogMetricSettings.js +166 -0
  2106. package/ui/units/wizard/components/Dialogs/DialogMultidataset.js +312 -0
  2107. package/ui/units/wizard/components/Dialogs/DialogNoRights.js +20 -0
  2108. package/ui/units/wizard/components/Dialogs/DialogPlaceholder/DialogPlaceholder.js +883 -0
  2109. package/ui/units/wizard/components/Dialogs/DialogPlaceholder/components/DialogPlaceholderRow/DialogPlaceholderRow.js +26 -0
  2110. package/ui/units/wizard/components/Dialogs/DialogPlaceholder/constants/radio-buttons.js +172 -0
  2111. package/ui/units/wizard/components/Dialogs/DialogPlaceholder/utils.js +17 -0
  2112. package/ui/units/wizard/components/Dialogs/DialogPointsSize.js +163 -0
  2113. package/ui/units/wizard/components/Dialogs/DialogShapes/DialogShapes.js +117 -0
  2114. package/ui/units/wizard/components/Dialogs/DialogShapes/DialogShapesPalette/DialogShapesPalette.js +121 -0
  2115. package/ui/units/wizard/components/Dialogs/DialogTooltipSettings/DialogTooltipSettings.js +98 -0
  2116. package/ui/units/wizard/components/Dialogs/Settings/CenterSetting/CenterSetting.js +51 -0
  2117. package/ui/units/wizard/components/Dialogs/Settings/IndicatorTitleSetting/IndicatorTitleSetting.js +64 -0
  2118. package/ui/units/wizard/components/Dialogs/Settings/LimitInput/LimitInput.js +56 -0
  2119. package/ui/units/wizard/components/Dialogs/Settings/SettingFeed/SettingFeed.js +27 -0
  2120. package/ui/units/wizard/components/Dialogs/Settings/SettingNavigator/NavigatorSubSettings/NavigatorSubSettings.js +141 -0
  2121. package/ui/units/wizard/components/Dialogs/Settings/SettingNavigator/SettingNavigator.js +39 -0
  2122. package/ui/units/wizard/components/Dialogs/Settings/SettingPagination/SettingPagination.js +58 -0
  2123. package/ui/units/wizard/components/Dialogs/Settings/SettingSwitcher/SettingSwitcher.js +58 -0
  2124. package/ui/units/wizard/components/Dialogs/Settings/SettingTitleMode/SettingTitleMode.js +41 -0
  2125. package/ui/units/wizard/components/Dialogs/Settings/Settings.js +833 -0
  2126. package/ui/units/wizard/components/Dialogs/Settings/ZoomSetting/ZoomSetting.js +47 -0
  2127. package/ui/units/wizard/components/Dialogs/components/DialogRadioButtons/DialogRadioButtons.js +38 -0
  2128. package/ui/units/wizard/components/Dialogs/components/DialogRow/DialogRow.js +30 -0
  2129. package/ui/units/wizard/components/Dialogs/components/TitleWithTooltip/TitleWithTooltip.js +25 -0
  2130. package/ui/units/wizard/components/GeolayersSelect/GeolayersSelect.js +264 -0
  2131. package/ui/units/wizard/components/GradientPalettePreview/GradientPalettePreview.js +13 -0
  2132. package/ui/units/wizard/components/HierarchyEditor/HierarchyEditor.js +147 -0
  2133. package/ui/units/wizard/components/MinifiedPalette/MinifiedPalette.js +101 -0
  2134. package/ui/units/wizard/components/Palette/Palette.js +76 -0
  2135. package/ui/units/wizard/components/PlaceholderActionIcon/PlaceholderActionIcon.js +39 -0
  2136. package/ui/units/wizard/components/SearchInput/SearchInput.js +27 -0
  2137. package/ui/units/wizard/components/ValuesList/ValuesList.js +288 -0
  2138. package/ui/units/wizard/components/VisualizationItemTitleWithAggregation/VisualizationItemTitleWithAggregation.js +24 -0
  2139. package/ui/units/wizard/constants/aggregations.js +14 -0
  2140. package/ui/units/wizard/constants/dialogColor.js +46 -0
  2141. package/ui/units/wizard/constants/formats.js +49 -0
  2142. package/ui/units/wizard/constants/grouping.js +12 -0
  2143. package/ui/units/wizard/constants/index.js +35 -0
  2144. package/ui/units/wizard/constants/paletteTypes.js +9 -0
  2145. package/ui/units/wizard/constants/placeholders.js +6 -0
  2146. package/ui/units/wizard/containers/App.js +56 -0
  2147. package/ui/units/wizard/containers/Wizard/SectionDataset/DatasetItem/DatasetItem.js +337 -0
  2148. package/ui/units/wizard/containers/Wizard/SectionDataset/FieldsContainer/FieldsContainer.js +9 -0
  2149. package/ui/units/wizard/containers/Wizard/SectionDataset/FieldsContainer/ParametersContainer/ParametersContainer.js +27 -0
  2150. package/ui/units/wizard/containers/Wizard/SectionDataset/FieldsContainer/components/SectionContainer/SectionContainer.js +29 -0
  2151. package/ui/units/wizard/containers/Wizard/SectionDataset/HierarchyEditor/HierarchyEditor.js +194 -0
  2152. package/ui/units/wizard/containers/Wizard/SectionDataset/SectionDataset.js +927 -0
  2153. package/ui/units/wizard/containers/Wizard/SectionPreview/SectionPreview.js +172 -0
  2154. package/ui/units/wizard/containers/Wizard/SectionVisualization/AddField/AddField.js +90 -0
  2155. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/AvailablePlaceholder/AvailablePlaceholder.js +65 -0
  2156. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/ColorsPlaceholder/ColorsPlaceholder.js +148 -0
  2157. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/DashboardFiltersPlaceholder/DashboardFiltersPlaceholder.js +137 -0
  2158. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/DashboardParametersPlaceholder/DashboardParametersPlaceholder.js +95 -0
  2159. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/FiltersPlaceholder/FiltersPlaceholder.js +106 -0
  2160. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/LabelsPlaceholder/LabelsPlaceholder.js +102 -0
  2161. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/LayerFiltersPlaceholder/LayerFiltersPlaceholder.js +116 -0
  2162. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/Placeholder/Placeholder.js +220 -0
  2163. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/PlaceholdersContainer.js +245 -0
  2164. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/SegmentsPlaceholder/SegmentsPlaceholder.js +78 -0
  2165. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/ShapesPlaceholder/ShapesPlaceholder.js +110 -0
  2166. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/SortPlaceholder/SortPlaceholder.js +133 -0
  2167. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/TooltipsPlaceholder/TooltipsPlaceholder.js +85 -0
  2168. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/VisualizationPlaceholder/VisualizationPlaceholder.d.ts +462 -0
  2169. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/VisualizationPlaceholder/VisualizationPlaceholder.js +343 -0
  2170. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/VisualizationPlaceholder/constants.js +13 -0
  2171. package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/utils.js +10 -0
  2172. package/ui/units/wizard/containers/Wizard/SectionVisualization/SectionVisualization.js +115 -0
  2173. package/ui/units/wizard/containers/Wizard/SectionVisualization/VisualizationItem/VisualizationItem.js +732 -0
  2174. package/ui/units/wizard/containers/Wizard/SectionVisualization/VisualizationLayersControl/CombinedChartLayerTypeSwitcher.js +55 -0
  2175. package/ui/units/wizard/containers/Wizard/SectionVisualization/VisualizationLayersControl/VisualizationLayersControl.js +254 -0
  2176. package/ui/units/wizard/containers/Wizard/SectionVisualization/VisualizationSelector/VisualizationSelector.js +212 -0
  2177. package/ui/units/wizard/containers/Wizard/Wizard.js +513 -0
  2178. package/ui/units/wizard/containers/Wizard/WizardActionPanel/WizardActionPanel.js +115 -0
  2179. package/ui/units/wizard/containers/Wizard/WizardActionPanel/useWizardActionPanel.js +178 -0
  2180. package/ui/units/wizard/reducers/dataset.js +156 -0
  2181. package/ui/units/wizard/reducers/dialogColor.js +32 -0
  2182. package/ui/units/wizard/reducers/hierarchyEditor.js +28 -0
  2183. package/ui/units/wizard/reducers/index.js +30 -0
  2184. package/ui/units/wizard/reducers/preview.js +377 -0
  2185. package/ui/units/wizard/reducers/revisions/reducers.js +59 -0
  2186. package/ui/units/wizard/reducers/settings.js +49 -0
  2187. package/ui/units/wizard/reducers/utils/checkTableColor.js +7 -0
  2188. package/ui/units/wizard/reducers/utils/clearUnusedVisualizationItems.js +184 -0
  2189. package/ui/units/wizard/reducers/utils/getConfigData.js +43 -0
  2190. package/ui/units/wizard/reducers/utils/getPlaceholdersWithMergedSettings.js +77 -0
  2191. package/ui/units/wizard/reducers/utils/index.js +6 -0
  2192. package/ui/units/wizard/reducers/utils/updateColorHierarchies.js +34 -0
  2193. package/ui/units/wizard/reducers/visualization.js +915 -0
  2194. package/ui/units/wizard/reducers/widget.js +80 -0
  2195. package/ui/units/wizard/selectors/dataset.js +101 -0
  2196. package/ui/units/wizard/selectors/dialogColor.js +52 -0
  2197. package/ui/units/wizard/selectors/gradient.js +24 -0
  2198. package/ui/units/wizard/selectors/index.js +17 -0
  2199. package/ui/units/wizard/selectors/preview.js +83 -0
  2200. package/ui/units/wizard/selectors/settings.js +42 -0
  2201. package/ui/units/wizard/selectors/visualization.js +73 -0
  2202. package/ui/units/wizard/selectors/widget.js +37 -0
  2203. package/ui/units/wizard/utils/colors.js +16 -0
  2204. package/ui/units/wizard/utils/filters.js +25 -0
  2205. package/ui/units/wizard/utils/helpers.js +528 -0
  2206. package/ui/units/wizard/utils/mappers/mapChartsToClientConfig.js +168 -0
  2207. package/ui/units/wizard/utils/mappers/mapClientToChartsConfig.js +49 -0
  2208. package/ui/units/wizard/utils/palette.js +48 -0
  2209. package/ui/units/wizard/utils/placeholder.js +90 -0
  2210. package/ui/units/wizard/utils/predicates.d.ts +2 -0
  2211. package/ui/units/wizard/utils/predicates.js +4 -0
  2212. package/ui/units/wizard/utils/shapes.js +11 -0
  2213. package/ui/units/wizard/utils/table.js +22 -0
  2214. package/ui/units/wizard/utils/visualization.d.ts +232 -0
  2215. package/ui/units/wizard/utils/visualization.js +74 -0
  2216. package/ui/units/wizard/utils/wizard.d.ts +149 -0
  2217. package/ui/units/wizard/utils/wizard.js +473 -0
  2218. package/ui/units/workbooks/components/CreateEntry/CreateEntry.js +149 -0
  2219. package/ui/units/workbooks/components/CreateEntry/utils.js +87 -0
  2220. package/ui/units/workbooks/components/CreateEntryDialog/CreateEntryDialog.js +63 -0
  2221. package/ui/units/workbooks/components/CreateEntryDialog/utils.js +10 -0
  2222. package/ui/units/workbooks/components/DeleteEntryDialog/DeleteEntryDialog.js +48 -0
  2223. package/ui/units/workbooks/components/DuplicateEntryDialog/DuplicateEntryDialog.js +61 -0
  2224. package/ui/units/workbooks/components/EmptyWorkbook/EmptyWorkbook.js +65 -0
  2225. package/ui/units/workbooks/components/EmptyWorkbook/EmptyWorkbookContainer.js +27 -0
  2226. package/ui/units/workbooks/components/EmptyWorkbook/utils.js +34 -0
  2227. package/ui/units/workbooks/components/EntryActions/EntryActions.js +122 -0
  2228. package/ui/units/workbooks/components/EntryActions/utils.js +6 -0
  2229. package/ui/units/workbooks/components/RenameEntryDialog/RenameEntryDialog.js +75 -0
  2230. package/ui/units/workbooks/components/Table/WorkbookEntriesTable/ChunkGroup/ChunkGroup.js +52 -0
  2231. package/ui/units/workbooks/components/Table/WorkbookEntriesTable/MainTabContent/MainTabContent.js +135 -0
  2232. package/ui/units/workbooks/components/Table/WorkbookEntriesTable/Row/Row.js +150 -0
  2233. package/ui/units/workbooks/components/Table/WorkbookEntriesTable/WorkbookEntriesTable.js +273 -0
  2234. package/ui/units/workbooks/components/Table/WorkbookEntriesTable/WorkbookEntriesTableTabs.js +142 -0
  2235. package/ui/units/workbooks/components/Table/WorkbookEntriesTable/constants.js +19 -0
  2236. package/ui/units/workbooks/components/Table/WorkbookEntriesTable/utils.js +12 -0
  2237. package/ui/units/workbooks/components/WorkbookActions/WorkbookActions.js +202 -0
  2238. package/ui/units/workbooks/components/WorkbookActions/utils.js +6 -0
  2239. package/ui/units/workbooks/components/WorkbookFilters/WorkbookFilters.js +88 -0
  2240. package/ui/units/workbooks/components/WorkbookMainTabContent/WorkbookMainTabContent.js +247 -0
  2241. package/ui/units/workbooks/components/WorkbookMainTabContent/useChunkedEntries.js +41 -0
  2242. package/ui/units/workbooks/components/WorkbookPage/WorkbookPage.js +140 -0
  2243. package/ui/units/workbooks/components/WorkbookPage/hooks/useLayout.js +190 -0
  2244. package/ui/units/workbooks/components/WorkbookTabContent/WorkbookTabContent.js +166 -0
  2245. package/ui/units/workbooks/components/WorkbookTabContent/useChunkedEntries.js +40 -0
  2246. package/ui/units/workbooks/components/WorkbookTabs/WorkbookTabs.js +27 -0
  2247. package/ui/units/workbooks/components/WorkbookTabs/constants.js +4 -0
  2248. package/ui/units/workbooks/components/WorkbookTabs/utils.js +28 -0
  2249. package/ui/units/workbooks/constants/index.js +15 -0
  2250. package/ui/units/workbooks/store/actions/index.js +543 -0
  2251. package/ui/units/workbooks/store/constants/index.js +100 -0
  2252. package/ui/units/workbooks/store/reducers/index.js +11 -0
  2253. package/ui/units/workbooks/store/reducers/workbook-page.js +477 -0
  2254. package/ui/units/workbooks/store/selectors/index.js +112 -0
  2255. package/ui/units/workbooks/utils/entry.js +8 -0
  2256. package/ui/utils/absurd.js +7 -0
  2257. package/ui/utils/collectionFiltersStorage.js +17 -0
  2258. package/ui/utils/colors.js +37 -0
  2259. package/ui/utils/connections/icons.js +29 -0
  2260. package/ui/utils/connections/index.js +5 -0
  2261. package/ui/utils/cookies.d.ts +1 -0
  2262. package/ui/utils/cookies.js +7 -0
  2263. package/ui/utils/copyItems.js +161 -0
  2264. package/ui/utils/copyText.js +28 -0
  2265. package/ui/utils/csrf.d.ts +1 -0
  2266. package/ui/utils/csrf.js +5 -0
  2267. package/ui/utils/custom-export-menu-item.js +27 -0
  2268. package/ui/utils/date.js +7 -0
  2269. package/ui/utils/docs/helpers.js +8 -0
  2270. package/ui/utils/docs/index.js +39 -0
  2271. package/ui/utils/embedded.js +28 -0
  2272. package/ui/utils/errorContentTypes.js +76 -0
  2273. package/ui/utils/errors/errorByCode.js +21 -0
  2274. package/ui/utils/errors/manual.js +5 -0
  2275. package/ui/utils/errors/parse.js +109 -0
  2276. package/ui/utils/getActionPanelItems.js +72 -0
  2277. package/ui/utils/getAllEntryScopes.js +8 -0
  2278. package/ui/utils/getBasicActionPanelItems.js +84 -0
  2279. package/ui/utils/getCurrentUserRights.js +14 -0
  2280. package/ui/utils/getOverridedTheme.js +12 -0
  2281. package/ui/utils/getRestrictedParamNames.js +6 -0
  2282. package/ui/utils/getRevisionsPanelEntryScopesTexts.js +28 -0
  2283. package/ui/utils/getScopeTypeIcon.js +25 -0
  2284. package/ui/utils/getTopLevelEntryScopes.js +8 -0
  2285. package/ui/utils/getTypeSelectOptions.js +21 -0
  2286. package/ui/utils/helpers.js +45 -0
  2287. package/ui/utils/icons.js +8 -0
  2288. package/ui/utils/index.js +39 -0
  2289. package/ui/utils/isEnabledFeature.js +10 -0
  2290. package/ui/utils/markdown/get-render-markdown-fn.js +22 -0
  2291. package/ui/utils/markdown/get-render-yfm-fn.js +19 -0
  2292. package/ui/utils/markdown/index.js +6 -0
  2293. package/ui/utils/markup.js +21 -0
  2294. package/ui/utils/migrateItemDataOnPaste.js +26 -0
  2295. package/ui/utils/mobile.js +13 -0
  2296. package/ui/utils/os.js +10 -0
  2297. package/ui/utils/palettes.js +22 -0
  2298. package/ui/utils/readOnly.js +13 -0
  2299. package/ui/utils/revisions.js +28 -0
  2300. package/ui/utils/scrollableContainerContext.js +21 -0
  2301. package/ui/utils/sdkRequests.js +33 -0
  2302. package/ui/utils/setEntryKey.js +44 -0
  2303. package/ui/utils/shared-entries/get-is-shared-entry.js +6 -0
  2304. package/ui/utils/shared-entries/index.js +4 -0
  2305. package/ui/utils/stringUtils.js +11 -0
  2306. package/ui/utils/urlUtils.js +50 -0
  2307. package/ui/utils/utils.js +221 -0
  2308. package/ui/utils/validation.js +63 -0
  2309. package/ui/utils/visualizations/line.js +98 -0
  2310. package/ui/utils/visualizations/placeholders/colors.js +58 -0
  2311. package/ui/utils/visualizations/placeholders/common-measures.js +84 -0
  2312. package/ui/utils/waitOperation.js +72 -0
  2313. package/ui/utils/widgetColors.js +61 -0
  2314. package/ui/utils/workbooks.js +14 -0
  2315. package/AccessErrorPage.js +0 -18
  2316. package/AdvancedChartWidget.js +0 -253
  2317. package/AppearanceSettings.js +0 -45
  2318. package/Body.js +0 -2328
  2319. package/CreateProfilePage.js +0 -142
  2320. package/HighchartsMapWidget.js +0 -602
  2321. package/MainPage.js +0 -121
  2322. package/MarkupWidget.js +0 -33
  2323. package/MetricWidget.js +0 -579
  2324. package/StyledSplitPane.js +0 -41
  2325. package/UserProfilePage.js +0 -44
  2326. package/UsersList.js +0 -306
  2327. package/YandexMapWidget.js +0 -2698
  2328. package/components/AccessRights.js +0 -5908
  2329. package/components/ActionPanel.js +0 -3507
  2330. package/components/AdaptiveDialog.js +0 -45
  2331. package/components/AnimateBlock.js +0 -38
  2332. package/components/AsideHeaderAdapter.js +0 -632
  2333. package/components/AsyncImage.js +0 -77
  2334. package/components/AutogeneratedPaletteIcon.js +0 -53
  2335. package/components/BetaMark.js +0 -9
  2336. package/components/Breadcrumbs.js +0 -70
  2337. package/components/BreadcrumbsItemLink.js +0 -16
  2338. package/components/ButtonAttach.js +0 -32
  2339. package/components/Collapse.js +0 -159
  2340. package/components/CollectionFilters.js +0 -340
  2341. package/components/CollectionIcon.js +0 -14
  2342. package/components/CollectionsStructure.js +0 -3262
  2343. package/components/ColorPaletteEditorContainer.js +0 -1091
  2344. package/components/ColorPaletteSelect.js +0 -120
  2345. package/components/ColorPickerInput.js +0 -199
  2346. package/components/ConnectorIcon.js +0 -65
  2347. package/components/ControlComponents.js +0 -24341
  2348. package/components/CopyEntriesToWorkbookDialog.js +0 -414
  2349. package/components/DashKit.js +0 -4026
  2350. package/components/DataTypeIcon.js +0 -68
  2351. package/components/DatasetFieldList.js +0 -51
  2352. package/components/DebouncedInput.js +0 -47
  2353. package/components/DialogAddSharedEntryFromLink.js +0 -146
  2354. package/components/DialogChartWidget.js +0 -1265
  2355. package/components/DialogCommon.js +0 -91
  2356. package/components/DialogConfirm.js +0 -69
  2357. package/components/DialogDefault.js +0 -78
  2358. package/components/DialogEditItem.js +0 -183
  2359. package/components/DialogEntryDescription.js +0 -175
  2360. package/components/DialogErrorWithTabs.js +0 -373
  2361. package/components/DialogExternalControl.js +0 -108
  2362. package/components/DialogFieldEditor.js +0 -45
  2363. package/components/DialogFilter.js +0 -3735
  2364. package/components/DialogGroupControl.js +0 -926
  2365. package/components/DialogImageWidget.js +0 -203
  2366. package/components/DialogManager.js +0 -42
  2367. package/components/DialogNoRights.js +0 -19
  2368. package/components/DialogParameter.js +0 -560
  2369. package/components/DialogQLParameter.js +0 -71
  2370. package/components/DialogRelatedEntities.js +0 -230
  2371. package/components/DialogRelations.js +0 -3389
  2372. package/components/DialogSelectSharedEntry.js +0 -129
  2373. package/components/DialogSharedEntryBindings.js +0 -496
  2374. package/components/DialogSharedEntryPermissions.js +0 -147
  2375. package/components/DialogSharedEntryUnbind.js +0 -124
  2376. package/components/DialogSharedRelatedEntities.js +0 -196
  2377. package/components/DialogSuccessWithAction.js +0 -23
  2378. package/components/DialogTextWidget.js +0 -211
  2379. package/components/DialogTitleWidget.js +0 -580
  2380. package/components/DialogWarning.js +0 -51
  2381. package/components/DropdownAction.js +0 -13
  2382. package/components/DropdownNavigation.js +0 -173
  2383. package/components/EditableText.js +0 -56
  2384. package/components/EntitiesList.js +0 -54
  2385. package/components/EntityIcon.js +0 -47
  2386. package/components/EntityLink.js +0 -14
  2387. package/components/EntityRow.js +0 -99
  2388. package/components/EntriesList.js +0 -55
  2389. package/components/EntryBreadcrumbs.js +0 -111
  2390. package/components/EntryContextMenu.js +0 -792
  2391. package/components/EntryDialogues.js +0 -2515
  2392. package/components/EntryIcon.js +0 -102
  2393. package/components/EntryRow.js +0 -99
  2394. package/components/EntryTitle.js +0 -57
  2395. package/components/ErrorBoundary.js +0 -24
  2396. package/components/ErrorContent.js +0 -249
  2397. package/components/ErrorPage.js +0 -30
  2398. package/components/ExpandablePanel.js +0 -67
  2399. package/components/FieldEditor.js +0 -2240
  2400. package/components/FieldWrapper.js +0 -15
  2401. package/components/FloatMenu.js +0 -41
  2402. package/components/FormSection.js +0 -16
  2403. package/components/IamAccessDialog.js +0 -15
  2404. package/components/IconById.js +0 -14
  2405. package/components/Illustration.js +0 -94
  2406. package/components/InaccessibleOnMobileInset.js +0 -39
  2407. package/components/Interpolate.js +0 -32
  2408. package/components/InterpolatedText.js +0 -47
  2409. package/components/LandingPage.js +0 -50
  2410. package/components/ListWithMenu.js +0 -191
  2411. package/components/ListWithRemove.js +0 -42
  2412. package/components/LocationChange.js +0 -23
  2413. package/components/MarkdownControl.js +0 -21
  2414. package/components/MarkdownHelpPopover.js +0 -77
  2415. package/components/Markup.js +0 -200
  2416. package/components/MigrateToWorkbookDialog.js +0 -498
  2417. package/components/MobileHeader.js +0 -142
  2418. package/components/MobileTocToggle.js +0 -16
  2419. package/components/Monaco.js +0 -112
  2420. package/components/Navigation.js +0 -2675
  2421. package/components/NavigationPrompt.js +0 -18
  2422. package/components/NavigationTabs.js +0 -84
  2423. package/components/NumberFormatSettings.js +0 -193
  2424. package/components/OpenDialogNeedReset.js +0 -49
  2425. package/components/OrderBySelect.js +0 -51
  2426. package/components/PageTitle.js +0 -53
  2427. package/components/PaletteIcon.js +0 -25
  2428. package/components/PaletteItem.js +0 -44
  2429. package/components/PathSelect.js +0 -113
  2430. package/components/PlaceholderIllustration.js +0 -37
  2431. package/components/Progress.js +0 -47
  2432. package/components/ProgressBar.js +0 -19
  2433. package/components/RelativeDatesPicker.js +0 -675
  2434. package/components/RevisionStatusPoint.js +0 -25
  2435. package/components/Revisions.js +0 -314
  2436. package/components/RevisionsPanel.js +0 -278
  2437. package/components/SectionWrapper.js +0 -52
  2438. package/components/Select.js +0 -404
  2439. package/components/SelectComponents.js +0 -12
  2440. package/components/SelectMigrationToWorkbookDialog.js +0 -162
  2441. package/components/SharedBindingsList.js +0 -93
  2442. package/components/SharedEntryIcon.js +0 -22
  2443. package/components/SlugifyUrl.js +0 -22
  2444. package/components/SmartLoader.js +0 -28
  2445. package/components/TabMenu.js +0 -356
  2446. package/components/Tabs.js +0 -66
  2447. package/components/TagInput.js +0 -142
  2448. package/components/TemplateTextPaper.js +0 -32
  2449. package/components/TextEditor.js +0 -41
  2450. package/components/UserAvatar.js +0 -233
  2451. package/components/UserMenu.js +0 -54
  2452. package/components/ValuesList.js +0 -55
  2453. package/components/Veil.js +0 -19
  2454. package/components/ViewAsync.js +0 -45
  2455. package/components/ViewError.js +0 -115
  2456. package/components/ViewLoader.js +0 -17
  2457. package/components/WidgetRoundingsInput.js +0 -47
  2458. package/components/Widgets.js +0 -3964
  2459. package/components/WorkbookIcon.js +0 -63
  2460. package/components/WorkbookNavigationMinimal.js +0 -345
  2461. package/components/YfmWrapper.js +0 -144
  2462. package/components/common.js +0 -4451
  2463. package/highcharts.js +0 -380
  2464. package/index.js +0 -24
  2465. package/main.js +0 -5018
  2466. package/markdown.js +0 -362
  2467. package/pages/AuthPage.js +0 -604
  2468. package/pages/CollectionsNavigationPage.js +0 -2579
  2469. package/pages/ConnectionsPage.js +0 -11918
  2470. package/pages/DashAndWizardQLPages.js +0 -67
  2471. package/pages/DashPage.js +0 -16470
  2472. package/pages/DatasetPage.js +0 -9986
  2473. package/pages/FallbackPage.js +0 -8
  2474. package/pages/LandingPage.js +0 -8
  2475. package/pages/OwnUserProfilePage.js +0 -878
  2476. package/pages/PreviewPage.js +0 -284
  2477. package/pages/QLPage.js +0 -9628
  2478. package/pages/ServiceSettingsPage.js +0 -180
  2479. package/pages/WizardPage.js +0 -2774
  2480. package/perfomance.js +0 -23
  2481. package/serviceSettings.js +0 -117
  2482. package/types/shared/constants/entry.d.ts +0 -65
  2483. package/types/shared/modules/helpers.d.ts +0 -38
  2484. package/types/shared/old-schema/charts.d.ts +0 -131
  2485. package/types/shared/old-schema/index.d.ts +0 -113
  2486. package/types/shared/schema/auth-schema/index.d.ts +0 -18
  2487. package/types/shared/schema/index.d.ts +0 -3363
  2488. package/types/shared/schema/mix/actions/dash/create-dashboard-v1.d.ts +0 -723
  2489. package/types/shared/schema/mix/actions/dash/get-dashboard-v1.d.ts +0 -515
  2490. package/types/shared/schema/mix/actions/dash/index.d.ts +0 -1959
  2491. package/types/shared/schema/mix/actions/dash/update-dashboard-v1.d.ts +0 -722
  2492. package/types/shared/schema/mix/actions/index.d.ts +0 -2067
  2493. package/types/shared/schema/mix/index.d.ts +0 -2071
  2494. package/types/shared/schema/us/actions/entries/get-entries.d.ts +0 -100
  2495. package/types/shared/schema/us/actions/entries/index.d.ts +0 -298
  2496. package/types/shared/schema/us/actions/entries/list-directory.d.ts +0 -101
  2497. package/types/shared/schema/us/actions/index.d.ts +0 -1064
  2498. package/types/shared/schema/us/actions/workbooks/get-workbooks-list.d.ts +0 -75
  2499. package/types/shared/schema/us/actions/workbooks/index.d.ts +0 -384
  2500. package/types/shared/schema/us/index.d.ts +0 -1069
  2501. package/types/shared/schema/us/schemas/entries/get-entries.d.ts +0 -172
  2502. package/types/shared/schema/us/schemas/entries/list-directory.d.ts +0 -171
  2503. package/types/ui/components/DashKit/plugins/Title/utils.d.ts +0 -12
  2504. package/types/ui/components/DashKit/plugins/Widget/components/helpers.d.ts +0 -3
  2505. package/types/ui/components/DialogRelatedEntities/DialogRelatedEntities.d.ts +0 -7
  2506. package/types/ui/components/DialogRelations/DialogRelations.d.ts +0 -21
  2507. package/types/ui/components/DialogRelations/constants.d.ts +0 -26
  2508. package/types/ui/components/DialogRelations/hooks/helpers.d.ts +0 -109
  2509. package/types/ui/components/DialogRelations/hooks/helpersControls.d.ts +0 -25
  2510. package/types/ui/components/EntryDialogues/EntryDialogues.d.ts +0 -95
  2511. package/types/ui/components/Navigation/Core/CreateEntry/CreateEntry.d.ts +0 -18
  2512. package/types/ui/components/Widgets/Chart/helpers/helpers.d.ts +0 -139
  2513. package/types/ui/components/Widgets/Chart/helpers/yandex-map.d.ts +0 -12
  2514. package/types/ui/components/Widgets/Chart/hooks/useLoadingChartWidget.d.ts +0 -195
  2515. package/types/ui/datalens/render.d.ts +0 -8
  2516. package/types/ui/entries/main.d.ts +0 -3
  2517. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/chartkit-adapter.d.ts +0 -59
  2518. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/config.d.ts +0 -576
  2519. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/utils.d.ts +0 -12
  2520. package/types/ui/libs/DatalensChartkit/menu/MenuItems.d.ts +0 -55
  2521. package/types/ui/libs/DatalensChartkit/menu/constants.d.ts +0 -9
  2522. package/types/ui/libs/DatalensChartkit/modules/data-provider/charts/index.d.ts +0 -125
  2523. package/types/ui/store/reducers/controlDialog/controlDialog.d.ts +0 -58
  2524. package/types/ui/units/connections/store/actions/index.d.ts +0 -34
  2525. package/types/ui/units/dash/store/actions/base/actions.d.ts +0 -28
  2526. package/types/ui/units/datasets/components/DatasetTable/utils.d.ts +0 -44
  2527. package/types/ui/units/datasets/containers/DatasetPage/DatasetPage.d.ts +0 -27
  2528. package/types/ui/units/datasets/containers/DatasetPage/createDatasetPageContext.d.ts +0 -7
  2529. package/types/ui/units/ql/store/reducers/ql.d.ts +0 -873
  2530. package/types/ui/units/wizard/actions/dndItems.d.ts +0 -68
  2531. package/types/ui/units/wizard/actions/index.d.ts +0 -714
  2532. package/types/ui/units/wizard/actions/placeholder.d.ts +0 -31
  2533. package/types/ui/units/wizard/actions/visualization.d.ts +0 -199
  2534. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/VisualizationPlaceholder/VisualizationPlaceholder.d.ts +0 -462
  2535. package/types/ui/units/wizard/utils/visualization.d.ts +0 -232
  2536. package/types/ui/units/wizard/utils/wizard.d.ts +0 -150
  2537. /package/{types/i18n → i18n}/constants.d.ts +0 -0
  2538. /package/{types/i18n → i18n}/index.d.ts +0 -0
  2539. /package/{types/i18n → i18n}/prepare-keysets/constants.d.ts +0 -0
  2540. /package/{types/i18n → i18n}/prepare-keysets/index.d.ts +0 -0
  2541. /package/{types/i18n → i18n}/prepare-keysets/prepare-keysets.d.ts +0 -0
  2542. /package/{types/i18n → i18n}/prepare-keysets/utils.d.ts +0 -0
  2543. /package/{types/i18n → i18n}/read-keysets.d.ts +0 -0
  2544. /package/{types/i18n → i18n}/types.d.ts +0 -0
  2545. /package/{types/i18n → i18n}/utils.d.ts +0 -0
  2546. /package/{types/index.d.ts → index.d.ts} +0 -0
  2547. /package/{types/server → server}/app-env.d.ts +0 -0
  2548. /package/{types/server → server}/callbacks/index.d.ts +0 -0
  2549. /package/{types/server → server}/callbacks/page-error.d.ts +0 -0
  2550. /package/{types/server → server}/components/api-docs/constants.d.ts +0 -0
  2551. /package/{types/server → server}/components/api-docs/index.d.ts +0 -0
  2552. /package/{types/server → server}/components/api-docs/types.d.ts +0 -0
  2553. /package/{types/server → server}/components/app-layout/app-layout-settings.d.ts +0 -0
  2554. /package/{types/server → server}/components/app-layout/plugins/layout/index.d.ts +0 -0
  2555. /package/{types/server → server}/components/auth/callbacks/auth-layout.d.ts +0 -0
  2556. /package/{types/server → server}/components/auth/callbacks/index.d.ts +0 -0
  2557. /package/{types/server → server}/components/auth/middlewares/auth/api-auth.d.ts +0 -0
  2558. /package/{types/server → server}/components/auth/middlewares/auth/constants.d.ts +0 -0
  2559. /package/{types/server → server}/components/auth/middlewares/auth/index.d.ts +0 -0
  2560. /package/{types/server → server}/components/auth/middlewares/auth/ui-auth.d.ts +0 -0
  2561. /package/{types/server → server}/components/auth/routes.d.ts +0 -0
  2562. /package/{types/server → server}/components/auth/types/token.d.ts +0 -0
  2563. /package/{types/server → server}/components/auth/types/user.d.ts +0 -0
  2564. /package/{types/server → server}/components/axios.d.ts +0 -0
  2565. /package/{types/server → server}/components/cache-client.d.ts +0 -0
  2566. /package/{types/server → server}/components/chart-editor-developer-mode-access-check.d.ts +0 -0
  2567. /package/{types/server → server}/components/charts-engine/components/chart-generator.d.ts +0 -0
  2568. /package/{types/server → server}/components/charts-engine/components/chart-validator.d.ts +0 -0
  2569. /package/{types/server → server}/components/charts-engine/components/error-handler.d.ts +0 -0
  2570. /package/{types/server → server}/components/charts-engine/components/markdown.d.ts +0 -0
  2571. /package/{types/server → server}/components/charts-engine/components/processor/chart-api-context.d.ts +0 -0
  2572. /package/{types/server → server}/components/charts-engine/components/processor/comments-fetcher.d.ts +0 -0
  2573. /package/{types/server → server}/components/charts-engine/components/processor/console.d.ts +0 -0
  2574. /package/{types/server → server}/components/charts-engine/components/processor/control-builder.d.ts +0 -0
  2575. /package/{types/server → server}/components/charts-engine/components/processor/data-fetcher.d.ts +0 -0
  2576. /package/{types/server → server}/components/charts-engine/components/processor/hooks.d.ts +0 -0
  2577. /package/{types/server → server}/components/charts-engine/components/processor/index.d.ts +0 -0
  2578. /package/{types/server → server}/components/charts-engine/components/processor/paramsUtils.d.ts +0 -0
  2579. /package/{types/server → server}/components/charts-engine/components/processor/sources.d.ts +0 -0
  2580. /package/{types/server → server}/components/charts-engine/components/processor/stack-trace-prepaper.d.ts +0 -0
  2581. /package/{types/server → server}/components/charts-engine/components/processor/types.d.ts +0 -0
  2582. /package/{types/server → server}/components/charts-engine/components/processor/utils.d.ts +0 -0
  2583. /package/{types/server → server}/components/charts-engine/components/processor/worker-chart-builder.d.ts +0 -0
  2584. /package/{types/server → server}/components/charts-engine/components/request/axios.d.ts +0 -0
  2585. /package/{types/server → server}/components/charts-engine/components/request/index.d.ts +0 -0
  2586. /package/{types/server → server}/components/charts-engine/components/storage/base.d.ts +0 -0
  2587. /package/{types/server → server}/components/charts-engine/components/storage/index.d.ts +0 -0
  2588. /package/{types/server → server}/components/charts-engine/components/storage/types.d.ts +0 -0
  2589. /package/{types/server → server}/components/charts-engine/components/storage/united-storage/index.d.ts +0 -0
  2590. /package/{types/server → server}/components/charts-engine/components/storage/united-storage/provider.d.ts +0 -0
  2591. /package/{types/server → server}/components/charts-engine/components/utils.d.ts +0 -0
  2592. /package/{types/server → server}/components/charts-engine/components/wizard-worker/index.d.ts +0 -0
  2593. /package/{types/server → server}/components/charts-engine/components/wizard-worker/types.d.ts +0 -0
  2594. /package/{types/server → server}/components/charts-engine/components/wizard-worker/utils.d.ts +0 -0
  2595. /package/{types/server → server}/components/charts-engine/constants/index.d.ts +0 -0
  2596. /package/{types/server → server}/components/charts-engine/controllers/charts.d.ts +0 -0
  2597. /package/{types/server → server}/components/charts-engine/controllers/config.d.ts +0 -0
  2598. /package/{types/server → server}/components/charts-engine/controllers/csvConverter.d.ts +0 -0
  2599. /package/{types/server → server}/components/charts-engine/controllers/embedded-entry.d.ts +0 -0
  2600. /package/{types/server → server}/components/charts-engine/controllers/embeds.d.ts +0 -0
  2601. /package/{types/server → server}/components/charts-engine/controllers/export.d.ts +0 -0
  2602. /package/{types/server → server}/components/charts-engine/controllers/markdown.d.ts +0 -0
  2603. /package/{types/server → server}/components/charts-engine/controllers/run.d.ts +0 -0
  2604. /package/{types/server → server}/components/charts-engine/controllers/utils.d.ts +0 -0
  2605. /package/{types/server → server}/components/charts-engine/index.d.ts +0 -0
  2606. /package/{types/server → server}/components/charts-engine/runners/common.d.ts +0 -0
  2607. /package/{types/server → server}/components/charts-engine/runners/control.d.ts +0 -0
  2608. /package/{types/server → server}/components/charts-engine/runners/index.d.ts +0 -0
  2609. /package/{types/server → server}/components/charts-engine/runners/utils.d.ts +0 -0
  2610. /package/{types/server → server}/components/charts-engine/runners/wizard.d.ts +0 -0
  2611. /package/{types/server → server}/components/charts-engine/runners/worker.d.ts +0 -0
  2612. /package/{types/server → server}/components/charts-engine/types.d.ts +0 -0
  2613. /package/{types/server → server}/components/features/features-list/AsideHeaderEnabled.d.ts +0 -0
  2614. /package/{types/server → server}/components/features/features-list/AuthUpdateWithTimeout.d.ts +0 -0
  2615. /package/{types/server → server}/components/features/features-list/ChartEditorDeveloperModeCheck.d.ts +0 -0
  2616. /package/{types/server → server}/components/features/features-list/ChartkitAlerts.d.ts +0 -0
  2617. /package/{types/server → server}/components/features/features-list/CollectionsAccessEnabled.d.ts +0 -0
  2618. /package/{types/server → server}/components/features/features-list/CollectionsEnabled.d.ts +0 -0
  2619. /package/{types/server → server}/components/features/features-list/Comments.d.ts +0 -0
  2620. /package/{types/server → server}/components/features/features-list/ConnectionBasedControl.d.ts +0 -0
  2621. /package/{types/server → server}/components/features/features-list/CopyEntriesToWorkbook.d.ts +0 -0
  2622. /package/{types/server → server}/components/features/features-list/DashBoardSupportDescription.d.ts +0 -0
  2623. /package/{types/server → server}/components/features/features-list/DashBoardWidgetParamsStrictValidation.d.ts +0 -0
  2624. /package/{types/server → server}/components/features/features-list/DashServerMigrationEnable.d.ts +0 -0
  2625. /package/{types/server → server}/components/features/features-list/DashServerValidationEnabled.d.ts +0 -0
  2626. /package/{types/server → server}/components/features/features-list/DatasetsRLS.d.ts +0 -0
  2627. /package/{types/server → server}/components/features/features-list/DisableFnAndHtml.d.ts +0 -0
  2628. /package/{types/server → server}/components/features/features-list/EnableAutocreateDataset.d.ts +0 -0
  2629. /package/{types/server → server}/components/features/features-list/EnableChartEditorDocs.d.ts +0 -0
  2630. /package/{types/server → server}/components/features/features-list/EnableCommonChartDashSettings.d.ts +0 -0
  2631. /package/{types/server → server}/components/features/features-list/EnableCustomDashMargins.d.ts +0 -0
  2632. /package/{types/server → server}/components/features/features-list/EnableCustomMonitoring.d.ts +0 -0
  2633. /package/{types/server → server}/components/features/features-list/EnableDLRebranding.d.ts +0 -0
  2634. /package/{types/server → server}/components/features/features-list/EnableDashAutoFocus.d.ts +0 -0
  2635. /package/{types/server → server}/components/features/features-list/EnableDashChartStat.d.ts +0 -0
  2636. /package/{types/server → server}/components/features/features-list/EnableDashColorPickersByTheme.d.ts +0 -0
  2637. /package/{types/server → server}/components/features/features-list/EnableDatasetSourcesPagination.d.ts +0 -0
  2638. /package/{types/server → server}/components/features/features-list/EnableEmbedsInDialogShare.d.ts +0 -0
  2639. /package/{types/server → server}/components/features/features-list/EnableEntryMenuItemShare.d.ts +0 -0
  2640. /package/{types/server → server}/components/features/features-list/EnableExportSettings.d.ts +0 -0
  2641. /package/{types/server → server}/components/features/features-list/EnableExportWorkbookFile.d.ts +0 -0
  2642. /package/{types/server → server}/components/features/features-list/EnableFileUploadingByPresignedUrl.d.ts +0 -0
  2643. /package/{types/server → server}/components/features/features-list/EnableFooter.d.ts +0 -0
  2644. /package/{types/server → server}/components/features/features-list/EnableGlobalSelectors.d.ts +0 -0
  2645. /package/{types/server → server}/components/features/features-list/EnableMobileFixedHeader.d.ts +0 -0
  2646. /package/{types/server → server}/components/features/features-list/EnableMobileHeader.d.ts +0 -0
  2647. /package/{types/server → server}/components/features/features-list/EnableNewDashSettings.d.ts +0 -0
  2648. /package/{types/server → server}/components/features/features-list/EnableNewServiceSettings.d.ts +0 -0
  2649. /package/{types/server → server}/components/features/features-list/EnablePublishEntry.d.ts +0 -0
  2650. /package/{types/server → server}/components/features/features-list/EnableRLSV2.d.ts +0 -0
  2651. /package/{types/server → server}/components/features/features-list/EnableSaveAsEditorScript.d.ts +0 -0
  2652. /package/{types/server → server}/components/features/features-list/EnableSecureParamsV2.d.ts +0 -0
  2653. /package/{types/server → server}/components/features/features-list/EnableServerlessEditor.d.ts +0 -0
  2654. /package/{types/server → server}/components/features/features-list/EnableSharedEntries.d.ts +0 -0
  2655. /package/{types/server → server}/components/features/features-list/EnableUpdatingDsSettingsByAction.d.ts +0 -0
  2656. /package/{types/server → server}/components/features/features-list/EntryMenuItemCopy.d.ts +0 -0
  2657. /package/{types/server → server}/components/features/features-list/EntryMenuItemMove.d.ts +0 -0
  2658. /package/{types/server → server}/components/features/features-list/ExternalSelectors.d.ts +0 -0
  2659. /package/{types/server → server}/components/features/features-list/FetchDocumentation.d.ts +0 -0
  2660. /package/{types/server → server}/components/features/features-list/FieldEditorDocSection.d.ts +0 -0
  2661. /package/{types/server → server}/components/features/features-list/GravityChartsForBarYAndScatter.d.ts +0 -0
  2662. /package/{types/server → server}/components/features/features-list/GravityChartsForLineAreaAndBarX.d.ts +0 -0
  2663. /package/{types/server → server}/components/features/features-list/GravityChartsForPieAndTreemap.d.ts +0 -0
  2664. /package/{types/server → server}/components/features/features-list/HideMultitenant.d.ts +0 -0
  2665. /package/{types/server → server}/components/features/features-list/HolidaysOnChart.d.ts +0 -0
  2666. /package/{types/server → server}/components/features/features-list/MassRemoveCollectionsWorkbooks.d.ts +0 -0
  2667. /package/{types/server → server}/components/features/features-list/MenuItemsFlatView.d.ts +0 -0
  2668. /package/{types/server → server}/components/features/features-list/MultiDatasets.d.ts +0 -0
  2669. /package/{types/server → server}/components/features/features-list/MultipleColorsInVisualization.d.ts +0 -0
  2670. /package/{types/server → server}/components/features/features-list/NewTableWidgetForCE.d.ts +0 -0
  2671. /package/{types/server → server}/components/features/features-list/NoJsonFn.d.ts +0 -0
  2672. /package/{types/server → server}/components/features/features-list/QLMonitoring.d.ts +0 -0
  2673. /package/{types/server → server}/components/features/features-list/QLPrometheus.d.ts +0 -0
  2674. /package/{types/server → server}/components/features/features-list/QlAutoExecuteMonitoringChart.d.ts +0 -0
  2675. /package/{types/server → server}/components/features/features-list/ReadOnlyMode.d.ts +0 -0
  2676. /package/{types/server → server}/components/features/features-list/RevisionsListNoLimit.d.ts +0 -0
  2677. /package/{types/server → server}/components/features/features-list/ShouldCheckEditorAccess.d.ts +0 -0
  2678. /package/{types/server → server}/components/features/features-list/ShowChartsEngineDebugInfo.d.ts +0 -0
  2679. /package/{types/server → server}/components/features/features-list/ShowCreateEntryWithMenu.d.ts +0 -0
  2680. /package/{types/server → server}/components/features/features-list/ShowInspectorDetails.d.ts +0 -0
  2681. /package/{types/server → server}/components/features/features-list/UseAxiosRequest.d.ts +0 -0
  2682. /package/{types/server → server}/components/features/features-list/UseChartsEngineLogin.d.ts +0 -0
  2683. /package/{types/server → server}/components/features/features-list/UseChartsEngineResponseConfig.d.ts +0 -0
  2684. /package/{types/server → server}/components/features/features-list/UseComponentHeader.d.ts +0 -0
  2685. /package/{types/server → server}/components/features/features-list/UseConfigurableChartkit.d.ts +0 -0
  2686. /package/{types/server → server}/components/features/features-list/UsePublicDistincts.d.ts +0 -0
  2687. /package/{types/server → server}/components/features/features-list/UseYqlFolderKey.d.ts +0 -0
  2688. /package/{types/server → server}/components/features/features-list/XlsxChartExportEnabled.d.ts +0 -0
  2689. /package/{types/server → server}/components/features/features-list/XlsxFilesEnabled.d.ts +0 -0
  2690. /package/{types/server → server}/components/features/features-list/index.d.ts +0 -0
  2691. /package/{types/server → server}/components/features/index.d.ts +0 -0
  2692. /package/{types/server → server}/components/features/utils.d.ts +0 -0
  2693. /package/{types/server → server}/components/gateway-auth-helpers/bi-auth-helpers.d.ts +0 -0
  2694. /package/{types/server → server}/components/gateway-auth-helpers/index.d.ts +0 -0
  2695. /package/{types/server → server}/components/gateway-auth-helpers/us-auth-helpers.d.ts +0 -0
  2696. /package/{types/server → server}/components/index.d.ts +0 -0
  2697. /package/{types/server → server}/components/layout/index.d.ts +0 -0
  2698. /package/{types/server → server}/components/layout/landing-layout.d.ts +0 -0
  2699. /package/{types/server → server}/components/layout/opensource-layout-config.d.ts +0 -0
  2700. /package/{types/server → server}/components/layout/utils.d.ts +0 -0
  2701. /package/{types/server → server}/components/metrika-data-formatter.d.ts +0 -0
  2702. /package/{types/server → server}/components/public-api/config/index.d.ts +0 -0
  2703. /package/{types/server → server}/components/public-api/config/v1.d.ts +0 -0
  2704. /package/{types/server → server}/components/public-api/constants/common.d.ts +0 -0
  2705. /package/{types/server → server}/components/public-api/constants/index.d.ts +0 -0
  2706. /package/{types/server → server}/components/public-api/index.d.ts +0 -0
  2707. /package/{types/server → server}/components/public-api/types.d.ts +0 -0
  2708. /package/{types/server → server}/components/public-api/utils/index.d.ts +0 -0
  2709. /package/{types/server → server}/components/public-api/utils/init-public-api-swagger.d.ts +0 -0
  2710. /package/{types/server → server}/components/public-api/utils/prepare-public-api-base-config.d.ts +0 -0
  2711. /package/{types/server → server}/components/public-api/utils/register-action-to-open-api.d.ts +0 -0
  2712. /package/{types/server → server}/components/resolve-entry-by-link.d.ts +0 -0
  2713. /package/{types/server → server}/components/sdk/dash.d.ts +0 -0
  2714. /package/{types/server → server}/components/sdk/index.d.ts +0 -0
  2715. /package/{types/server → server}/components/sdk/us.d.ts +0 -0
  2716. /package/{types/server → server}/components/workbook-transfer/charts.d.ts +0 -0
  2717. /package/{types/server → server}/components/workbook-transfer/create-transfer-notifications.d.ts +0 -0
  2718. /package/{types/server → server}/components/workbook-transfer/dash.d.ts +0 -0
  2719. /package/{types/server → server}/components/zitadel/init-zitadel.d.ts +0 -0
  2720. /package/{types/server → server}/components/zitadel/routes.d.ts +0 -0
  2721. /package/{types/server → server}/components/zitadel/utils.d.ts +0 -0
  2722. /package/{types/server → server}/configs/common.d.ts +0 -0
  2723. /package/{types/server → server}/configs/opensource/common.d.ts +0 -0
  2724. /package/{types/server → server}/configs/opensource/development.d.ts +0 -0
  2725. /package/{types/server → server}/configs/secrets.d.ts +0 -0
  2726. /package/{types/server → server}/configs/shared/control-dash-chart-template.d.ts +0 -0
  2727. /package/{types/server → server}/configs/shared/datalens-chart-template.d.ts +0 -0
  2728. /package/{types/server → server}/configs/shared/ql-chart-template.d.ts +0 -0
  2729. /package/{types/server → server}/constants/axios.d.ts +0 -0
  2730. /package/{types/server → server}/constants/index.d.ts +0 -0
  2731. /package/{types/server → server}/constants/public-api.d.ts +0 -0
  2732. /package/{types/server → server}/controllers/api.d.ts +0 -0
  2733. /package/{types/server → server}/controllers/dl-main.d.ts +0 -0
  2734. /package/{types/server → server}/controllers/index.d.ts +0 -0
  2735. /package/{types/server → server}/controllers/navigate.d.ts +0 -0
  2736. /package/{types/server → server}/controllers/navigation.d.ts +0 -0
  2737. /package/{types/server → server}/controllers/ping.d.ts +0 -0
  2738. /package/{types/server → server}/controllers/public-api/constants.d.ts +0 -0
  2739. /package/{types/server → server}/controllers/public-api/index.d.ts +0 -0
  2740. /package/{types/server → server}/controllers/public-api/utils.d.ts +0 -0
  2741. /package/{types/server → server}/controllers/stats.d.ts +0 -0
  2742. /package/{types/server → server}/controllers/utils/handle-entry-redirect.d.ts +0 -0
  2743. /package/{types/server → server}/controllers/workbook-transfer.d.ts +0 -0
  2744. /package/{types/server → server}/controllers/xlsx-converter.d.ts +0 -0
  2745. /package/{types/server → server}/controllers/zitadel.d.ts +0 -0
  2746. /package/{types/server → server}/expresskit.d.ts +0 -0
  2747. /package/{types/server → server}/index.d.ts +0 -0
  2748. /package/{types/server → server}/lib/validation/index.d.ts +0 -0
  2749. /package/{types/server → server}/lib/validation/types.d.ts +0 -0
  2750. /package/{types/server → server}/local-dev.d.ts +0 -0
  2751. /package/{types/server → server}/middlewares/app-layout.d.ts +0 -0
  2752. /package/{types/server → server}/middlewares/auth-zitadel.d.ts +0 -0
  2753. /package/{types/server → server}/middlewares/before-auth-defaults.d.ts +0 -0
  2754. /package/{types/server → server}/middlewares/connector-icons.d.ts +0 -0
  2755. /package/{types/server → server}/middlewares/ctx.d.ts +0 -0
  2756. /package/{types/server → server}/middlewares/index.d.ts +0 -0
  2757. /package/{types/server → server}/middlewares/patch-logger.d.ts +0 -0
  2758. /package/{types/server → server}/middlewares/scr-requests.d.ts +0 -0
  2759. /package/{types/server → server}/middlewares/server-feature-with-bounded-context.d.ts +0 -0
  2760. /package/{types/server → server}/middlewares/tenant-settings.d.ts +0 -0
  2761. /package/{types/server → server}/middlewares/x-dl-context.d.ts +0 -0
  2762. /package/{types/server → server}/modes/charts/init-charts-engine.d.ts +0 -0
  2763. /package/{types/server → server}/modes/charts/plugins/constants/middleware-urls.d.ts +0 -0
  2764. /package/{types/server → server}/modes/charts/plugins/constants/misc.d.ts +0 -0
  2765. /package/{types/server → server}/modes/charts/plugins/control/constants/misc.d.ts +0 -0
  2766. /package/{types/server → server}/modes/charts/plugins/control/controls/index.d.ts +0 -0
  2767. /package/{types/server → server}/modes/charts/plugins/control/helpers/misc.d.ts +0 -0
  2768. /package/{types/server → server}/modes/charts/plugins/control/index.d.ts +0 -0
  2769. /package/{types/server → server}/modes/charts/plugins/control/js/helpers/dataset/process-dataset-content.d.ts +0 -0
  2770. /package/{types/server → server}/modes/charts/plugins/control/js/helpers/dataset/process-fields.d.ts +0 -0
  2771. /package/{types/server → server}/modes/charts/plugins/control/js/helpers/process-content.d.ts +0 -0
  2772. /package/{types/server → server}/modes/charts/plugins/control/js/helpers/typed-query/process-typed-query-content.d.ts +0 -0
  2773. /package/{types/server → server}/modes/charts/plugins/control/js/helpers/typed-query/process-typed-query-parameters.d.ts +0 -0
  2774. /package/{types/server → server}/modes/charts/plugins/control/js/index.d.ts +0 -0
  2775. /package/{types/server → server}/modes/charts/plugins/control/js/types.d.ts +0 -0
  2776. /package/{types/server → server}/modes/charts/plugins/control/types.d.ts +0 -0
  2777. /package/{types/server → server}/modes/charts/plugins/control/url/constants.d.ts +0 -0
  2778. /package/{types/server → server}/modes/charts/plugins/control/url/distincts/build-distincts-body.d.ts +0 -0
  2779. /package/{types/server → server}/modes/charts/plugins/control/url/distincts/index.d.ts +0 -0
  2780. /package/{types/server → server}/modes/charts/plugins/control/url/fields/index.d.ts +0 -0
  2781. /package/{types/server → server}/modes/charts/plugins/control/url/index.d.ts +0 -0
  2782. /package/{types/server → server}/modes/charts/plugins/control/url/typed-query/index.d.ts +0 -0
  2783. /package/{types/server → server}/modes/charts/plugins/control/url/types.d.ts +0 -0
  2784. /package/{types/server → server}/modes/charts/plugins/dash-api.d.ts +0 -0
  2785. /package/{types/server → server}/modes/charts/plugins/data-api-json-schema.d.ts +0 -0
  2786. /package/{types/server → server}/modes/charts/plugins/datalens/chart-editor-module.d.ts +0 -0
  2787. /package/{types/server → server}/modes/charts/plugins/datalens/config/constants.d.ts +0 -0
  2788. /package/{types/server → server}/modes/charts/plugins/datalens/config/index.d.ts +0 -0
  2789. /package/{types/server → server}/modes/charts/plugins/datalens/config/types.d.ts +0 -0
  2790. /package/{types/server → server}/modes/charts/plugins/datalens/gravity-charts/utils/dataLabels.d.ts +0 -0
  2791. /package/{types/server → server}/modes/charts/plugins/datalens/gravity-charts/utils/format.d.ts +0 -0
  2792. /package/{types/server → server}/modes/charts/plugins/datalens/gravity-charts/utils/index.d.ts +0 -0
  2793. /package/{types/server → server}/modes/charts/plugins/datalens/gravity-charts/utils/range-slider.d.ts +0 -0
  2794. /package/{types/server → server}/modes/charts/plugins/datalens/highcharts.d.ts +0 -0
  2795. /package/{types/server → server}/modes/charts/plugins/datalens/js/constants/errors.d.ts +0 -0
  2796. /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/colors/index.d.ts +0 -0
  2797. /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/errors/oversize-error/index.d.ts +0 -0
  2798. /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/errors/oversize-error/types.d.ts +0 -0
  2799. /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/errors/oversize-error/utils.d.ts +0 -0
  2800. /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/layer-chart/index.d.ts +0 -0
  2801. /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/layer-chart/types.d.ts +0 -0
  2802. /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/misc/prepare-single-result.d.ts +0 -0
  2803. /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/notifications/index.d.ts +0 -0
  2804. /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/totals/index.d.ts +0 -0
  2805. /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/totals/types.d.ts +0 -0
  2806. /package/{types/server → server}/modes/charts/plugins/datalens/js/js-v1.5-private.d.ts +0 -0
  2807. /package/{types/server → server}/modes/charts/plugins/datalens/js/js.d.ts +0 -0
  2808. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/area/index.d.ts +0 -0
  2809. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/constants/misc.d.ts +0 -0
  2810. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/backgroundColor.d.ts +0 -0
  2811. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/color.d.ts +0 -0
  2812. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/misc.d.ts +0 -0
  2813. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/sort.d.ts +0 -0
  2814. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/totals.d.ts +0 -0
  2815. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/types.d.ts +0 -0
  2816. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/index.d.ts +0 -0
  2817. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/table-head-generator.d.ts +0 -0
  2818. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/table-rows-generator.d.ts +0 -0
  2819. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/types.d.ts +0 -0
  2820. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/bar-x/gravity-charts.d.ts +0 -0
  2821. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/bar-x/highcharts.d.ts +0 -0
  2822. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/bar-x/index.d.ts +0 -0
  2823. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/bar-x/prepare-bar-x.d.ts +0 -0
  2824. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/bar-y/gravity-charts.d.ts +0 -0
  2825. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/bar-y/highcharts.d.ts +0 -0
  2826. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/bar-y/index.d.ts +0 -0
  2827. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/bar-y/prepare-bar-y-data.d.ts +0 -0
  2828. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/flat-table/helpers/background-settings/get-background-colors-map-by-continuous-column.d.ts +0 -0
  2829. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/flat-table/helpers/background-settings/get-flat-table-background-styles.d.ts +0 -0
  2830. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/flat-table/helpers/background-settings/index.d.ts +0 -0
  2831. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/flat-table/helpers/background-settings/types.d.ts +0 -0
  2832. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/flat-table/helpers/footer/index.d.ts +0 -0
  2833. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/flat-table/helpers/footer/types.d.ts +0 -0
  2834. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/flat-table/helpers/misc.d.ts +0 -0
  2835. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/flat-table/index.d.ts +0 -0
  2836. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/geopoint/constants.d.ts +0 -0
  2837. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/geopoint/index.d.ts +0 -0
  2838. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/geopoint/types.d.ts +0 -0
  2839. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/geopoint-with-cluster.d.ts +0 -0
  2840. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/geopolygon.d.ts +0 -0
  2841. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/heatmap.d.ts +0 -0
  2842. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/action-params.d.ts +0 -0
  2843. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/axis/addAxisFormatter.d.ts +0 -0
  2844. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/axis/addAxisFormatting.d.ts +0 -0
  2845. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/axis/get-axis-formatting.d.ts +0 -0
  2846. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/axis/getAxisType.d.ts +0 -0
  2847. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/axis/index.d.ts +0 -0
  2848. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/axis/isAxisLabelDateFormat.d.ts +0 -0
  2849. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/backgroundSettings/misc.d.ts +0 -0
  2850. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/barsSettings/index.d.ts +0 -0
  2851. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/barsSettings/types.d.ts +0 -0
  2852. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/colors.d.ts +0 -0
  2853. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/columnSettings.d.ts +0 -0
  2854. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/get-formatted-value.d.ts +0 -0
  2855. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/highcharts.d.ts +0 -0
  2856. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/layers.d.ts +0 -0
  2857. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/legend.d.ts +0 -0
  2858. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/segments.d.ts +0 -0
  2859. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/visualizations.d.ts +0 -0
  2860. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/gravity-charts.d.ts +0 -0
  2861. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/axis/getLayerPlaceholderWithItems.d.ts +0 -0
  2862. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/axis/types.d.ts +0 -0
  2863. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/color-helpers/colorizeByGradient.d.ts +0 -0
  2864. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/color-helpers/types.d.ts +0 -0
  2865. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/getSortedCategories.d.ts +0 -0
  2866. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/getSortedLineKeys.d.ts +0 -0
  2867. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/getXAxisValue.d.ts +0 -0
  2868. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/index.d.ts +0 -0
  2869. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/getColoredLineLegendTitle.d.ts +0 -0
  2870. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/helpers.d.ts +0 -0
  2871. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/mapDataToDimensionColoredLines.d.ts +0 -0
  2872. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/mapDataToLines.d.ts +0 -0
  2873. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/mapDataToMeasureColoredLines.d.ts +0 -0
  2874. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/prepareLines.d.ts +0 -0
  2875. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/types.d.ts +0 -0
  2876. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/segments/getSegmentName.d.ts +0 -0
  2877. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/segments/getSegmentsIndexInOrder.d.ts +0 -0
  2878. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/segments/getSegmentsList.d.ts +0 -0
  2879. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/segments/getSegmentsMap.d.ts +0 -0
  2880. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/segments/getSegmentsYAxis.d.ts +0 -0
  2881. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/segments/types.d.ts +0 -0
  2882. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/types.d.ts +0 -0
  2883. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/utils.d.ts +0 -0
  2884. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/highcharts.d.ts +0 -0
  2885. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/index.d.ts +0 -0
  2886. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/prepare-line-data.d.ts +0 -0
  2887. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/types.d.ts +0 -0
  2888. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line-time/index.d.ts +0 -0
  2889. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/metric/index.d.ts +0 -0
  2890. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/metric/utils.d.ts +0 -0
  2891. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/metric/variants/basic.d.ts +0 -0
  2892. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/metric/variants/markup.d.ts +0 -0
  2893. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/old-pivot-table/old-pivot-table.d.ts +0 -0
  2894. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/pie/gravity-charts.d.ts +0 -0
  2895. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/pie/highcharts.d.ts +0 -0
  2896. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/pie/index.d.ts +0 -0
  2897. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/pie/prepare-pie-data.d.ts +0 -0
  2898. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/pie/utils.d.ts +0 -0
  2899. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/polyline.d.ts +0 -0
  2900. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/scatter/gravity-charts.d.ts +0 -0
  2901. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/scatter/helpers/shape.d.ts +0 -0
  2902. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/scatter/helpers/tooltip.d.ts +0 -0
  2903. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/scatter/highcharts.d.ts +0 -0
  2904. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/scatter/index.d.ts +0 -0
  2905. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/scatter/prepare-scatter.d.ts +0 -0
  2906. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/scatter/types.d.ts +0 -0
  2907. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/treemap/gravity-charts.d.ts +0 -0
  2908. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/treemap/highcharts.d.ts +0 -0
  2909. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/treemap/index.d.ts +0 -0
  2910. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/types.d.ts +0 -0
  2911. /package/{types/server → server}/modes/charts/plugins/datalens/preparers/utils.d.ts +0 -0
  2912. /package/{types/server → server}/modes/charts/plugins/datalens/private-module.d.ts +0 -0
  2913. /package/{types/server → server}/modes/charts/plugins/datalens/types.d.ts +0 -0
  2914. /package/{types/server → server}/modes/charts/plugins/datalens/url/build-request-body/constants.d.ts +0 -0
  2915. /package/{types/server → server}/modes/charts/plugins/datalens/url/build-request-body/default-request.d.ts +0 -0
  2916. /package/{types/server → server}/modes/charts/plugins/datalens/url/build-request-body/index.d.ts +0 -0
  2917. /package/{types/server → server}/modes/charts/plugins/datalens/url/build-request-body/pivot-request/helpers/index.d.ts +0 -0
  2918. /package/{types/server → server}/modes/charts/plugins/datalens/url/build-request-body/pivot-request/helpers/totals.d.ts +0 -0
  2919. /package/{types/server → server}/modes/charts/plugins/datalens/url/build-request-body/pivot-request/helpers/types.d.ts +0 -0
  2920. /package/{types/server → server}/modes/charts/plugins/datalens/url/build-request-body/pivot-request/index.d.ts +0 -0
  2921. /package/{types/server → server}/modes/charts/plugins/datalens/url/build-sources.d.ts +0 -0
  2922. /package/{types/server → server}/modes/charts/plugins/datalens/url/helpers/fields.d.ts +0 -0
  2923. /package/{types/server → server}/modes/charts/plugins/datalens/url/helpers/filters.d.ts +0 -0
  2924. /package/{types/server → server}/modes/charts/plugins/datalens/url/helpers/index.d.ts +0 -0
  2925. /package/{types/server → server}/modes/charts/plugins/datalens/url/helpers/misc.d.ts +0 -0
  2926. /package/{types/server → server}/modes/charts/plugins/datalens/url/helpers/parameters.d.ts +0 -0
  2927. /package/{types/server → server}/modes/charts/plugins/datalens/url/helpers/table-settings.d.ts +0 -0
  2928. /package/{types/server → server}/modes/charts/plugins/datalens/url/types.d.ts +0 -0
  2929. /package/{types/server → server}/modes/charts/plugins/datalens/utils/axis-helpers.d.ts +0 -0
  2930. /package/{types/server → server}/modes/charts/plugins/datalens/utils/color-helpers.d.ts +0 -0
  2931. /package/{types/server → server}/modes/charts/plugins/datalens/utils/config-helpers.d.ts +0 -0
  2932. /package/{types/server → server}/modes/charts/plugins/datalens/utils/constants.d.ts +0 -0
  2933. /package/{types/server → server}/modes/charts/plugins/datalens/utils/export-helpers.d.ts +0 -0
  2934. /package/{types/server → server}/modes/charts/plugins/datalens/utils/geo-helpers.d.ts +0 -0
  2935. /package/{types/server → server}/modes/charts/plugins/datalens/utils/get-gradient-stops.d.ts +0 -0
  2936. /package/{types/server → server}/modes/charts/plugins/datalens/utils/hierarchy-helpers.d.ts +0 -0
  2937. /package/{types/server → server}/modes/charts/plugins/datalens/utils/markup-helpers.d.ts +0 -0
  2938. /package/{types/server → server}/modes/charts/plugins/datalens/utils/misc-helpers.d.ts +0 -0
  2939. /package/{types/server → server}/modes/charts/plugins/datalens/utils/pivot-table/totals.d.ts +0 -0
  2940. /package/{types/server → server}/modes/charts/plugins/datalens/utils/shape-helpers.d.ts +0 -0
  2941. /package/{types/server → server}/modes/charts/plugins/dataset/v2.d.ts +0 -0
  2942. /package/{types/server → server}/modes/charts/plugins/helpers/color-palettes.d.ts +0 -0
  2943. /package/{types/server → server}/modes/charts/plugins/helpers/misc.d.ts +0 -0
  2944. /package/{types/server → server}/modes/charts/plugins/logins-blacklist.d.ts +0 -0
  2945. /package/{types/server → server}/modes/charts/plugins/ql/index.d.ts +0 -0
  2946. /package/{types/server → server}/modes/charts/plugins/ql/module/chart-editor-module.d.ts +0 -0
  2947. /package/{types/server → server}/modes/charts/plugins/ql/module/config/build-chart-config.d.ts +0 -0
  2948. /package/{types/server → server}/modes/charts/plugins/ql/module/config/index.d.ts +0 -0
  2949. /package/{types/server → server}/modes/charts/plugins/ql/module/highcharts.d.ts +0 -0
  2950. /package/{types/server → server}/modes/charts/plugins/ql/module/js/build-graph.d.ts +0 -0
  2951. /package/{types/server → server}/modes/charts/plugins/ql/module/library-config/build-library-config.d.ts +0 -0
  2952. /package/{types/server → server}/modes/charts/plugins/ql/module/library-config/index.d.ts +0 -0
  2953. /package/{types/server → server}/modes/charts/plugins/ql/module/private-module.d.ts +0 -0
  2954. /package/{types/server → server}/modes/charts/plugins/ql/module/url/build-sources.d.ts +0 -0
  2955. /package/{types/server → server}/modes/charts/plugins/ql/module/url/index.d.ts +0 -0
  2956. /package/{types/server → server}/modes/charts/plugins/ql/module/url/types.d.ts +0 -0
  2957. /package/{types/server → server}/modes/charts/plugins/ql/preparers/line-time.d.ts +0 -0
  2958. /package/{types/server → server}/modes/charts/plugins/ql/preparers/line.d.ts +0 -0
  2959. /package/{types/server → server}/modes/charts/plugins/ql/preparers/metric.d.ts +0 -0
  2960. /package/{types/server → server}/modes/charts/plugins/ql/preparers/pie.d.ts +0 -0
  2961. /package/{types/server → server}/modes/charts/plugins/ql/preparers/preview-table.d.ts +0 -0
  2962. /package/{types/server → server}/modes/charts/plugins/ql/preparers/table.d.ts +0 -0
  2963. /package/{types/server → server}/modes/charts/plugins/ql/ql-chart-runner.d.ts +0 -0
  2964. /package/{types/server → server}/modes/charts/plugins/ql/types.d.ts +0 -0
  2965. /package/{types/server → server}/modes/charts/plugins/ql/utils/autofill-helpers.d.ts +0 -0
  2966. /package/{types/server → server}/modes/charts/plugins/ql/utils/colors.d.ts +0 -0
  2967. /package/{types/server → server}/modes/charts/plugins/ql/utils/connection.d.ts +0 -0
  2968. /package/{types/server → server}/modes/charts/plugins/ql/utils/constants.d.ts +0 -0
  2969. /package/{types/server → server}/modes/charts/plugins/ql/utils/identify-params.d.ts +0 -0
  2970. /package/{types/server → server}/modes/charts/plugins/ql/utils/migrate-helpers.d.ts +0 -0
  2971. /package/{types/server → server}/modes/charts/plugins/ql/utils/misc-helpers.d.ts +0 -0
  2972. /package/{types/server → server}/modes/charts/plugins/ql/utils/value-helpers.d.ts +0 -0
  2973. /package/{types/server → server}/modes/charts/plugins/ql/utils/visualization-utils.d.ts +0 -0
  2974. /package/{types/server → server}/modes/charts/plugins/ql/worker.d.ts +0 -0
  2975. /package/{types/server → server}/modes/charts/plugins/ql/yagr.d.ts +0 -0
  2976. /package/{types/server → server}/modes/charts/plugins/request-with-dataset/index.d.ts +0 -0
  2977. /package/{types/server → server}/modes/charts/plugins/request-with-dataset/middlewareAdapters/charts-with-dataset.d.ts +0 -0
  2978. /package/{types/server → server}/modes/charts/plugins/request-with-dataset/middlewareAdapters/controls-with-dataset.d.ts +0 -0
  2979. /package/{types/server → server}/modes/charts/plugins/request-with-dataset/request-dataset.d.ts +0 -0
  2980. /package/{types/server → server}/modes/charts/plugins/runner-key-adapter.d.ts +0 -0
  2981. /package/{types/server → server}/modes/charts/plugins/types.d.ts +0 -0
  2982. /package/{types/server → server}/modes/charts/telemetry.d.ts +0 -0
  2983. /package/{types/server → server}/modes/opensource/app.d.ts +0 -0
  2984. /package/{types/server → server}/modes/opensource/middlewares/index.d.ts +0 -0
  2985. /package/{types/server → server}/modes/opensource/middlewares/subrequest-headers.d.ts +0 -0
  2986. /package/{types/server → server}/modes/opensource/routes.d.ts +0 -0
  2987. /package/{types/server → server}/nodekit.d.ts +0 -0
  2988. /package/{types/server → server}/registry/index.d.ts +0 -0
  2989. /package/{types/server → server}/registry/units/common/auth-functions-map.d.ts +0 -0
  2990. /package/{types/server → server}/registry/units/common/functions-map.d.ts +0 -0
  2991. /package/{types/server → server}/registry/units/common/index.d.ts +0 -0
  2992. /package/{types/server → server}/registry/units/common/register.d.ts +0 -0
  2993. /package/{types/server → server}/registry/utils/register-app-plugins.d.ts +0 -0
  2994. /package/{types/server → server}/types/app-layout.d.ts +0 -0
  2995. /package/{types/server → server}/types/connections.d.ts +0 -0
  2996. /package/{types/server → server}/types/controllers.d.ts +0 -0
  2997. /package/{types/server → server}/types/gateway.d.ts +0 -0
  2998. /package/{types/server → server}/types/xlsxConverter.d.ts +0 -0
  2999. /package/{types/server → server}/utils/axios.d.ts +0 -0
  3000. /package/{types/server → server}/utils/env-utils.d.ts +0 -0
  3001. /package/{types/server → server}/utils/gateway.d.ts +0 -0
  3002. /package/{types/server → server}/utils/index.d.ts +0 -0
  3003. /package/{types/server → server}/utils/language.d.ts +0 -0
  3004. /package/{types/server → server}/utils/redis.d.ts +0 -0
  3005. /package/{types/server → server}/utils/routes.d.ts +0 -0
  3006. /package/{types/server → server}/utils/schema-validate.d.ts +0 -0
  3007. /package/{types/shared → shared}/components/auth/constants/cookie.d.ts +0 -0
  3008. /package/{types/shared → shared}/components/auth/constants/role.d.ts +0 -0
  3009. /package/{types/shared → shared}/components/auth/constants/token.d.ts +0 -0
  3010. /package/{types/shared → shared}/components/auth/constants/url.d.ts +0 -0
  3011. /package/{types/shared → shared}/components/auth/types/layout.d.ts +0 -0
  3012. /package/{types/shared → shared}/components/public-api/utils/index.d.ts +0 -0
  3013. /package/{types/shared → shared}/constants/api-v2.d.ts +0 -0
  3014. /package/{types/shared → shared}/constants/chartkit-handlers.d.ts +0 -0
  3015. /package/{types/shared → shared}/constants/charts.d.ts +0 -0
  3016. /package/{types/shared → shared}/constants/collections.d.ts +0 -0
  3017. /package/{types/shared → shared}/constants/colors/common/classic-20.d.ts +0 -0
  3018. /package/{types/shared → shared}/constants/colors/common/datalens.d.ts +0 -0
  3019. /package/{types/shared → shared}/constants/colors/common/default-20.d.ts +0 -0
  3020. /package/{types/shared → shared}/constants/colors/common/emerald-20.d.ts +0 -0
  3021. /package/{types/shared → shared}/constants/colors/common/golden-20.d.ts +0 -0
  3022. /package/{types/shared → shared}/constants/colors/common/neutral-20.d.ts +0 -0
  3023. /package/{types/shared → shared}/constants/colors/common/oceanic-20.d.ts +0 -0
  3024. /package/{types/shared → shared}/constants/colors/common/traffic-light-9.d.ts +0 -0
  3025. /package/{types/shared → shared}/constants/colors/index.d.ts +0 -0
  3026. /package/{types/shared → shared}/constants/colors/tableau/blue-red-12.d.ts +0 -0
  3027. /package/{types/shared → shared}/constants/colors/tableau/blue-red-6.d.ts +0 -0
  3028. /package/{types/shared → shared}/constants/colors/tableau/color-blind-10.d.ts +0 -0
  3029. /package/{types/shared → shared}/constants/colors/tableau/gray-5.d.ts +0 -0
  3030. /package/{types/shared → shared}/constants/colors/tableau/green-orange-12.d.ts +0 -0
  3031. /package/{types/shared → shared}/constants/colors/tableau/green-orange-6.d.ts +0 -0
  3032. /package/{types/shared → shared}/constants/colors/tableau/purpure-gray-12.d.ts +0 -0
  3033. /package/{types/shared → shared}/constants/colors/tableau/purpure-gray-6.d.ts +0 -0
  3034. /package/{types/shared → shared}/constants/colors/tableau/tableau-10-light.d.ts +0 -0
  3035. /package/{types/shared → shared}/constants/colors/tableau/tableau-10-medium.d.ts +0 -0
  3036. /package/{types/shared → shared}/constants/colors/tableau/tableau-10.d.ts +0 -0
  3037. /package/{types/shared → shared}/constants/colors/tableau/tableau-20.d.ts +0 -0
  3038. /package/{types/shared → shared}/constants/colors/tableau/traffic-light.d.ts +0 -0
  3039. /package/{types/shared → shared}/constants/colors/types.d.ts +0 -0
  3040. /package/{types/shared → shared}/constants/common.d.ts +0 -0
  3041. /package/{types/shared → shared}/constants/connections.d.ts +0 -0
  3042. /package/{types/shared → shared}/constants/cookie.d.ts +0 -0
  3043. /package/{types/shared → shared}/constants/dash.d.ts +0 -0
  3044. /package/{types/shared → shared}/constants/datasets.d.ts +0 -0
  3045. /package/{types/shared → shared}/constants/datepicker/relative-datepicker.d.ts +0 -0
  3046. /package/{types/shared → shared}/constants/error/index.d.ts +0 -0
  3047. /package/{types/shared → shared}/constants/error-codes.d.ts +0 -0
  3048. /package/{types/shared → shared}/constants/exports.d.ts +0 -0
  3049. /package/{types/shared → shared}/constants/gradients/default.d.ts +0 -0
  3050. /package/{types/shared → shared}/constants/gradients/index.d.ts +0 -0
  3051. /package/{types/shared → shared}/constants/gradients/three-point/blue-gray-red.d.ts +0 -0
  3052. /package/{types/shared → shared}/constants/gradients/three-point/blue-yellow-red.d.ts +0 -0
  3053. /package/{types/shared → shared}/constants/gradients/three-point/orange-blue-green.d.ts +0 -0
  3054. /package/{types/shared → shared}/constants/gradients/three-point/orange-gray-blue.d.ts +0 -0
  3055. /package/{types/shared → shared}/constants/gradients/three-point/orange-violet-blue.d.ts +0 -0
  3056. /package/{types/shared → shared}/constants/gradients/three-point/pink-gray-green.d.ts +0 -0
  3057. /package/{types/shared → shared}/constants/gradients/three-point/red-orange-green.d.ts +0 -0
  3058. /package/{types/shared → shared}/constants/gradients/three-point/traffic-light.d.ts +0 -0
  3059. /package/{types/shared → shared}/constants/gradients/three-point/violet-blue-green.d.ts +0 -0
  3060. /package/{types/shared → shared}/constants/gradients/three-point/yellow-green-blue.d.ts +0 -0
  3061. /package/{types/shared → shared}/constants/gradients/three-point-gradients.d.ts +0 -0
  3062. /package/{types/shared → shared}/constants/gradients/two-point/blue.d.ts +0 -0
  3063. /package/{types/shared → shared}/constants/gradients/two-point/cyan.d.ts +0 -0
  3064. /package/{types/shared → shared}/constants/gradients/two-point/golden.d.ts +0 -0
  3065. /package/{types/shared → shared}/constants/gradients/two-point/gray.d.ts +0 -0
  3066. /package/{types/shared → shared}/constants/gradients/two-point/green-blue.d.ts +0 -0
  3067. /package/{types/shared → shared}/constants/gradients/two-point/green.d.ts +0 -0
  3068. /package/{types/shared → shared}/constants/gradients/two-point/oceanic.d.ts +0 -0
  3069. /package/{types/shared → shared}/constants/gradients/two-point/orange-yellow.d.ts +0 -0
  3070. /package/{types/shared → shared}/constants/gradients/two-point/red-blue.d.ts +0 -0
  3071. /package/{types/shared → shared}/constants/gradients/two-point/red.d.ts +0 -0
  3072. /package/{types/shared → shared}/constants/gradients/two-point/violet-orange.d.ts +0 -0
  3073. /package/{types/shared → shared}/constants/gradients/two-point/violet.d.ts +0 -0
  3074. /package/{types/shared → shared}/constants/gradients/two-point/yellow.d.ts +0 -0
  3075. /package/{types/shared → shared}/constants/gradients/two-point-gradients.d.ts +0 -0
  3076. /package/{types/shared → shared}/constants/header.d.ts +0 -0
  3077. /package/{types/shared → shared}/constants/index.d.ts +0 -0
  3078. /package/{types/shared → shared}/constants/markdown.d.ts +0 -0
  3079. /package/{types/shared → shared}/constants/markup.d.ts +0 -0
  3080. /package/{types/shared → shared}/constants/navigation.d.ts +0 -0
  3081. /package/{types/shared → shared}/constants/old-schema.d.ts +0 -0
  3082. /package/{types/shared → shared}/constants/placeholder.d.ts +0 -0
  3083. /package/{types/shared → shared}/constants/print.d.ts +0 -0
  3084. /package/{types/shared → shared}/constants/qa/action-panel.d.ts +0 -0
  3085. /package/{types/shared → shared}/constants/qa/chart.d.ts +0 -0
  3086. /package/{types/shared → shared}/constants/qa/collections.d.ts +0 -0
  3087. /package/{types/shared → shared}/constants/qa/components.d.ts +0 -0
  3088. /package/{types/shared → shared}/constants/qa/connections.d.ts +0 -0
  3089. /package/{types/shared → shared}/constants/qa/control.d.ts +0 -0
  3090. /package/{types/shared → shared}/constants/qa/dash.d.ts +0 -0
  3091. /package/{types/shared → shared}/constants/qa/datasets.d.ts +0 -0
  3092. /package/{types/shared → shared}/constants/qa/dl-navigation.d.ts +0 -0
  3093. /package/{types/shared → shared}/constants/qa/field-editor.d.ts +0 -0
  3094. /package/{types/shared → shared}/constants/qa/index.d.ts +0 -0
  3095. /package/{types/shared → shared}/constants/qa/ql.d.ts +0 -0
  3096. /package/{types/shared → shared}/constants/qa/settings.d.ts +0 -0
  3097. /package/{types/shared → shared}/constants/qa/sign-in.d.ts +0 -0
  3098. /package/{types/shared → shared}/constants/qa/uikit.d.ts +0 -0
  3099. /package/{types/shared → shared}/constants/qa/visualization.d.ts +0 -0
  3100. /package/{types/shared → shared}/constants/qa/wizard.d.ts +0 -0
  3101. /package/{types/shared → shared}/constants/qa/workbooks.d.ts +0 -0
  3102. /package/{types/shared → shared}/constants/ql.d.ts +0 -0
  3103. /package/{types/shared → shared}/constants/shapes/index.d.ts +0 -0
  3104. /package/{types/shared → shared}/constants/shapes/lines/index.d.ts +0 -0
  3105. /package/{types/shared → shared}/constants/shapes/points/index.d.ts +0 -0
  3106. /package/{types/shared → shared}/constants/themes.d.ts +0 -0
  3107. /package/{types/shared → shared}/constants/timeout.d.ts +0 -0
  3108. /package/{types/shared → shared}/constants/ui-sandbox.d.ts +0 -0
  3109. /package/{types/shared → shared}/constants/url.d.ts +0 -0
  3110. /package/{types/shared → shared}/constants/user.d.ts +0 -0
  3111. /package/{types/shared → shared}/constants/visualization.d.ts +0 -0
  3112. /package/{types/shared → shared}/constants/widgets.d.ts +0 -0
  3113. /package/{types/shared → shared}/constants/wizard.d.ts +0 -0
  3114. /package/{types/shared → shared}/constants/workbook-transfer.d.ts +0 -0
  3115. /package/{types/shared → shared}/constants/workbooks.d.ts +0 -0
  3116. /package/{types/shared → shared}/constants/yfm.d.ts +0 -0
  3117. /package/{types/shared → shared}/endpoints/constants/index.d.ts +0 -0
  3118. /package/{types/shared → shared}/endpoints/constants/opensource.d.ts +0 -0
  3119. /package/{types/shared → shared}/endpoints/index.d.ts +0 -0
  3120. /package/{types/shared → shared}/endpoints/schema/index.d.ts +0 -0
  3121. /package/{types/shared → shared}/endpoints/schema/opensource.d.ts +0 -0
  3122. /package/{types/shared → shared}/endpoints/sources/index.d.ts +0 -0
  3123. /package/{types/shared → shared}/endpoints/sources/opensource.d.ts +0 -0
  3124. /package/{types/shared → shared}/endpoints/sources/types.d.ts +0 -0
  3125. /package/{types/shared → shared}/endpoints/types.d.ts +0 -0
  3126. /package/{types/shared → shared}/endpoints/utils.d.ts +0 -0
  3127. /package/{types/shared → shared}/index.d.ts +0 -0
  3128. /package/{types/shared → shared}/modules/bi-api/index.d.ts +0 -0
  3129. /package/{types/shared → shared}/modules/bi-api/mappers/index.d.ts +0 -0
  3130. /package/{types/shared → shared}/modules/bi-api/mappers/v2.d.ts +0 -0
  3131. /package/{types/shared → shared}/modules/charts-shared.d.ts +0 -0
  3132. /package/{types/shared → shared}/modules/colors/common-helpers.d.ts +0 -0
  3133. /package/{types/shared → shared}/modules/colors/distincts-helpers.d.ts +0 -0
  3134. /package/{types/shared → shared}/modules/config/ql/index.d.ts +0 -0
  3135. /package/{types/shared → shared}/modules/config/ql/mapQlConfigToLatestVersion.d.ts +0 -0
  3136. /package/{types/shared → shared}/modules/config/ql/v1/mapUndefinedConfigToV1.d.ts +0 -0
  3137. /package/{types/shared → shared}/modules/config/ql/v2/mapV1ConfigToV2.d.ts +0 -0
  3138. /package/{types/shared → shared}/modules/config/ql/v3/mapV2ConfigToV3.d.ts +0 -0
  3139. /package/{types/shared → shared}/modules/config/ql/v4/mapV3ConfigToV4.d.ts +0 -0
  3140. /package/{types/shared → shared}/modules/config/ql/v5/mapV4ConfigToV5.d.ts +0 -0
  3141. /package/{types/shared → shared}/modules/config/ql/v6/mapV5ConfigToV6.d.ts +0 -0
  3142. /package/{types/shared → shared}/modules/config/ql/v7/mapV6ConfigToV7.d.ts +0 -0
  3143. /package/{types/shared → shared}/modules/config/utils.d.ts +0 -0
  3144. /package/{types/shared → shared}/modules/config/wizard/index.d.ts +0 -0
  3145. /package/{types/shared → shared}/modules/config/wizard/mapChartsConfigToLatestVersion.d.ts +0 -0
  3146. /package/{types/shared → shared}/modules/config/wizard/mocks/v4.mock.d.ts +0 -0
  3147. /package/{types/shared → shared}/modules/config/wizard/v1/mapV1ConfigToV2.d.ts +0 -0
  3148. /package/{types/shared → shared}/modules/config/wizard/v10/mapV10ConfigToV11.d.ts +0 -0
  3149. /package/{types/shared → shared}/modules/config/wizard/v11/mapV11ConfigToV12.d.ts +0 -0
  3150. /package/{types/shared → shared}/modules/config/wizard/v12/mapV12ConfigToV13.d.ts +0 -0
  3151. /package/{types/shared → shared}/modules/config/wizard/v13/mapV13ConfigToV14.d.ts +0 -0
  3152. /package/{types/shared → shared}/modules/config/wizard/v14/mapV14ConfigToV15.d.ts +0 -0
  3153. /package/{types/shared → shared}/modules/config/wizard/v2/mapV2ConfigToV3.d.ts +0 -0
  3154. /package/{types/shared → shared}/modules/config/wizard/v3/mapV3ConfigToV4.d.ts +0 -0
  3155. /package/{types/shared → shared}/modules/config/wizard/v4/mapV4ConfigToV5.d.ts +0 -0
  3156. /package/{types/shared → shared}/modules/config/wizard/v5/mapV5ConfigToV6.d.ts +0 -0
  3157. /package/{types/shared → shared}/modules/config/wizard/v6/mapV6ConfigToV7.d.ts +0 -0
  3158. /package/{types/shared → shared}/modules/config/wizard/v7/mapV7ConfigToV8.d.ts +0 -0
  3159. /package/{types/shared → shared}/modules/config/wizard/v8/mapV8ConfigToV9.d.ts +0 -0
  3160. /package/{types/shared → shared}/modules/config/wizard/v9/mapV9ConfigToV10.d.ts +0 -0
  3161. /package/{types/shared → shared}/modules/control/typed-query-helpers.d.ts +0 -0
  3162. /package/{types/shared → shared}/modules/dash-scheme-converter.d.ts +0 -0
  3163. /package/{types/shared → shared}/modules/entry.d.ts +0 -0
  3164. /package/{types/shared → shared}/modules/fields.d.ts +0 -0
  3165. /package/{types/shared → shared}/modules/format-units/formatUnit.d.ts +0 -0
  3166. /package/{types/shared → shared}/modules/format-units/i18n/en.json.d.ts +0 -0
  3167. /package/{types/shared → shared}/modules/format-units/i18n/i18n.d.ts +0 -0
  3168. /package/{types/shared → shared}/modules/format-units/i18n/ru.json.d.ts +0 -0
  3169. /package/{types/shared → shared}/modules/format-units/index.d.ts +0 -0
  3170. /package/{types/shared → shared}/modules/format-units/types.d.ts +0 -0
  3171. /package/{types/shared → shared}/modules/index.d.ts +0 -0
  3172. /package/{types/shared → shared}/modules/language.d.ts +0 -0
  3173. /package/{types/shared → shared}/modules/markdown/emoji-defs.d.ts +0 -0
  3174. /package/{types/shared → shared}/modules/markdown/markdown-plugins/unify-terms.d.ts +0 -0
  3175. /package/{types/shared → shared}/modules/markdown/markdown.d.ts +0 -0
  3176. /package/{types/shared → shared}/modules/markup.d.ts +0 -0
  3177. /package/{types/shared → shared}/modules/qa-helpers.d.ts +0 -0
  3178. /package/{types/shared → shared}/modules/ql-helpers.d.ts +0 -0
  3179. /package/{types/shared → shared}/modules/sleep.d.ts +0 -0
  3180. /package/{types/shared → shared}/modules/slugify.d.ts +0 -0
  3181. /package/{types/shared → shared}/modules/tenant.d.ts +0 -0
  3182. /package/{types/shared → shared}/modules/transliterate.d.ts +0 -0
  3183. /package/{types/shared → shared}/modules/typed-query-api/helpers/parameters.d.ts +0 -0
  3184. /package/{types/shared → shared}/modules/typed-query-api/index.d.ts +0 -0
  3185. /package/{types/shared → shared}/modules/typed-query-api/mappers/parameters.d.ts +0 -0
  3186. /package/{types/shared → shared}/modules/url.d.ts +0 -0
  3187. /package/{types/shared → shared}/modules/user.d.ts +0 -0
  3188. /package/{types/shared → shared}/modules/visualization/placeholder.d.ts +0 -0
  3189. /package/{types/shared → shared}/modules/wizard/axis-mode.d.ts +0 -0
  3190. /package/{types/shared → shared}/modules/wizard/axis-settings.d.ts +0 -0
  3191. /package/{types/shared → shared}/modules/wizard/config.d.ts +0 -0
  3192. /package/{types/shared → shared}/modules/wizard/index.d.ts +0 -0
  3193. /package/{types/shared → shared}/modules/wizard-helpers.d.ts +0 -0
  3194. /package/{types/shared → shared}/schema/auth/actions.d.ts +0 -0
  3195. /package/{types/shared → shared}/schema/auth/index.d.ts +0 -0
  3196. /package/{types/shared → shared}/schema/auth/types/common.d.ts +0 -0
  3197. /package/{types/shared → shared}/schema/auth/types/users.d.ts +0 -0
  3198. /package/{types/shared → shared}/schema/auth-schema/auth/actions.d.ts +0 -0
  3199. /package/{types/shared → shared}/schema/auth-schema/auth/index.d.ts +0 -0
  3200. /package/{types/shared → shared}/schema/auth-schema/auth/types.d.ts +0 -0
  3201. /package/{types/shared → shared}/schema/bi/actions/connections.d.ts +0 -0
  3202. /package/{types/shared → shared}/schema/bi/actions/datasets.d.ts +0 -0
  3203. /package/{types/shared → shared}/schema/bi/actions/index.d.ts +0 -0
  3204. /package/{types/shared → shared}/schema/bi/actions/oauth.d.ts +0 -0
  3205. /package/{types/shared → shared}/schema/bi/helpers/datasets.d.ts +0 -0
  3206. /package/{types/shared → shared}/schema/bi/helpers/index.d.ts +0 -0
  3207. /package/{types/shared → shared}/schema/bi/index.d.ts +0 -0
  3208. /package/{types/shared → shared}/schema/bi/schemas/connections.d.ts +0 -0
  3209. /package/{types/shared → shared}/schema/bi/schemas/datasets.d.ts +0 -0
  3210. /package/{types/shared → shared}/schema/bi/schemas/index.d.ts +0 -0
  3211. /package/{types/shared → shared}/schema/bi/types/common.d.ts +0 -0
  3212. /package/{types/shared → shared}/schema/bi/types/connections.d.ts +0 -0
  3213. /package/{types/shared → shared}/schema/bi/types/datasets.d.ts +0 -0
  3214. /package/{types/shared → shared}/schema/bi/types/forms.d.ts +0 -0
  3215. /package/{types/shared → shared}/schema/bi/types/index.d.ts +0 -0
  3216. /package/{types/shared → shared}/schema/bi/types/oauth.d.ts +0 -0
  3217. /package/{types/shared → shared}/schema/bi-converter/actions/index.d.ts +0 -0
  3218. /package/{types/shared → shared}/schema/bi-converter/index.d.ts +0 -0
  3219. /package/{types/shared → shared}/schema/bi-converter/types/index.d.ts +0 -0
  3220. /package/{types/shared → shared}/schema/extensions/actions/iam-access-dialog.d.ts +0 -0
  3221. /package/{types/shared → shared}/schema/extensions/actions/index.d.ts +0 -0
  3222. /package/{types/shared → shared}/schema/extensions/index.d.ts +0 -0
  3223. /package/{types/shared → shared}/schema/extensions/types/iam-access-dialog.d.ts +0 -0
  3224. /package/{types/shared → shared}/schema/extensions/types/index.d.ts +0 -0
  3225. /package/{types/shared → shared}/schema/gateway-utils.d.ts +0 -0
  3226. /package/{types/shared → shared}/schema/googleapis/actions.d.ts +0 -0
  3227. /package/{types/shared → shared}/schema/meta-manager/actions/export.d.ts +0 -0
  3228. /package/{types/shared → shared}/schema/meta-manager/actions/import.d.ts +0 -0
  3229. /package/{types/shared → shared}/schema/meta-manager/actions/index.d.ts +0 -0
  3230. /package/{types/shared → shared}/schema/meta-manager/index.d.ts +0 -0
  3231. /package/{types/shared → shared}/schema/meta-manager/types/export.d.ts +0 -0
  3232. /package/{types/shared → shared}/schema/meta-manager/types/import.d.ts +0 -0
  3233. /package/{types/shared → shared}/schema/meta-manager/types/index.d.ts +0 -0
  3234. /package/{types/shared → shared}/schema/mix/actions/dash/delete-dashboard.d.ts +0 -0
  3235. /package/{types/shared → shared}/schema/mix/actions/editor.d.ts +0 -0
  3236. /package/{types/shared → shared}/schema/mix/actions/entries.d.ts +0 -0
  3237. /package/{types/shared → shared}/schema/mix/actions/markdown.d.ts +0 -0
  3238. /package/{types/shared → shared}/schema/mix/actions/navigation.d.ts +0 -0
  3239. /package/{types/shared → shared}/schema/mix/actions/ql/create-ql-chart.d.ts +0 -0
  3240. /package/{types/shared → shared}/schema/mix/actions/ql/delete-ql-chart.d.ts +0 -0
  3241. /package/{types/shared → shared}/schema/mix/actions/ql/get-ql-chart.d.ts +0 -0
  3242. /package/{types/shared → shared}/schema/mix/actions/ql/index.d.ts +0 -0
  3243. /package/{types/shared → shared}/schema/mix/actions/ql/update-ql-chart.d.ts +0 -0
  3244. /package/{types/shared → shared}/schema/mix/actions/wizard/create-wizard-chart.d.ts +0 -0
  3245. /package/{types/shared → shared}/schema/mix/actions/wizard/delete-wizard-chart.d.ts +0 -0
  3246. /package/{types/shared → shared}/schema/mix/actions/wizard/get-wizard-chart.d.ts +0 -0
  3247. /package/{types/shared → shared}/schema/mix/actions/wizard/index.d.ts +0 -0
  3248. /package/{types/shared → shared}/schema/mix/actions/wizard/update-wizard-chart.d.ts +0 -0
  3249. /package/{types/shared → shared}/schema/mix/helpers/dash/index.d.ts +0 -0
  3250. /package/{types/shared → shared}/schema/mix/helpers/dash/migrate-dash-to-v1.d.ts +0 -0
  3251. /package/{types/shared → shared}/schema/mix/helpers/editor/index.d.ts +0 -0
  3252. /package/{types/shared → shared}/schema/mix/helpers/editor/validation.d.ts +0 -0
  3253. /package/{types/shared → shared}/schema/mix/helpers/entries.d.ts +0 -0
  3254. /package/{types/shared → shared}/schema/mix/helpers/index.d.ts +0 -0
  3255. /package/{types/shared → shared}/schema/mix/helpers/validation.d.ts +0 -0
  3256. /package/{types/shared → shared}/schema/mix/schemas/dash/create-dashboard-v1.d.ts +0 -0
  3257. /package/{types/shared → shared}/schema/mix/schemas/dash/dash-v1.d.ts +0 -0
  3258. /package/{types/shared → shared}/schema/mix/schemas/dash/delete-dashboard.d.ts +0 -0
  3259. /package/{types/shared → shared}/schema/mix/schemas/dash/get-dashboard-v1.d.ts +0 -0
  3260. /package/{types/shared → shared}/schema/mix/schemas/dash/update-dashboard-v1.d.ts +0 -0
  3261. /package/{types/shared → shared}/schema/mix/schemas/ql.d.ts +0 -0
  3262. /package/{types/shared → shared}/schema/mix/schemas/wizard.d.ts +0 -0
  3263. /package/{types/shared → shared}/schema/mix/types/dash/index.d.ts +0 -0
  3264. /package/{types/shared → shared}/schema/mix/types/entries.d.ts +0 -0
  3265. /package/{types/shared → shared}/schema/mix/types/index.d.ts +0 -0
  3266. /package/{types/shared → shared}/schema/mix/types/markdown.d.ts +0 -0
  3267. /package/{types/shared → shared}/schema/mix/types/navigation.d.ts +0 -0
  3268. /package/{types/shared → shared}/schema/mix/types/ql.d.ts +0 -0
  3269. /package/{types/shared → shared}/schema/mix/types/wizard.d.ts +0 -0
  3270. /package/{types/shared → shared}/schema/stat-api/types/index.d.ts +0 -0
  3271. /package/{types/shared → shared}/schema/types.d.ts +0 -0
  3272. /package/{types/shared → shared}/schema/us/actions/collections/create-collection.d.ts +0 -0
  3273. /package/{types/shared → shared}/schema/us/actions/collections/delete-collection.d.ts +0 -0
  3274. /package/{types/shared → shared}/schema/us/actions/collections/delete-collections.d.ts +0 -0
  3275. /package/{types/shared → shared}/schema/us/actions/collections/get-collection-breadcrumbs.d.ts +0 -0
  3276. /package/{types/shared → shared}/schema/us/actions/collections/get-collection.d.ts +0 -0
  3277. /package/{types/shared → shared}/schema/us/actions/collections/get-root-collection-permissions.d.ts +0 -0
  3278. /package/{types/shared → shared}/schema/us/actions/collections/get-structure-items.d.ts +0 -0
  3279. /package/{types/shared → shared}/schema/us/actions/collections/index.d.ts +0 -0
  3280. /package/{types/shared → shared}/schema/us/actions/collections/move-collection.d.ts +0 -0
  3281. /package/{types/shared → shared}/schema/us/actions/collections/move-collections.d.ts +0 -0
  3282. /package/{types/shared → shared}/schema/us/actions/collections/update-collection.d.ts +0 -0
  3283. /package/{types/shared → shared}/schema/us/actions/color-palettes.d.ts +0 -0
  3284. /package/{types/shared → shared}/schema/us/actions/editor.d.ts +0 -0
  3285. /package/{types/shared → shared}/schema/us/actions/embeds.d.ts +0 -0
  3286. /package/{types/shared → shared}/schema/us/actions/entries/create-entry.d.ts +0 -0
  3287. /package/{types/shared → shared}/schema/us/actions/entries/get-entries-relations.d.ts +0 -0
  3288. /package/{types/shared → shared}/schema/us/actions/entries/get-entry.d.ts +0 -0
  3289. /package/{types/shared → shared}/schema/us/actions/entries/update-entry.d.ts +0 -0
  3290. /package/{types/shared → shared}/schema/us/actions/favorites.d.ts +0 -0
  3291. /package/{types/shared → shared}/schema/us/actions/locks.d.ts +0 -0
  3292. /package/{types/shared → shared}/schema/us/actions/operations.d.ts +0 -0
  3293. /package/{types/shared → shared}/schema/us/actions/presets.d.ts +0 -0
  3294. /package/{types/shared → shared}/schema/us/actions/private.d.ts +0 -0
  3295. /package/{types/shared → shared}/schema/us/actions/state.d.ts +0 -0
  3296. /package/{types/shared → shared}/schema/us/actions/template.d.ts +0 -0
  3297. /package/{types/shared → shared}/schema/us/actions/tenant.d.ts +0 -0
  3298. /package/{types/shared → shared}/schema/us/actions/user.d.ts +0 -0
  3299. /package/{types/shared → shared}/schema/us/actions/workbooks/copy-workbook.d.ts +0 -0
  3300. /package/{types/shared → shared}/schema/us/actions/workbooks/create-workbook.d.ts +0 -0
  3301. /package/{types/shared → shared}/schema/us/actions/workbooks/delete-workbook.d.ts +0 -0
  3302. /package/{types/shared → shared}/schema/us/actions/workbooks/delete-workbooks.d.ts +0 -0
  3303. /package/{types/shared → shared}/schema/us/actions/workbooks/get-workbook-entries.d.ts +0 -0
  3304. /package/{types/shared → shared}/schema/us/actions/workbooks/get-workbook-shared-entries.d.ts +0 -0
  3305. /package/{types/shared → shared}/schema/us/actions/workbooks/get-workbook.d.ts +0 -0
  3306. /package/{types/shared → shared}/schema/us/actions/workbooks/migrate-entries-to-workbook-by-copy.d.ts +0 -0
  3307. /package/{types/shared → shared}/schema/us/actions/workbooks/migrate-entries-to-workbook-by-transfer.d.ts +0 -0
  3308. /package/{types/shared → shared}/schema/us/actions/workbooks/move-workbook.d.ts +0 -0
  3309. /package/{types/shared → shared}/schema/us/actions/workbooks/move-workbooks.d.ts +0 -0
  3310. /package/{types/shared → shared}/schema/us/actions/workbooks/update-workbook.d.ts +0 -0
  3311. /package/{types/shared → shared}/schema/us/schemas/collections/index.d.ts +0 -0
  3312. /package/{types/shared → shared}/schema/us/schemas/operation/index.d.ts +0 -0
  3313. /package/{types/shared → shared}/schema/us/schemas/workbooks/index.d.ts +0 -0
  3314. /package/{types/shared → shared}/schema/us/types/access-bindings.d.ts +0 -0
  3315. /package/{types/shared → shared}/schema/us/types/collections.d.ts +0 -0
  3316. /package/{types/shared → shared}/schema/us/types/color-palettes.d.ts +0 -0
  3317. /package/{types/shared → shared}/schema/us/types/common.d.ts +0 -0
  3318. /package/{types/shared → shared}/schema/us/types/editor.d.ts +0 -0
  3319. /package/{types/shared → shared}/schema/us/types/embeds.d.ts +0 -0
  3320. /package/{types/shared → shared}/schema/us/types/entries.d.ts +0 -0
  3321. /package/{types/shared → shared}/schema/us/types/favorites.d.ts +0 -0
  3322. /package/{types/shared → shared}/schema/us/types/fields.d.ts +0 -0
  3323. /package/{types/shared → shared}/schema/us/types/index.d.ts +0 -0
  3324. /package/{types/shared → shared}/schema/us/types/locks.d.ts +0 -0
  3325. /package/{types/shared → shared}/schema/us/types/operations.d.ts +0 -0
  3326. /package/{types/shared → shared}/schema/us/types/presets.d.ts +0 -0
  3327. /package/{types/shared → shared}/schema/us/types/private.d.ts +0 -0
  3328. /package/{types/shared → shared}/schema/us/types/sort.d.ts +0 -0
  3329. /package/{types/shared → shared}/schema/us/types/state.d.ts +0 -0
  3330. /package/{types/shared → shared}/schema/us/types/template.d.ts +0 -0
  3331. /package/{types/shared → shared}/schema/us/types/tenant.d.ts +0 -0
  3332. /package/{types/shared → shared}/schema/us/types/workbooks.d.ts +0 -0
  3333. /package/{types/shared → shared}/schema/us-private/actions/entries.d.ts +0 -0
  3334. /package/{types/shared → shared}/schema/us-private/actions/index.d.ts +0 -0
  3335. /package/{types/shared → shared}/schema/us-private/actions/tenant.d.ts +0 -0
  3336. /package/{types/shared → shared}/schema/us-private/index.d.ts +0 -0
  3337. /package/{types/shared → shared}/schema/us-private/types/entries.d.ts +0 -0
  3338. /package/{types/shared → shared}/schema/us-private/types/index.d.ts +0 -0
  3339. /package/{types/shared → shared}/schema/utils.d.ts +0 -0
  3340. /package/{types/shared → shared}/server/axios.d.ts +0 -0
  3341. /package/{types/shared → shared}/types/bi-api/index.d.ts +0 -0
  3342. /package/{types/shared → shared}/types/bi-api/v2.d.ts +0 -0
  3343. /package/{types/shared → shared}/types/chartkit/common.d.ts +0 -0
  3344. /package/{components/FormattedValue.js → shared/types/chartkit/common.js} +0 -0
  3345. /package/{types/shared → shared}/types/chartkit/dl-chartkit.d.ts +0 -0
  3346. /package/{types/shared → shared}/types/chartkit/gravity-charts/index.d.ts +0 -0
  3347. /package/{types/shared → shared}/types/chartkit/gravity-charts/scatter.d.ts +0 -0
  3348. /package/{types/shared → shared}/types/chartkit/index.d.ts +0 -0
  3349. /package/{types/shared → shared}/types/chartkit/table.d.ts +0 -0
  3350. /package/{types/shared → shared}/types/charts.d.ts +0 -0
  3351. /package/{types/shared → shared}/types/color-palettes.d.ts +0 -0
  3352. /package/{types/shared → shared}/types/common-update.d.ts +0 -0
  3353. /package/{types/shared → shared}/types/common.d.ts +0 -0
  3354. /package/{types/shared → shared}/types/config/ql/index.d.ts +0 -0
  3355. /package/{types/shared → shared}/types/config/ql/v1.d.ts +0 -0
  3356. /package/{types/shared → shared}/types/config/ql/v2.d.ts +0 -0
  3357. /package/{types/shared → shared}/types/config/ql/v3.d.ts +0 -0
  3358. /package/{types/shared → shared}/types/config/ql/v4.d.ts +0 -0
  3359. /package/{types/shared → shared}/types/config/ql/v5.d.ts +0 -0
  3360. /package/{types/shared → shared}/types/config/ql/v6.d.ts +0 -0
  3361. /package/{types/shared → shared}/types/config/ql/v7.d.ts +0 -0
  3362. /package/{types/shared → shared}/types/config/wizard/index.d.ts +0 -0
  3363. /package/{types/shared → shared}/types/config/wizard/v10.d.ts +0 -0
  3364. /package/{types/shared → shared}/types/config/wizard/v11.d.ts +0 -0
  3365. /package/{types/shared → shared}/types/config/wizard/v12.d.ts +0 -0
  3366. /package/{types/shared → shared}/types/config/wizard/v13.d.ts +0 -0
  3367. /package/{types/shared → shared}/types/config/wizard/v14.d.ts +0 -0
  3368. /package/{types/shared → shared}/types/config/wizard/v15.d.ts +0 -0
  3369. /package/{types/shared → shared}/types/config/wizard/v2.d.ts +0 -0
  3370. /package/{types/shared → shared}/types/config/wizard/v3.d.ts +0 -0
  3371. /package/{types/shared → shared}/types/config/wizard/v4.d.ts +0 -0
  3372. /package/{types/shared → shared}/types/config/wizard/v5.d.ts +0 -0
  3373. /package/{types/shared → shared}/types/config/wizard/v6.d.ts +0 -0
  3374. /package/{types/shared → shared}/types/config/wizard/v7.d.ts +0 -0
  3375. /package/{types/shared → shared}/types/config/wizard/v8.d.ts +0 -0
  3376. /package/{types/shared → shared}/types/config/wizard/v9.d.ts +0 -0
  3377. /package/{types/shared → shared}/types/configs/index.d.ts +0 -0
  3378. /package/{types/shared → shared}/types/connections.d.ts +0 -0
  3379. /package/{types/shared → shared}/types/dash.d.ts +0 -0
  3380. /package/{types/shared → shared}/types/dataset.d.ts +0 -0
  3381. /package/{types/shared → shared}/types/entry.d.ts +0 -0
  3382. /package/{types/shared → shared}/types/feature.d.ts +0 -0
  3383. /package/{types/shared → shared}/types/formatting.d.ts +0 -0
  3384. /package/{types/shared → shared}/types/index.d.ts +0 -0
  3385. /package/{types/shared → shared}/types/language.d.ts +0 -0
  3386. /package/{types/shared → shared}/types/menu.d.ts +0 -0
  3387. /package/{types/shared → shared}/types/meta-manager.d.ts +0 -0
  3388. /package/{types/shared → shared}/types/metrica.d.ts +0 -0
  3389. /package/{types/shared → shared}/types/notification.d.ts +0 -0
  3390. /package/{types/shared → shared}/types/permissions.d.ts +0 -0
  3391. /package/{types/shared → shared}/types/ql/common.d.ts +0 -0
  3392. /package/{types/shared → shared}/types/ql/versions.d.ts +0 -0
  3393. /package/{types/shared → shared}/types/typed-query-api/index.d.ts +0 -0
  3394. /package/{types/shared → shared}/types/typed-query-api/v1.d.ts +0 -0
  3395. /package/{types/shared → shared}/types/ui-sandbox.d.ts +0 -0
  3396. /package/{types/shared → shared}/types/utility-types.d.ts +0 -0
  3397. /package/{types/shared → shared}/types/widget.d.ts +0 -0
  3398. /package/{types/shared → shared}/types/wizard/background-settings.d.ts +0 -0
  3399. /package/{types/shared → shared}/types/wizard/bars.d.ts +0 -0
  3400. /package/{types/shared → shared}/types/wizard/column.d.ts +0 -0
  3401. /package/{types/shared → shared}/types/wizard/export.d.ts +0 -0
  3402. /package/{types/shared → shared}/types/wizard/field.d.ts +0 -0
  3403. /package/{types/shared → shared}/types/wizard/index.d.ts +0 -0
  3404. /package/{types/shared → shared}/types/wizard/misc.d.ts +0 -0
  3405. /package/{types/shared → shared}/types/wizard/placeholder.d.ts +0 -0
  3406. /package/{types/shared → shared}/types/wizard/sub-totals.d.ts +0 -0
  3407. /package/{types/shared → shared}/types/wizard/versions.d.ts +0 -0
  3408. /package/{types/shared → shared}/utils/array/assert-non-empty-array.d.ts +0 -0
  3409. /package/{types/shared → shared}/utils/array/index.d.ts +0 -0
  3410. /package/{types/shared → shared}/utils/dash.d.ts +0 -0
  3411. /package/{types/shared → shared}/utils/dataset.d.ts +0 -0
  3412. /package/{types/shared → shared}/utils/date-time.d.ts +0 -0
  3413. /package/{types/shared → shared}/utils/entry.d.ts +0 -0
  3414. /package/{types/shared → shared}/utils/feature.d.ts +0 -0
  3415. /package/{types/shared → shared}/utils/functions-registry.d.ts +0 -0
  3416. /package/{types/shared → shared}/utils/index.d.ts +0 -0
  3417. /package/{types/shared → shared}/utils/makeFunctionTemplate.d.ts +0 -0
  3418. /package/{types/shared → shared}/utils/manualError.d.ts +0 -0
  3419. /package/{types/shared → shared}/utils/markdown.d.ts +0 -0
  3420. /package/{types/shared → shared}/utils/markup.d.ts +0 -0
  3421. /package/{types/shared → shared}/utils/openapi/index.d.ts +0 -0
  3422. /package/{types/shared → shared}/utils/palettes.d.ts +0 -0
  3423. /package/{types/shared → shared}/utils/ui-sandbox.d.ts +0 -0
  3424. /package/{types/shared → shared}/utils/visualization-check.d.ts +0 -0
  3425. /package/{types/shared → shared}/utils/wizard.d.ts +0 -0
  3426. /package/{types/shared → shared}/zod-schemas/dash.d.ts +0 -0
  3427. /package/{types/shared → shared}/zod-schemas/entry.d.ts +0 -0
  3428. /package/{types/shared → shared}/zod-schemas/permissions.d.ts +0 -0
  3429. /package/{types/shared → shared}/zod-schemas/shared-entry-permissions.d.ts +0 -0
  3430. /package/{assets/images/dark/403.js → ui/assets/images/illustration/dark/403.svg.js} +0 -0
  3431. /package/{assets/images/dark/404.js → ui/assets/images/illustration/dark/404.svg.js} +0 -0
  3432. /package/{assets/images/dark/500.js → ui/assets/images/illustration/dark/500.svg.js} +0 -0
  3433. /package/{assets/images/dark/bad_request.js → ui/assets/images/illustration/dark/bad_request.svg.js} +0 -0
  3434. /package/{assets/images/dark/empty_directory.js → ui/assets/images/illustration/dark/empty_directory.svg.js} +0 -0
  3435. /package/{assets/images/dark/empty_state.js → ui/assets/images/illustration/dark/empty_state.svg.js} +0 -0
  3436. /package/{assets/images/dark/no_accounts.js → ui/assets/images/illustration/dark/no_accounts.svg.js} +0 -0
  3437. /package/{assets/images/dark/no_permission.js → ui/assets/images/illustration/dark/no_permission.svg.js} +0 -0
  3438. /package/{assets/images/dark/project.js → ui/assets/images/illustration/dark/project.svg.js} +0 -0
  3439. /package/{assets/images/dark/success_operation.js → ui/assets/images/illustration/dark/success_operation.svg.js} +0 -0
  3440. /package/{assets/images/light/403.js → ui/assets/images/illustration/light/403.svg.js} +0 -0
  3441. /package/{assets/images/light/404.js → ui/assets/images/illustration/light/404.svg.js} +0 -0
  3442. /package/{assets/images/light/500.js → ui/assets/images/illustration/light/500.svg.js} +0 -0
  3443. /package/{assets/images/light/bad_request.js → ui/assets/images/illustration/light/bad_request.svg.js} +0 -0
  3444. /package/{assets/images/light/empty_directory.js → ui/assets/images/illustration/light/empty_directory.svg.js} +0 -0
  3445. /package/{assets/images/light/empty_state.js → ui/assets/images/illustration/light/empty_state.svg.js} +0 -0
  3446. /package/{assets/images/light/no_accounts.js → ui/assets/images/illustration/light/no_accounts.svg.js} +0 -0
  3447. /package/{assets/images/light/no_permission.js → ui/assets/images/illustration/light/no_permission.svg.js} +0 -0
  3448. /package/{assets/images/light/project.js → ui/assets/images/illustration/light/project.svg.js} +0 -0
  3449. /package/{assets/images/light/success_operation.js → ui/assets/images/illustration/light/success_operation.svg.js} +0 -0
  3450. /package/{types/ui → ui}/capabilities/capabilities.d.ts +0 -0
  3451. /package/{types/ui → ui}/capabilities/index.d.ts +0 -0
  3452. /package/{types/ui → ui}/components/AccessRights/AccessRightsUrlOpen.d.ts +0 -0
  3453. /package/{types/ui → ui}/components/ActionPanel/ActionPanel.d.ts +0 -0
  3454. /package/{types/ui → ui}/components/ActionPanel/ActionPanelHelpers.d.ts +0 -0
  3455. /package/{types/ui → ui}/components/ActionPanel/components/ChartSaveControls/ChartSaveControl.d.ts +0 -0
  3456. /package/{types/ui → ui}/components/ActionPanel/components/ChartSaveControls/components/SaveButton/SaveButton.d.ts +0 -0
  3457. /package/{types/ui → ui}/components/ActionPanel/components/ChartSaveControls/components/SaveDropdown/SaveDropdown.d.ts +0 -0
  3458. /package/{types/ui → ui}/components/ActionPanel/components/ChartSaveControls/types.d.ts +0 -0
  3459. /package/{types/ui → ui}/components/ActionPanel/components/ChartSaveControls/useAdditionalItems.d.ts +0 -0
  3460. /package/{types/ui → ui}/components/ActionPanel/components/EntryPanel/EntryPanel.d.ts +0 -0
  3461. /package/{types/ui → ui}/components/ActionPanel/index.d.ts +0 -0
  3462. /package/{types/ui → ui}/components/ActionPanel/utils.d.ts +0 -0
  3463. /package/{types/ui → ui}/components/AdaptiveDialog/AdaptiveDialog.d.ts +0 -0
  3464. /package/{types/ui → ui}/components/AnimateBlock/AnimateBlock.d.ts +0 -0
  3465. /package/{types/ui → ui}/components/AnimateBlock/index.d.ts +0 -0
  3466. /package/{types/ui → ui}/components/AsideHeaderAdapter/AsideHeaderAdapter.d.ts +0 -0
  3467. /package/{types/ui → ui}/components/AsideHeaderAdapter/LogoText/LogoText.d.ts +0 -0
  3468. /package/{types/ui → ui}/components/AsideHeaderAdapter/Settings/Appearance/HighcontrastSettings.d.ts +0 -0
  3469. /package/{types/ui → ui}/components/AsideHeaderAdapter/Settings/Appearance/ThemeSettings.d.ts +0 -0
  3470. /package/{types/ui → ui}/components/AsideHeaderAdapter/Settings/ItemField/ItemField.d.ts +0 -0
  3471. /package/{types/ui → ui}/components/AsideHeaderAdapter/Settings/LanguageSettings.d.ts +0 -0
  3472. /package/{types/ui → ui}/components/AsideHeaderAdapter/Settings/Settings.d.ts +0 -0
  3473. /package/{types/ui → ui}/components/AsideHeaderAdapter/Settings/types.d.ts +0 -0
  3474. /package/{types/ui → ui}/components/AsideHeaderAdapter/Settings/utils.d.ts +0 -0
  3475. /package/{types/ui → ui}/components/AsideHeaderAdapter/VersionDialog/VersionDialog.d.ts +0 -0
  3476. /package/{types/ui → ui}/components/AsideHeaderAdapter/constants.d.ts +0 -0
  3477. /package/{types/ui → ui}/components/AsideHeaderAdapter/helpers.d.ts +0 -0
  3478. /package/{types/ui → ui}/components/AsideHeaderAdapter/index.d.ts +0 -0
  3479. /package/{types/ui → ui}/components/AsyncImage/AsyncImage.d.ts +0 -0
  3480. /package/{types/ui → ui}/components/AutogeneratedPaletteIcon/AutogeneratedPaletteIcon.d.ts +0 -0
  3481. /package/{types/ui → ui}/components/BetaMark/BetaMark.d.ts +0 -0
  3482. /package/{types/ui → ui}/components/Breadcrumbs/CollectionsStructureBreadcrumbs/CollectionsStructureBreadcrumbs.d.ts +0 -0
  3483. /package/{types/ui → ui}/components/BreadcrumbsItemLink/BreadcrumbsItemLink.d.ts +0 -0
  3484. /package/{types/ui → ui}/components/ButtonAttach/ButtonAttach.d.ts +0 -0
  3485. /package/{types/ui → ui}/components/Collapse/Collapse.d.ts +0 -0
  3486. /package/{types/ui → ui}/components/Collapse/types.d.ts +0 -0
  3487. /package/{types/ui → ui}/components/CollectionFilters/CollectionFilters.d.ts +0 -0
  3488. /package/{types/ui → ui}/components/CollectionFilters/index.d.ts +0 -0
  3489. /package/{types/ui → ui}/components/CollectionIcon/CollectionIcon.d.ts +0 -0
  3490. /package/{types/ui → ui}/components/CollectionsStructure/CollectionDialog/CollectionDialog.d.ts +0 -0
  3491. /package/{types/ui → ui}/components/CollectionsStructure/CollectionDialog/index.d.ts +0 -0
  3492. /package/{types/ui → ui}/components/CollectionsStructure/CollectionNoCreatePermissionDialog/CollectionNoCreatePermissionDialog.d.ts +0 -0
  3493. /package/{types/ui → ui}/components/CollectionsStructure/CollectionNoCreatePermissionDialog/index.d.ts +0 -0
  3494. /package/{types/ui → ui}/components/CollectionsStructure/CollectionStructureDialog/CollectionStructureDialog.d.ts +0 -0
  3495. /package/{types/ui → ui}/components/CollectionsStructure/CollectionStructureDialog/CreateEntityDialog/CreateEntityDialog.d.ts +0 -0
  3496. /package/{types/ui → ui}/components/CollectionsStructure/CollectionStructureDialog/NewTitleDialog/NewTitleDialog.d.ts +0 -0
  3497. /package/{types/ui → ui}/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/Item/Item.d.ts +0 -0
  3498. /package/{types/ui → ui}/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/Item/index.d.ts +0 -0
  3499. /package/{types/ui → ui}/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/StructureItemSelect.d.ts +0 -0
  3500. /package/{types/ui → ui}/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/index.d.ts +0 -0
  3501. /package/{types/ui → ui}/components/CollectionsStructure/CollectionStructureDialog/index.d.ts +0 -0
  3502. /package/{types/ui → ui}/components/CollectionsStructure/CopyEntriesDialog.d.ts +0 -0
  3503. /package/{types/ui → ui}/components/CollectionsStructure/CopyWorkbookDialog.d.ts +0 -0
  3504. /package/{types/ui → ui}/components/CollectionsStructure/CreateCollectionDialog.d.ts +0 -0
  3505. /package/{types/ui → ui}/components/CollectionsStructure/CreateEntryInWorkbookDialog.d.ts +0 -0
  3506. /package/{types/ui → ui}/components/CollectionsStructure/CreateWorkbookDialog/CreateWorkbookDialog.d.ts +0 -0
  3507. /package/{types/ui → ui}/components/CollectionsStructure/CreateWorkbookDialog/ImportFileField/ImportFileField.d.ts +0 -0
  3508. /package/{types/ui → ui}/components/CollectionsStructure/CreateWorkbookDialog/ImportWorkbookView/ImportWorkbookView.d.ts +0 -0
  3509. /package/{types/ui → ui}/components/CollectionsStructure/CreateWorkbookDialog/utils.d.ts +0 -0
  3510. /package/{types/ui → ui}/components/CollectionsStructure/DeleteCollectionDialog.d.ts +0 -0
  3511. /package/{types/ui → ui}/components/CollectionsStructure/DeleteCollectionsWorkbooksContent/DeleteCollectionsWorkbooksContent.d.ts +0 -0
  3512. /package/{types/ui → ui}/components/CollectionsStructure/DeleteCollectionsWorkbooksContent/index.d.ts +0 -0
  3513. /package/{types/ui → ui}/components/CollectionsStructure/DeleteCollectionsWorkbooksDialog.d.ts +0 -0
  3514. /package/{types/ui → ui}/components/CollectionsStructure/DeleteDialog/DeleteDialog.d.ts +0 -0
  3515. /package/{types/ui → ui}/components/CollectionsStructure/DeleteDialog/index.d.ts +0 -0
  3516. /package/{types/ui → ui}/components/CollectionsStructure/DeleteWorkbookDialog.d.ts +0 -0
  3517. /package/{types/ui → ui}/components/CollectionsStructure/EditCollectionDialog.d.ts +0 -0
  3518. /package/{types/ui → ui}/components/CollectionsStructure/EditSharedEntryDialog.d.ts +0 -0
  3519. /package/{types/ui → ui}/components/CollectionsStructure/EditWorkbookDialog.d.ts +0 -0
  3520. /package/{types/ui → ui}/components/CollectionsStructure/ExportWorkbookDialog/ExportInfo/ExportInfo.d.ts +0 -0
  3521. /package/{types/ui → ui}/components/CollectionsStructure/ExportWorkbookDialog/ExportWorkbookDialog.d.ts +0 -0
  3522. /package/{types/ui → ui}/components/CollectionsStructure/ExportWorkbookDialog/utils.d.ts +0 -0
  3523. /package/{types/ui → ui}/components/CollectionsStructure/MigrateEntryToWorkbookDialog.d.ts +0 -0
  3524. /package/{types/ui → ui}/components/CollectionsStructure/MoveCollectionDialog.d.ts +0 -0
  3525. /package/{types/ui → ui}/components/CollectionsStructure/MoveCollectionsWorkbooksDialog.d.ts +0 -0
  3526. /package/{types/ui → ui}/components/CollectionsStructure/MoveSharedEntryDialog.d.ts +0 -0
  3527. /package/{types/ui → ui}/components/CollectionsStructure/MoveWorkbookDialog.d.ts +0 -0
  3528. /package/{types/ui → ui}/components/CollectionsStructure/WorkbookDialog/WorkbookDialog.d.ts +0 -0
  3529. /package/{types/ui → ui}/components/CollectionsStructure/WorkbookDialog/index.d.ts +0 -0
  3530. /package/{types/ui → ui}/components/CollectionsStructure/WorkbookDialog/types.d.ts +0 -0
  3531. /package/{types/ui → ui}/components/CollectionsStructure/components/EntriesNotificationCut/EntriesNotificationCut.d.ts +0 -0
  3532. /package/{types/ui → ui}/components/CollectionsStructure/components/EntriesNotificationCut/helpers.d.ts +0 -0
  3533. /package/{types/ui → ui}/components/CollectionsStructure/components/EntriesNotificationCut/types.d.ts +0 -0
  3534. /package/{types/ui → ui}/components/CollectionsStructure/hooks/useCollectionEntityDialogState.d.ts +0 -0
  3535. /package/{types/ui → ui}/components/CollectionsStructure/hooks/useCollectionStructureDialogState.d.ts +0 -0
  3536. /package/{types/ui → ui}/components/CollectionsStructure/hooks/useNotificationsAndDetails.d.ts +0 -0
  3537. /package/{types/ui → ui}/components/CollectionsStructure/index.d.ts +0 -0
  3538. /package/{types/ui → ui}/components/CollectionsStructure/types.d.ts +0 -0
  3539. /package/{types/ui → ui}/components/ColorPaletteEditorContainer/ColorPaletteCharkitPreview/ColorPaletteChartkitPreview.d.ts +0 -0
  3540. /package/{types/ui → ui}/components/ColorPaletteEditorContainer/ColorPaletteCharkitPreview/types.d.ts +0 -0
  3541. /package/{types/ui → ui}/components/ColorPaletteEditorContainer/ColorPaletteCharkitPreview/utils.d.ts +0 -0
  3542. /package/{types/ui → ui}/components/ColorPaletteEditorContainer/ColorPaletteEditorContainer.d.ts +0 -0
  3543. /package/{types/ui → ui}/components/ColorPaletteEditorContainer/ColorPalettesCard/ColorPalettesCard.d.ts +0 -0
  3544. /package/{types/ui → ui}/components/ColorPaletteEditorContainer/ColorPalettesCard/DefaultPaletteSelect/DefaultPaletteSelect.d.ts +0 -0
  3545. /package/{types/ui → ui}/components/ColorPaletteEditorContainer/ColorTextInput/ColorTextInput.d.ts +0 -0
  3546. /package/{types/ui → ui}/components/ColorPaletteEditorContainer/GradientPaletteEditor/GradientPaletteEditor.d.ts +0 -0
  3547. /package/{types/ui → ui}/components/ColorPaletteEditorContainer/PaletteEditor/PaletteEditor.d.ts +0 -0
  3548. /package/{types/ui → ui}/components/ColorPaletteSelect/ColorPaletteSelect.d.ts +0 -0
  3549. /package/{types/ui → ui}/components/ColorPickerInput/ColorPickerInput.d.ts +0 -0
  3550. /package/{types/ui → ui}/components/ColorPickerInput/utils.d.ts +0 -0
  3551. /package/{types/ui → ui}/components/ConnectorIcon/ConnectorIcon.d.ts +0 -0
  3552. /package/{types/ui → ui}/components/ControlComponents/BackButton/BackButton.d.ts +0 -0
  3553. /package/{types/ui → ui}/components/ControlComponents/Dialog/Dialog.d.ts +0 -0
  3554. /package/{types/ui → ui}/components/ControlComponents/Sections/AppearanceSection/AppearanceSection.d.ts +0 -0
  3555. /package/{types/ui → ui}/components/ControlComponents/Sections/AppearanceSection/Rows/ColorAccentRow/ColorAccentRow.d.ts +0 -0
  3556. /package/{types/ui → ui}/components/ControlComponents/Sections/AppearanceSection/Rows/HintRow/HintRow.d.ts +0 -0
  3557. /package/{types/ui → ui}/components/ControlComponents/Sections/AppearanceSection/Rows/InnerTitleRow/InnerTitleRow.d.ts +0 -0
  3558. /package/{types/ui → ui}/components/ControlComponents/Sections/AppearanceSection/Rows/TitlePlacementRow/TitlePlacementRow.d.ts +0 -0
  3559. /package/{types/ui → ui}/components/ControlComponents/Sections/AppearanceSection/Rows/TitleRow/TitleRow.d.ts +0 -0
  3560. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/CommonGroupSettingsSection.d.ts +0 -0
  3561. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/ConnectionSettings.d.ts +0 -0
  3562. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/ConnectionSelector/ConnectionSelector.d.ts +0 -0
  3563. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/ConnectionSelector/helpers.d.ts +0 -0
  3564. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/QueryTypeControl.d.ts +0 -0
  3565. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/components/EditLabelControl/EditLabelControl.d.ts +0 -0
  3566. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/components/EditQueryControl/EditQueryControl.d.ts +0 -0
  3567. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/helpers.d.ts +0 -0
  3568. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/helpers/get-distincts-by-typed-query.d.ts +0 -0
  3569. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/DatasetSelectorSettings/DatasetSelectorSettings.d.ts +0 -0
  3570. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/EntrySelector/EntrySelector.d.ts +0 -0
  3571. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ExternalSelectorSettings/ExternalSelectorSettings.d.ts +0 -0
  3572. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/CurrentTabOption/CurrentTabOption.d.ts +0 -0
  3573. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/ImpactTypeSelect.d.ts +0 -0
  3574. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/SelectedTabsOption/SelectedTabsOption.d.ts +0 -0
  3575. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/constants.d.ts +0 -0
  3576. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/helpers.d.ts +0 -0
  3577. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/useTabVisibilityValidation.d.ts +0 -0
  3578. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/InputTypeSelector/InputTypeSelector.d.ts +0 -0
  3579. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ParameterNameInput/ParameterNameInput.d.ts +0 -0
  3580. /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/helpers/input-type-select.d.ts +0 -0
  3581. /package/{types/ui → ui}/components/ControlComponents/Sections/Date/Acceptable/Acceptable.d.ts +0 -0
  3582. /package/{types/ui → ui}/components/ControlComponents/Sections/Date/Default/Default.d.ts +0 -0
  3583. /package/{types/ui → ui}/components/ControlComponents/Sections/OperationSelector/OperationSelector.d.ts +0 -0
  3584. /package/{types/ui → ui}/components/ControlComponents/Sections/ParametersSection/ParametersSection.d.ts +0 -0
  3585. /package/{types/ui → ui}/components/ControlComponents/Sections/Switchers/Button/Button.d.ts +0 -0
  3586. /package/{types/ui → ui}/components/ControlComponents/Sections/Switchers/DatasetField/DatasetField.d.ts +0 -0
  3587. /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/Acceptable/Acceptable.d.ts +0 -0
  3588. /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/Acceptable/SelectorValuesDialogBody.d.ts +0 -0
  3589. /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/ListValueControl.d.ts +0 -0
  3590. /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/MultiselectableCheckbox.d.ts +0 -0
  3591. /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/DynamicValueSelect.d.ts +0 -0
  3592. /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/StaticValueSelect.d.ts +0 -0
  3593. /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/hooks.d.ts +0 -0
  3594. /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/types.d.ts +0 -0
  3595. /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/utils.d.ts +0 -0
  3596. /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/RequiredValueCheckbox/RequiredValueCheckbox.d.ts +0 -0
  3597. /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ValueSelector.d.ts +0 -0
  3598. /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/helpers/get-distincts-by-dataset-field.d.ts +0 -0
  3599. /package/{types/ui → ui}/components/ControlComponents/Sections/Wrapper/Wrapper.d.ts +0 -0
  3600. /package/{types/ui → ui}/components/ControlComponents/SelectorPreview/SelectorPreview.d.ts +0 -0
  3601. /package/{types/ui → ui}/components/ControlComponents/SelectorTypeSelect/SelectorTypeSelect.d.ts +0 -0
  3602. /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/CopyEntriesToWorkbookDialog.d.ts +0 -0
  3603. /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/components/Body/Body.d.ts +0 -0
  3604. /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/components/Body/index.d.ts +0 -0
  3605. /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/components/EntriesGroup/EntriesGroup.d.ts +0 -0
  3606. /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/components/EntriesGroup/index.d.ts +0 -0
  3607. /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/components/EntryRow/EntryRow.d.ts +0 -0
  3608. /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/components/EntryRow/index.d.ts +0 -0
  3609. /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/index.d.ts +0 -0
  3610. /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/utils.d.ts +0 -0
  3611. /package/{types/ui → ui}/components/DNDPane/DNDItem/DNDItem.d.ts +0 -0
  3612. /package/{types/ui → ui}/components/DNDPane/DNDPane.d.ts +0 -0
  3613. /package/{types/ui → ui}/components/DashKit/DashKit.d.ts +0 -0
  3614. /package/{types/ui → ui}/components/DashKit/constants.d.ts +0 -0
  3615. /package/{types/ui → ui}/components/DashKit/context/WidgetContext.d.ts +0 -0
  3616. /package/{types/ui → ui}/components/DashKit/helpers.d.ts +0 -0
  3617. /package/{types/ui → ui}/components/DashKit/plugins/Control/Control.d.ts +0 -0
  3618. /package/{types/ui → ui}/components/DashKit/plugins/Control/ControlItems/ControlItemSelect.d.ts +0 -0
  3619. /package/{types/ui → ui}/components/DashKit/plugins/Control/Error/Error.d.ts +0 -0
  3620. /package/{types/ui → ui}/components/DashKit/plugins/Control/constants.d.ts +0 -0
  3621. /package/{types/ui → ui}/components/DashKit/plugins/Control/prerenderMiddleware.d.ts +0 -0
  3622. /package/{types/ui → ui}/components/DashKit/plugins/Control/types.d.ts +0 -0
  3623. /package/{types/ui → ui}/components/DashKit/plugins/Control/utils.d.ts +0 -0
  3624. /package/{types/ui → ui}/components/DashKit/plugins/DebugInfoTool/DebugInfoTool.d.ts +0 -0
  3625. /package/{types/ui → ui}/components/DashKit/plugins/GroupControl/Control/Control.d.ts +0 -0
  3626. /package/{types/ui → ui}/components/DashKit/plugins/GroupControl/Control/store/reducer.d.ts +0 -0
  3627. /package/{types/ui → ui}/components/DashKit/plugins/GroupControl/Control/store/types.d.ts +0 -0
  3628. /package/{types/ui → ui}/components/DashKit/plugins/GroupControl/GroupControl.d.ts +0 -0
  3629. /package/{types/ui → ui}/components/DashKit/plugins/GroupControl/types.d.ts +0 -0
  3630. /package/{types/ui → ui}/components/DashKit/plugins/GroupControl/utils.d.ts +0 -0
  3631. /package/{types/ui → ui}/components/DashKit/plugins/Image/Image.d.ts +0 -0
  3632. /package/{types/ui → ui}/components/DashKit/plugins/RendererWrapper/RendererWrapper.d.ts +0 -0
  3633. /package/{types/ui → ui}/components/DashKit/plugins/Text/Text.d.ts +0 -0
  3634. /package/{types/ui → ui}/components/DashKit/plugins/Title/AnchorLink/AnchorLink.d.ts +0 -0
  3635. /package/{types/ui → ui}/components/DashKit/plugins/Title/Title.d.ts +0 -0
  3636. /package/{types/ui → ui}/components/DashKit/plugins/Title/constants.d.ts +0 -0
  3637. /package/{types/ui → ui}/components/DashKit/plugins/Widget/WidgetPlugin.d.ts +0 -0
  3638. /package/{types/ui → ui}/components/DashKit/plugins/Widget/components/Footer.d.ts +0 -0
  3639. /package/{types/ui → ui}/components/DashKit/plugins/Widget/components/Header.d.ts +0 -0
  3640. /package/{types/ui → ui}/components/DashKit/plugins/Widget/store/actions.d.ts +0 -0
  3641. /package/{types/ui → ui}/components/DashKit/plugins/Widget/store/reducer.d.ts +0 -0
  3642. /package/{types/ui → ui}/components/DashKit/plugins/Widget/types.d.ts +0 -0
  3643. /package/{types/ui → ui}/components/DashKit/plugins/types.d.ts +0 -0
  3644. /package/{types/ui → ui}/components/DashKit/utils.d.ts +0 -0
  3645. /package/{types/ui → ui}/components/DataTypeIcon/DataTypeIcon.d.ts +0 -0
  3646. /package/{types/ui → ui}/components/DatasetFieldList/DatasetFieldList.d.ts +0 -0
  3647. /package/{types/ui → ui}/components/DebouncedInput/DebouncedInput.d.ts +0 -0
  3648. /package/{types/ui → ui}/components/DebouncedInput/index.d.ts +0 -0
  3649. /package/{types/ui → ui}/components/DialogAddSharedEntryFromLink/DialogAddSharedEntryFromLink.d.ts +0 -0
  3650. /package/{types/ui → ui}/components/DialogChartWidget/DialogChartWidget.d.ts +0 -0
  3651. /package/{types/ui → ui}/components/DialogCommon/DialogCommon.d.ts +0 -0
  3652. /package/{types/ui → ui}/components/DialogConfirm/DialogConfirm.d.ts +0 -0
  3653. /package/{types/ui → ui}/components/DialogDefault/DialogDefault.d.ts +0 -0
  3654. /package/{types/ui → ui}/components/DialogEditItem/DialogEditItem.d.ts +0 -0
  3655. /package/{types/ui → ui}/components/DialogEntryDescription/DialogEntryDescription.d.ts +0 -0
  3656. /package/{types/ui → ui}/components/DialogEntryDescription/DialogEntryDescriptionWrapper.d.ts +0 -0
  3657. /package/{types/ui → ui}/components/DialogEntryDescription/EntryDescriptionButton.d.ts +0 -0
  3658. /package/{types/ui → ui}/components/DialogEntryDescription/index.d.ts +0 -0
  3659. /package/{types/ui → ui}/components/DialogErrorWithTabs/DebugInfo/DebugInfo.d.ts +0 -0
  3660. /package/{types/ui → ui}/components/DialogErrorWithTabs/DialogErrorWithTabs.d.ts +0 -0
  3661. /package/{types/ui → ui}/components/DialogErrorWithTabs/ErrorText/ErrorText.d.ts +0 -0
  3662. /package/{types/ui → ui}/components/DialogErrorWithTabs/Tabs/DatabaseRequestTab/DatabaseRequestTab.d.ts +0 -0
  3663. /package/{types/ui → ui}/components/DialogErrorWithTabs/Tabs/DatabaseResponseTab/DatabaseResponseTab.d.ts +0 -0
  3664. /package/{types/ui → ui}/components/DialogErrorWithTabs/Tabs/DebugTab/DebugTab.d.ts +0 -0
  3665. /package/{types/ui → ui}/components/DialogErrorWithTabs/Tabs/DebugTab/utils.d.ts +0 -0
  3666. /package/{types/ui → ui}/components/DialogErrorWithTabs/Tabs/DocumentationTab/DocumentationTab.d.ts +0 -0
  3667. /package/{types/ui → ui}/components/DialogExternalControl/DialogExternalControl.d.ts +0 -0
  3668. /package/{types/ui → ui}/components/DialogFieldEditor/DialogFieldEditor.d.ts +0 -0
  3669. /package/{types/ui → ui}/components/DialogFilter/BooleanFilter/BooleanFilter.d.ts +0 -0
  3670. /package/{types/ui → ui}/components/DialogFilter/DateFilter/DateFilter.d.ts +0 -0
  3671. /package/{types/ui → ui}/components/DialogFilter/DialogFilter.d.ts +0 -0
  3672. /package/{types/ui → ui}/components/DialogFilter/InputFilter/InputFilter.d.ts +0 -0
  3673. /package/{types/ui → ui}/components/DialogFilter/SelectFilter/SelectFilter.d.ts +0 -0
  3674. /package/{types/ui → ui}/components/DialogFilter/constants.d.ts +0 -0
  3675. /package/{types/ui → ui}/components/DialogFilter/typings.d.ts +0 -0
  3676. /package/{types/ui → ui}/components/DialogFilter/utils.d.ts +0 -0
  3677. /package/{types/ui → ui}/components/DialogGroupControl/DialogGroupControl.d.ts +0 -0
  3678. /package/{types/ui → ui}/components/DialogGroupControl/GroupControlBody/GroupControlBody.d.ts +0 -0
  3679. /package/{types/ui → ui}/components/DialogGroupControl/GroupControlBody/SimilarSelectorsBlock/SimilarSelectorsBlock.d.ts +0 -0
  3680. /package/{types/ui → ui}/components/DialogGroupControl/GroupControlFooter/GroupControlFooter.d.ts +0 -0
  3681. /package/{types/ui → ui}/components/DialogGroupControl/GroupControlSidebar/GroupControlSidebar.d.ts +0 -0
  3682. /package/{types/ui → ui}/components/DialogGroupControl/GroupControlSidebar/TabItemWrapper/TabItemWrapper.d.ts +0 -0
  3683. /package/{types/ui → ui}/components/DialogGroupControl/GroupExtendedSettings/ControlPlacementRow.d.ts +0 -0
  3684. /package/{types/ui → ui}/components/DialogGroupControl/GroupExtendedSettings/GroupExtendedSettings.d.ts +0 -0
  3685. /package/{types/ui → ui}/components/DialogGroupControl/hooks/useSimilarSelectorsActions.d.ts +0 -0
  3686. /package/{types/ui → ui}/components/DialogImageWidget/DialogImageWidget.d.ts +0 -0
  3687. /package/{types/ui → ui}/components/DialogImageWidget/index.d.ts +0 -0
  3688. /package/{types/ui → ui}/components/DialogManager/DialogManager.d.ts +0 -0
  3689. /package/{types/ui → ui}/components/DialogManager/DialogManagerContainer.d.ts +0 -0
  3690. /package/{types/ui → ui}/components/DialogNoRights/DialogNoRights.d.ts +0 -0
  3691. /package/{types/ui → ui}/components/DialogParameter/DefaultValueSection.d.ts +0 -0
  3692. /package/{types/ui → ui}/components/DialogParameter/DialogParameter.d.ts +0 -0
  3693. /package/{types/ui → ui}/components/DialogParameter/TemplateSection.d.ts +0 -0
  3694. /package/{types/ui → ui}/components/DialogParameter/helpers.d.ts +0 -0
  3695. /package/{types/ui → ui}/components/DialogParameter/useParameterForm.d.ts +0 -0
  3696. /package/{types/ui → ui}/components/DialogParameter/useParameterTooltipMarkdown.d.ts +0 -0
  3697. /package/{types/ui → ui}/components/DialogParameter/useValidationErrors.d.ts +0 -0
  3698. /package/{types/ui → ui}/components/DialogQLParameter/DialogQLParameter.d.ts +0 -0
  3699. /package/{types/ui → ui}/components/DialogRelatedEntities/constants.d.ts +0 -0
  3700. /package/{types/ui → ui}/components/DialogRelations/components/Content/Content.d.ts +0 -0
  3701. /package/{types/ui → ui}/components/DialogRelations/components/Content/Row.d.ts +0 -0
  3702. /package/{types/ui → ui}/components/DialogRelations/components/Content/helpers.d.ts +0 -0
  3703. /package/{types/ui → ui}/components/DialogRelations/components/DialogAliases/DialogAliases.d.ts +0 -0
  3704. /package/{types/ui → ui}/components/DialogRelations/components/DialogAliases/components/AddAliases/AddAliases.d.ts +0 -0
  3705. /package/{types/ui → ui}/components/DialogRelations/components/DialogAliases/components/AddAliases/helpers.d.ts +0 -0
  3706. /package/{types/ui → ui}/components/DialogRelations/components/DialogAliases/components/AliasesDetail/AliasesDetail.d.ts +0 -0
  3707. /package/{types/ui → ui}/components/DialogRelations/components/DialogAliases/components/AliasesList/AliasesInvalidList.d.ts +0 -0
  3708. /package/{types/ui → ui}/components/DialogRelations/components/DialogAliases/components/AliasesList/AliasesList.d.ts +0 -0
  3709. /package/{types/ui → ui}/components/DialogRelations/components/Filters/Filters.d.ts +0 -0
  3710. /package/{types/ui → ui}/components/DialogRelations/helpers.d.ts +0 -0
  3711. /package/{types/ui → ui}/components/DialogRelations/hooks/helpersChart.d.ts +0 -0
  3712. /package/{types/ui → ui}/components/DialogRelations/hooks/helpersDatasets.d.ts +0 -0
  3713. /package/{types/ui → ui}/components/DialogRelations/hooks/useFilteredRelations.d.ts +0 -0
  3714. /package/{types/ui → ui}/components/DialogRelations/hooks/useRelations.d.ts +0 -0
  3715. /package/{types/ui → ui}/components/DialogRelations/types.d.ts +0 -0
  3716. /package/{types/ui → ui}/components/DialogSelectSharedEntry/DialogSelectSharedEntry.d.ts +0 -0
  3717. /package/{types/ui → ui}/components/DialogSharedEntryBindings/DialogSharedEntryBindings.d.ts +0 -0
  3718. /package/{types/ui → ui}/components/DialogSharedEntryBindings/components/DeleteAlert.d.ts +0 -0
  3719. /package/{types/ui → ui}/components/DialogSharedEntryBindings/components/DirectionControl.d.ts +0 -0
  3720. /package/{types/ui → ui}/components/DialogSharedEntryBindings/components/Relations.d.ts +0 -0
  3721. /package/{types/ui → ui}/components/DialogSharedEntryBindings/components/SharedBindingsFooter.d.ts +0 -0
  3722. /package/{types/ui → ui}/components/DialogSharedEntryBindings/components/SharedBindingsHeader.d.ts +0 -0
  3723. /package/{types/ui → ui}/components/DialogSharedEntryBindings/constants.d.ts +0 -0
  3724. /package/{types/ui → ui}/components/DialogSharedEntryBindings/hooks/useSharedEntryBindings.d.ts +0 -0
  3725. /package/{types/ui → ui}/components/DialogSharedEntryBindings/types.d.ts +0 -0
  3726. /package/{types/ui → ui}/components/DialogSharedEntryBindings/utils.d.ts +0 -0
  3727. /package/{types/ui → ui}/components/DialogSharedEntryPermissions/DialogSharedEntryPermissions.d.ts +0 -0
  3728. /package/{types/ui → ui}/components/DialogSharedEntryPermissions/components/PermissionButton/PermissionButton.d.ts +0 -0
  3729. /package/{types/ui → ui}/components/DialogSharedEntryUnbind/DialogSharedEntryUnbind.d.ts +0 -0
  3730. /package/{types/ui → ui}/components/DialogSharedEntryUnbind/constants.d.ts +0 -0
  3731. /package/{types/ui → ui}/components/DialogSharedRelatedEntities/DialogSharedRelatedEntities.d.ts +0 -0
  3732. /package/{types/ui → ui}/components/DialogSuccessWithAction/DialogSuccessWithAction.d.ts +0 -0
  3733. /package/{types/ui → ui}/components/DialogTextWidget/DialogTextWidget.d.ts +0 -0
  3734. /package/{types/ui → ui}/components/DialogTextWidget/index.d.ts +0 -0
  3735. /package/{types/ui → ui}/components/DialogTitleWidget/DialogTitleWidget.d.ts +0 -0
  3736. /package/{types/ui → ui}/components/DialogTitleWidget/useColorSettings.d.ts +0 -0
  3737. /package/{types/ui → ui}/components/DialogWarning/DialogWarning.d.ts +0 -0
  3738. /package/{types/ui → ui}/components/DragAndDrop/DragAndDrop.d.ts +0 -0
  3739. /package/{types/ui → ui}/components/DropdownAction/DropdownAction.d.ts +0 -0
  3740. /package/{types/ui → ui}/components/DropdownNavigation/DropdownNavigation.d.ts +0 -0
  3741. /package/{types/ui → ui}/components/EditableText/EditableText.d.ts +0 -0
  3742. /package/{types/ui → ui}/components/EntitiesList/EntitiesList.d.ts +0 -0
  3743. /package/{types/ui → ui}/components/EntitiesList/types.d.ts +0 -0
  3744. /package/{types/ui → ui}/components/EntityIcon/EntityIcon.d.ts +0 -0
  3745. /package/{types/ui → ui}/components/EntityLink/EntityLink.d.ts +0 -0
  3746. /package/{types/ui → ui}/components/EntityRow/EntityRow.d.ts +0 -0
  3747. /package/{types/ui → ui}/components/EntriesList/EntriesList.d.ts +0 -0
  3748. /package/{types/ui → ui}/components/EntriesList/Item/Item.d.ts +0 -0
  3749. /package/{types/ui → ui}/components/EntriesList/types.d.ts +0 -0
  3750. /package/{types/ui → ui}/components/EntryBreadcrumbs/EntryBreadcrumbs.d.ts +0 -0
  3751. /package/{types/ui → ui}/components/EntryBreadcrumbs/helpers.d.ts +0 -0
  3752. /package/{types/ui → ui}/components/EntryContextMenu/EntryContextMenu.d.ts +0 -0
  3753. /package/{types/ui → ui}/components/EntryContextMenu/EntryContextMenuBase/EntryContextMenuBase.d.ts +0 -0
  3754. /package/{types/ui → ui}/components/EntryContextMenu/constants.d.ts +0 -0
  3755. /package/{types/ui → ui}/components/EntryContextMenu/helpers.d.ts +0 -0
  3756. /package/{types/ui → ui}/components/EntryContextMenu/index.d.ts +0 -0
  3757. /package/{types/ui → ui}/components/EntryContextMenu/types.d.ts +0 -0
  3758. /package/{types/ui → ui}/components/EntryContextMenu/utils.d.ts +0 -0
  3759. /package/{types/ui → ui}/components/EntryContextMenu/withConfiguredEntryContextMenu/helpers.d.ts +0 -0
  3760. /package/{types/ui → ui}/components/EntryContextMenu/withConfiguredEntryContextMenu/withConfiguredEntryContextMenu.d.ts +0 -0
  3761. /package/{types/ui → ui}/components/EntryDialogues/DialogAccess/DialogAccess.d.ts +0 -0
  3762. /package/{types/ui → ui}/components/EntryDialogues/DialogAccessDescription/DialogAccessDescription.d.ts +0 -0
  3763. /package/{types/ui → ui}/components/EntryDialogues/DialogCopyEntry/DialogCopyEntry.d.ts +0 -0
  3764. /package/{types/ui → ui}/components/EntryDialogues/DialogCopyEntry/index.d.ts +0 -0
  3765. /package/{types/ui → ui}/components/EntryDialogues/DialogCreateDashboard/DialogCreateDashboard.d.ts +0 -0
  3766. /package/{types/ui → ui}/components/EntryDialogues/DialogCreateDashboard/index.d.ts +0 -0
  3767. /package/{types/ui → ui}/components/EntryDialogues/DialogCreateEditorChart/DialogCreateEditorChart.d.ts +0 -0
  3768. /package/{types/ui → ui}/components/EntryDialogues/DialogCreateEditorChart/index.d.ts +0 -0
  3769. /package/{types/ui → ui}/components/EntryDialogues/DialogCreateFolder/DialogCreateFolder.d.ts +0 -0
  3770. /package/{types/ui → ui}/components/EntryDialogues/DialogCreateFolder/index.d.ts +0 -0
  3771. /package/{types/ui → ui}/components/EntryDialogues/DialogCreateQLChart/DialogCreateQLChart.d.ts +0 -0
  3772. /package/{types/ui → ui}/components/EntryDialogues/DialogCreateQLChart/index.d.ts +0 -0
  3773. /package/{types/ui → ui}/components/EntryDialogues/DialogCreateWizardChart/DialogCreateWizardChart.d.ts +0 -0
  3774. /package/{types/ui → ui}/components/EntryDialogues/DialogCreateWizardChart/index.d.ts +0 -0
  3775. /package/{types/ui → ui}/components/EntryDialogues/DialogCreateWorkbookEntry/DialogCreateWorkbookEntry.d.ts +0 -0
  3776. /package/{types/ui → ui}/components/EntryDialogues/DialogDeleteEntry/DialogDeleteEntry.d.ts +0 -0
  3777. /package/{types/ui → ui}/components/EntryDialogues/DialogDeleteEntry/index.d.ts +0 -0
  3778. /package/{types/ui → ui}/components/EntryDialogues/DialogEditFavoritesAlias/DialogEditFavoritesAlias.d.ts +0 -0
  3779. /package/{types/ui → ui}/components/EntryDialogues/DialogEditFavoritesAlias/index.d.ts +0 -0
  3780. /package/{types/ui → ui}/components/EntryDialogues/DialogEditWarning/DialogEditWarning.d.ts +0 -0
  3781. /package/{types/ui → ui}/components/EntryDialogues/DialogEntrySaveAsNew/DialogEntrySaveAsNew.d.ts +0 -0
  3782. /package/{types/ui → ui}/components/EntryDialogues/DialogEntrySaveAsNew/index.d.ts +0 -0
  3783. /package/{types/ui → ui}/components/EntryDialogues/DialogMakeActualConfirm/DialogMakeActualConfirm.d.ts +0 -0
  3784. /package/{types/ui → ui}/components/EntryDialogues/DialogMigrateToWorkbook/DialogMigrateToWorkbook.d.ts +0 -0
  3785. /package/{types/ui → ui}/components/EntryDialogues/DialogMigrateToWorkbook/index.d.ts +0 -0
  3786. /package/{types/ui → ui}/components/EntryDialogues/DialogMoveEntry/DialogMoveEntry.d.ts +0 -0
  3787. /package/{types/ui → ui}/components/EntryDialogues/DialogMoveEntry/index.d.ts +0 -0
  3788. /package/{types/ui → ui}/components/EntryDialogues/DialogRenameEntry/DialogRenameEntry.d.ts +0 -0
  3789. /package/{types/ui → ui}/components/EntryDialogues/DialogRenameEntry/index.d.ts +0 -0
  3790. /package/{types/ui → ui}/components/EntryDialogues/DialogShareEntry/DialogShareEntry.d.ts +0 -0
  3791. /package/{types/ui → ui}/components/EntryDialogues/DialogShareEntry/index.d.ts +0 -0
  3792. /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/AlertTooltip/AlertTooltip.d.ts +0 -0
  3793. /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/AuthorSection/AuthorSection.d.ts +0 -0
  3794. /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/ContentError/ContentError.d.ts +0 -0
  3795. /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/ContentLoader/ContentLoader.d.ts +0 -0
  3796. /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/CurrentEntrySection/CurrentEntrySection.d.ts +0 -0
  3797. /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/DialogAlert/DialogAlert.d.ts +0 -0
  3798. /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/DialogPublic.d.ts +0 -0
  3799. /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/RelationsList/RelationsList.d.ts +0 -0
  3800. /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/SharedLink/SharedLink.d.ts +0 -0
  3801. /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/constants.d.ts +0 -0
  3802. /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/helpers.d.ts +0 -0
  3803. /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/types.d.ts +0 -0
  3804. /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/useDialogPublicState.d.ts +0 -0
  3805. /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogSwitchPublic.d.ts +0 -0
  3806. /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/index.d.ts +0 -0
  3807. /package/{types/ui → ui}/components/EntryDialogues/DialogUnlock/DialogUnlock.d.ts +0 -0
  3808. /package/{types/ui → ui}/components/EntryDialogues/DialogUnlock/index.d.ts +0 -0
  3809. /package/{types/ui → ui}/components/EntryDialogues/EntryDialogBase/EntryDialogBase.d.ts +0 -0
  3810. /package/{types/ui → ui}/components/EntryDialogues/constants.d.ts +0 -0
  3811. /package/{types/ui → ui}/components/EntryDialogues/index.d.ts +0 -0
  3812. /package/{types/ui → ui}/components/EntryDialogues/types.d.ts +0 -0
  3813. /package/{types/ui → ui}/components/EntryDialogues/utils.d.ts +0 -0
  3814. /package/{types/ui → ui}/components/EntryIcon/EntryIcon.d.ts +0 -0
  3815. /package/{types/ui → ui}/components/EntryRow/EntryRow.d.ts +0 -0
  3816. /package/{types/ui → ui}/components/EntrySuggest/EntrySuggest.d.ts +0 -0
  3817. /package/{types/ui → ui}/components/EntrySuggest/types.d.ts +0 -0
  3818. /package/{types/ui → ui}/components/EntryTitle/EntryTitle.d.ts +0 -0
  3819. /package/{types/ui → ui}/components/EntryTitle/index.d.ts +0 -0
  3820. /package/{types/ui → ui}/components/EntryTitle/types.d.ts +0 -0
  3821. /package/{types/ui → ui}/components/EntryTitle/utils.d.ts +0 -0
  3822. /package/{types/ui → ui}/components/ErrorBoundary/ErrorBoundary.d.ts +0 -0
  3823. /package/{types/ui → ui}/components/ErrorContent/DebugInfo/DebugInfo.d.ts +0 -0
  3824. /package/{types/ui → ui}/components/ErrorContent/ErrorContent.d.ts +0 -0
  3825. /package/{types/ui → ui}/components/ErrorPage/ErrorPage.d.ts +0 -0
  3826. /package/{types/ui → ui}/components/ErrorPage/withErrorPage.d.ts +0 -0
  3827. /package/{types/ui → ui}/components/ExpandablePanel/ExpandablePanel.d.ts +0 -0
  3828. /package/{types/ui → ui}/components/FieldEditor/FieldEditor.d.ts +0 -0
  3829. /package/{types/ui → ui}/components/FieldEditor/components/DocSection.d.ts +0 -0
  3830. /package/{types/ui → ui}/components/FieldEditor/components/FormulaSection.d.ts +0 -0
  3831. /package/{types/ui → ui}/components/FieldEditor/components/NameHeader.d.ts +0 -0
  3832. /package/{types/ui → ui}/components/FieldEditor/components/Settings.d.ts +0 -0
  3833. /package/{types/ui → ui}/components/FieldEditor/components/SourceSection.d.ts +0 -0
  3834. /package/{types/ui → ui}/components/FieldEditor/components/helpers.d.ts +0 -0
  3835. /package/{types/ui → ui}/components/FieldEditor/constants.d.ts +0 -0
  3836. /package/{types/ui → ui}/components/FieldEditor/index.d.ts +0 -0
  3837. /package/{types/ui → ui}/components/FieldEditor/typings.d.ts +0 -0
  3838. /package/{types/ui → ui}/components/FieldEditor/utils.d.ts +0 -0
  3839. /package/{types/ui → ui}/components/FieldWrapper/FieldWrapper.d.ts +0 -0
  3840. /package/{types/ui → ui}/components/FloatMenu/FloatMenu.d.ts +0 -0
  3841. /package/{types/ui → ui}/components/FormSection/FormSection.d.ts +0 -0
  3842. /package/{types/ui → ui}/components/FormattedValue/FormattedValue.d.ts +0 -0
  3843. /package/{types/ui → ui}/components/IamAccessDialog/AccessList/AccessList.d.ts +0 -0
  3844. /package/{types/ui → ui}/components/IamAccessDialog/AccessList/ActionPanel/ActionPanel.d.ts +0 -0
  3845. /package/{types/ui → ui}/components/IamAccessDialog/AccessList/Block/Block.d.ts +0 -0
  3846. /package/{types/ui → ui}/components/IamAccessDialog/AccessList/DirectAccessesTable/Controls/Controls.d.ts +0 -0
  3847. /package/{types/ui → ui}/components/IamAccessDialog/AccessList/DirectAccessesTable/DirectAccessesTable.d.ts +0 -0
  3848. /package/{types/ui → ui}/components/IamAccessDialog/AccessList/DirectAccessesTable/utils.d.ts +0 -0
  3849. /package/{types/ui → ui}/components/IamAccessDialog/AccessList/Filters/Filters.d.ts +0 -0
  3850. /package/{types/ui → ui}/components/IamAccessDialog/AccessList/InheritedAccessesTable/InheritedAccessesTable.d.ts +0 -0
  3851. /package/{types/ui → ui}/components/IamAccessDialog/AddSubjects/ActionPanel/ActionPanel.d.ts +0 -0
  3852. /package/{types/ui → ui}/components/IamAccessDialog/AddSubjects/AddSubjects.d.ts +0 -0
  3853. /package/{types/ui → ui}/components/IamAccessDialog/AddSubjects/SubjectsList/SubjectsList.d.ts +0 -0
  3854. /package/{types/ui → ui}/components/IamAccessDialog/IamAccessDialog.d.ts +0 -0
  3855. /package/{types/ui → ui}/components/IamAccessDialog/IamAccessDialogComponent.d.ts +0 -0
  3856. /package/{types/ui → ui}/components/IamAccessDialog/ResourceInfo/ResourceInfo.d.ts +0 -0
  3857. /package/{types/ui → ui}/components/IamAccessDialog/constants.d.ts +0 -0
  3858. /package/{types/ui → ui}/components/IamAccessDialog/index.d.ts +0 -0
  3859. /package/{types/ui → ui}/components/IamAccessDialog/utils.d.ts +0 -0
  3860. /package/{types/ui → ui}/components/IconById/IconById.d.ts +0 -0
  3861. /package/{types/ui → ui}/components/Illustration/Illustration.d.ts +0 -0
  3862. /package/{types/ui → ui}/components/Illustration/context.d.ts +0 -0
  3863. /package/{types/ui → ui}/components/Illustration/getIllustrationStore.d.ts +0 -0
  3864. /package/{types/ui → ui}/components/Illustration/getRebrandingIllustrationStore.d.ts +0 -0
  3865. /package/{types/ui → ui}/components/Illustration/types.d.ts +0 -0
  3866. /package/{types/ui → ui}/components/Illustration/utils.d.ts +0 -0
  3867. /package/{types/ui → ui}/components/InaccessibleOnMobileInset/InaccessibleOnMobileInset.d.ts +0 -0
  3868. /package/{types/ui → ui}/components/Interpolate/Interpolate.d.ts +0 -0
  3869. /package/{types/ui → ui}/components/Interpolate/index.d.ts +0 -0
  3870. /package/{types/ui → ui}/components/Interpolate/utils.d.ts +0 -0
  3871. /package/{types/ui → ui}/components/InterpolatedText/InterpolatedText.d.ts +0 -0
  3872. /package/{types/ui → ui}/components/LandingPage/LandingPage.d.ts +0 -0
  3873. /package/{types/ui → ui}/components/ListWithMenu/ListWithMenu.d.ts +0 -0
  3874. /package/{types/ui → ui}/components/ListWithRemove/ListWithRemove.d.ts +0 -0
  3875. /package/{types/ui → ui}/components/LocationChange/LocationChange.d.ts +0 -0
  3876. /package/{types/ui → ui}/components/MarkdownControl/MarkdownControl.d.ts +0 -0
  3877. /package/{types/ui → ui}/components/MarkdownHelpPopover/Content.d.ts +0 -0
  3878. /package/{types/ui → ui}/components/MarkdownHelpPopover/MarkdownHelpPopover.d.ts +0 -0
  3879. /package/{types/ui → ui}/components/Markup/Markup.d.ts +0 -0
  3880. /package/{types/ui → ui}/components/Markup/components/MarkupTooltip/MarkupTooltip.d.ts +0 -0
  3881. /package/{types/ui → ui}/components/Markup/components/UserInfo/UserInfo.d.ts +0 -0
  3882. /package/{types/ui → ui}/components/Markup/components/index.d.ts +0 -0
  3883. /package/{types/ui → ui}/components/Markup/index.d.ts +0 -0
  3884. /package/{types/ui → ui}/components/Markup/types.d.ts +0 -0
  3885. /package/{types/ui → ui}/components/Markup/utils.d.ts +0 -0
  3886. /package/{types/ui → ui}/components/MigrateToWorkbookDialog/MigrateToWorkbookDialog.d.ts +0 -0
  3887. /package/{types/ui → ui}/components/MigrateToWorkbookDialog/components/Body/Body.d.ts +0 -0
  3888. /package/{types/ui → ui}/components/MigrateToWorkbookDialog/components/Body/index.d.ts +0 -0
  3889. /package/{types/ui → ui}/components/MigrateToWorkbookDialog/components/EntriesGroup/EntriesGroup.d.ts +0 -0
  3890. /package/{types/ui → ui}/components/MigrateToWorkbookDialog/components/EntriesGroup/index.d.ts +0 -0
  3891. /package/{types/ui → ui}/components/MigrateToWorkbookDialog/components/EntryRow/EntryRow.d.ts +0 -0
  3892. /package/{types/ui → ui}/components/MigrateToWorkbookDialog/components/EntryRow/index.d.ts +0 -0
  3893. /package/{types/ui → ui}/components/MigrateToWorkbookDialog/index.d.ts +0 -0
  3894. /package/{types/ui → ui}/components/MobileHeader/MobileHeader.d.ts +0 -0
  3895. /package/{types/ui → ui}/components/MobileHeader/MobileHeaderComponent/BurgerMenuFooter/BurgerMenuFooter.d.ts +0 -0
  3896. /package/{types/ui → ui}/components/MobileHeader/MobileHeaderComponent/MobileHeaderComponent.d.ts +0 -0
  3897. /package/{types/ui → ui}/components/MobileHeader/MobileHeaderComponent/UserPanel/UserPanel.d.ts +0 -0
  3898. /package/{types/ui → ui}/components/MobileHeader/constants.d.ts +0 -0
  3899. /package/{types/ui → ui}/components/MobileTocToggle/MobileTocToggle.d.ts +0 -0
  3900. /package/{types/ui → ui}/components/Monaco/LazyMonaco.d.ts +0 -0
  3901. /package/{types/ui → ui}/components/Monaco/Monaco.d.ts +0 -0
  3902. /package/{types/ui → ui}/components/Navigation/Base/NavigationBase.d.ts +0 -0
  3903. /package/{types/ui → ui}/components/Navigation/Base/configure.d.ts +0 -0
  3904. /package/{types/ui → ui}/components/Navigation/Base/types.d.ts +0 -0
  3905. /package/{types/ui → ui}/components/Navigation/Base/utils.d.ts +0 -0
  3906. /package/{types/ui → ui}/components/Navigation/Core/CreateEntry/getCreateEntryItems.d.ts +0 -0
  3907. /package/{types/ui → ui}/components/Navigation/Core/EntryContextButton/EntryContextButton.d.ts +0 -0
  3908. /package/{types/ui → ui}/components/Navigation/Core/ErrorView/ErrorView.d.ts +0 -0
  3909. /package/{types/ui → ui}/components/Navigation/Core/FavoritesNameWithAliasItem/FavoritesNameWithAliasItem.d.ts +0 -0
  3910. /package/{types/ui → ui}/components/Navigation/Core/NavigationBreadcrumbs/BreadcrumbMenu.d.ts +0 -0
  3911. /package/{types/ui → ui}/components/Navigation/Core/NavigationBreadcrumbs/NavigationBreadcrumbs.d.ts +0 -0
  3912. /package/{types/ui → ui}/components/Navigation/Core/NavigationEntries.d.ts +0 -0
  3913. /package/{types/ui → ui}/components/Navigation/Core/NavigationInline.d.ts +0 -0
  3914. /package/{types/ui → ui}/components/Navigation/Core/NavigationMinimal.d.ts +0 -0
  3915. /package/{types/ui → ui}/components/Navigation/Core/NavigationModal.d.ts +0 -0
  3916. /package/{types/ui → ui}/components/Navigation/Core/OrderSelect/OrderSelect.d.ts +0 -0
  3917. /package/{types/ui → ui}/components/Navigation/Core/SearchInput/SearchInput.d.ts +0 -0
  3918. /package/{types/ui → ui}/components/Navigation/Core/Sidebar/Sidebar.d.ts +0 -0
  3919. /package/{types/ui → ui}/components/Navigation/Core/TableView/BatchDialog/BatchDialog.d.ts +0 -0
  3920. /package/{types/ui → ui}/components/Navigation/Core/TableView/List/List.d.ts +0 -0
  3921. /package/{types/ui → ui}/components/Navigation/Core/TableView/Row/Row.d.ts +0 -0
  3922. /package/{types/ui → ui}/components/Navigation/Core/TableView/Row/RowHeader.d.ts +0 -0
  3923. /package/{types/ui → ui}/components/Navigation/Core/TableView/TableView.d.ts +0 -0
  3924. /package/{types/ui → ui}/components/Navigation/Core/TableView/types.d.ts +0 -0
  3925. /package/{types/ui → ui}/components/Navigation/Core/TableView/useBatchSelect.d.ts +0 -0
  3926. /package/{types/ui → ui}/components/Navigation/NavigationMinimal.d.ts +0 -0
  3927. /package/{types/ui → ui}/components/Navigation/NavigationModal.d.ts +0 -0
  3928. /package/{types/ui → ui}/components/Navigation/PlaceSelect/PlaceSelect.d.ts +0 -0
  3929. /package/{types/ui → ui}/components/Navigation/components/BatchPanel/BatchPanel.d.ts +0 -0
  3930. /package/{types/ui → ui}/components/Navigation/components/EmptyState/EmptyState.d.ts +0 -0
  3931. /package/{types/ui → ui}/components/Navigation/components/EmptyState/utils.d.ts +0 -0
  3932. /package/{types/ui → ui}/components/Navigation/constants.d.ts +0 -0
  3933. /package/{types/ui → ui}/components/Navigation/dialogs/BatchMove/AccessError/AccessError.d.ts +0 -0
  3934. /package/{types/ui → ui}/components/Navigation/dialogs/BatchMove/BatchMove.d.ts +0 -0
  3935. /package/{types/ui → ui}/components/Navigation/dialogs/BatchMove/MoveError/MoveError.d.ts +0 -0
  3936. /package/{types/ui → ui}/components/Navigation/dialogs/BatchMove/SelectDestination/SelectDestination.d.ts +0 -0
  3937. /package/{types/ui → ui}/components/Navigation/dialogs/BatchMove/types.d.ts +0 -0
  3938. /package/{types/ui → ui}/components/Navigation/hoc/resolveNavigationPath.d.ts +0 -0
  3939. /package/{types/ui → ui}/components/Navigation/index.d.ts +0 -0
  3940. /package/{types/ui → ui}/components/Navigation/settings.d.ts +0 -0
  3941. /package/{types/ui → ui}/components/Navigation/types.d.ts +0 -0
  3942. /package/{types/ui → ui}/components/Navigation/util.d.ts +0 -0
  3943. /package/{types/ui → ui}/components/NavigationPrompt/NavigationPrompt.d.ts +0 -0
  3944. /package/{types/ui → ui}/components/NavigationTabs/NavigationTabs.d.ts +0 -0
  3945. /package/{types/ui → ui}/components/NumberFormatSettings/NumberFormatSettings.d.ts +0 -0
  3946. /package/{types/ui → ui}/components/NumberFormatSettings/NumberInput/NumberInput.d.ts +0 -0
  3947. /package/{types/ui → ui}/components/OpenDialogNeedReset/OpenDialogNeedReset.d.ts +0 -0
  3948. /package/{types/ui → ui}/components/OrderBySelect/OrderBySelect.d.ts +0 -0
  3949. /package/{types/ui → ui}/components/OrderBySelect/constants.d.ts +0 -0
  3950. /package/{types/ui → ui}/components/OrderBySelect/index.d.ts +0 -0
  3951. /package/{types/ui → ui}/components/OrderBySelect/types.d.ts +0 -0
  3952. /package/{types/ui → ui}/components/PageTitle/PageTitle.d.ts +0 -0
  3953. /package/{types/ui → ui}/components/PageTitle/index.d.ts +0 -0
  3954. /package/{types/ui → ui}/components/PageTitle/usePageTitle.d.ts +0 -0
  3955. /package/{types/ui → ui}/components/PaletteIcon/PaletteIcon.d.ts +0 -0
  3956. /package/{types/ui → ui}/components/PaletteItem/PaletteItem.d.ts +0 -0
  3957. /package/{types/ui → ui}/components/PathSelect/PathSelect.d.ts +0 -0
  3958. /package/{types/ui → ui}/components/Picture/Picture.d.ts +0 -0
  3959. /package/{types/ui → ui}/components/PlaceholderIllustration/PlaceholderIllustration.d.ts +0 -0
  3960. /package/{types/ui → ui}/components/PlaceholderIllustration/types.d.ts +0 -0
  3961. /package/{types/ui → ui}/components/Progress/DialogCounterProgress.d.ts +0 -0
  3962. /package/{types/ui → ui}/components/ProgressBar/ProgressBar.d.ts +0 -0
  3963. /package/{types/ui → ui}/components/RelativeDatesPicker/RelativeDatesPicker.d.ts +0 -0
  3964. /package/{types/ui → ui}/components/RelativeDatesPicker/constants.d.ts +0 -0
  3965. /package/{types/ui → ui}/components/RelativeDatesPicker/types.d.ts +0 -0
  3966. /package/{types/ui → ui}/components/RelativeDatesPicker/utils.d.ts +0 -0
  3967. /package/{types/ui → ui}/components/RevisionStatusPoint/RevisionStatusPoint.d.ts +0 -0
  3968. /package/{types/ui → ui}/components/Revisions/Revisions.d.ts +0 -0
  3969. /package/{types/ui → ui}/components/Revisions/RevisionsList/RevisionsList.d.ts +0 -0
  3970. /package/{types/ui → ui}/components/Revisions/helpers.d.ts +0 -0
  3971. /package/{types/ui → ui}/components/Revisions/types.d.ts +0 -0
  3972. /package/{types/ui → ui}/components/RevisionsPanel/RevisionsPanel.d.ts +0 -0
  3973. /package/{types/ui → ui}/components/RevisionsPanel/components/RevisionsControls.d.ts +0 -0
  3974. /package/{types/ui → ui}/components/RevisionsPanel/utils.d.ts +0 -0
  3975. /package/{types/ui → ui}/components/ScrollableWithShadow/ScrollableWithShadow.d.ts +0 -0
  3976. /package/{types/ui → ui}/components/SectionWrapper/SectionWrapper.d.ts +0 -0
  3977. /package/{types/ui → ui}/components/Select/constants/SelectStyles.d.ts +0 -0
  3978. /package/{types/ui → ui}/components/Select/hooks/useSelectAsyncFetch/useIntersection.d.ts +0 -0
  3979. /package/{types/ui → ui}/components/Select/hooks/useSelectAsyncFetch/useSelectAsyncFetch.d.ts +0 -0
  3980. /package/{types/ui → ui}/components/Select/hooks/useSelectInfinityFetch/types.d.ts +0 -0
  3981. /package/{types/ui → ui}/components/Select/hooks/useSelectInfinityFetch/useSelectInfinityFetch.d.ts +0 -0
  3982. /package/{types/ui → ui}/components/Select/hooks/useSelectOptionsEnhancer.d.ts +0 -0
  3983. /package/{types/ui → ui}/components/Select/hooks/useSelectRenderEmptyOptions/useSelectRenderEmptyOptions.d.ts +0 -0
  3984. /package/{types/ui → ui}/components/Select/hooks/useSelectRenderError.d.ts +0 -0
  3985. /package/{types/ui → ui}/components/Select/hooks/useSelectRenderFilter/useSelectRenderFilter.d.ts +0 -0
  3986. /package/{types/ui → ui}/components/Select/wrappers/SelectAsync.d.ts +0 -0
  3987. /package/{types/ui → ui}/components/Select/wrappers/SelectFeatured.d.ts +0 -0
  3988. /package/{types/ui → ui}/components/Select/wrappers/SelectFeaturedAsync.d.ts +0 -0
  3989. /package/{types/ui → ui}/components/SelectComponents/components/SelectOptionWithIcon/SelectOptionWithIcon.d.ts +0 -0
  3990. /package/{types/ui → ui}/components/SelectComponents/index.d.ts +0 -0
  3991. /package/{types/ui → ui}/components/SelectMigrationToWorkbookDialog/Body/Body.d.ts +0 -0
  3992. /package/{types/ui → ui}/components/SelectMigrationToWorkbookDialog/SelectMigrationToWorkbookDialog.d.ts +0 -0
  3993. /package/{types/ui → ui}/components/SelectMigrationToWorkbookDialog/constants.d.ts +0 -0
  3994. /package/{types/ui → ui}/components/SelectMigrationToWorkbookDialog/index.d.ts +0 -0
  3995. /package/{types/ui → ui}/components/SharedBindingsList/ListSearch.d.ts +0 -0
  3996. /package/{types/ui → ui}/components/SharedBindingsList/SharedBindingsList.d.ts +0 -0
  3997. /package/{types/ui → ui}/components/SharedEntryIcon/SharedEntryIcon.d.ts +0 -0
  3998. /package/{types/ui → ui}/components/SlugifyUrl/SlugifyUrl.d.ts +0 -0
  3999. /package/{types/ui → ui}/components/SlugifyUrl/index.d.ts +0 -0
  4000. /package/{types/ui → ui}/components/SmartLoader/SmartLoader.d.ts +0 -0
  4001. /package/{types/ui → ui}/components/TabMenu/TabMenu.d.ts +0 -0
  4002. /package/{types/ui → ui}/components/TabMenu/types.d.ts +0 -0
  4003. /package/{types/ui → ui}/components/Tabs/Tabs.d.ts +0 -0
  4004. /package/{types/ui → ui}/components/Tabs/withDatalensSpecific.d.ts +0 -0
  4005. /package/{types/ui → ui}/components/TagInput/TagInput.d.ts +0 -0
  4006. /package/{types/ui → ui}/components/TemplateTextPaper/TemplateTextPaper.d.ts +0 -0
  4007. /package/{types/ui → ui}/components/TextEditor/TextEditor.d.ts +0 -0
  4008. /package/{types/ui → ui}/components/UserAvatar/UserAvatarById.d.ts +0 -0
  4009. /package/{types/ui → ui}/components/UserMenu/UserAvatar.d.ts +0 -0
  4010. /package/{types/ui → ui}/components/UserMenu/UserMenu.d.ts +0 -0
  4011. /package/{types/ui → ui}/components/UsersSuggest/UsersSuggest.d.ts +0 -0
  4012. /package/{types/ui → ui}/components/UsersSuggest/types.d.ts +0 -0
  4013. /package/{types/ui → ui}/components/ValuesList/ValuesList.d.ts +0 -0
  4014. /package/{types/ui → ui}/components/Veil/Veil.d.ts +0 -0
  4015. /package/{types/ui → ui}/components/ViewAsync/ViewAsync.d.ts +0 -0
  4016. /package/{types/ui → ui}/components/ViewError/ViewError.d.ts +0 -0
  4017. /package/{types/ui → ui}/components/ViewLoader/ViewLoader.d.ts +0 -0
  4018. /package/{types/ui → ui}/components/WidgetRoundingsInput/WidgetRoundingsInput.d.ts +0 -0
  4019. /package/{types/ui → ui}/components/Widgets/Chart/Chart.d.ts +0 -0
  4020. /package/{types/ui → ui}/components/Widgets/Chart/ChartAlert.d.ts +0 -0
  4021. /package/{types/ui → ui}/components/Widgets/Chart/ChartSelector.d.ts +0 -0
  4022. /package/{types/ui → ui}/components/Widgets/Chart/ChartWidget.d.ts +0 -0
  4023. /package/{types/ui → ui}/components/Widgets/Chart/ChartWidgetWithProvider.d.ts +0 -0
  4024. /package/{types/ui → ui}/components/Widgets/Chart/components/ChartInfoIcon.d.ts +0 -0
  4025. /package/{types/ui → ui}/components/Widgets/Chart/components/Content.d.ts +0 -0
  4026. /package/{types/ui → ui}/components/Widgets/Chart/components/Header.d.ts +0 -0
  4027. /package/{types/ui → ui}/components/Widgets/Chart/components/WidgetFooter.d.ts +0 -0
  4028. /package/{types/ui → ui}/components/Widgets/Chart/components/WidgetHeader.d.ts +0 -0
  4029. /package/{types/ui → ui}/components/Widgets/Chart/hooks/useAutoHeightResizeObserver.d.ts +0 -0
  4030. /package/{types/ui → ui}/components/Widgets/Chart/hooks/useChartActivities.d.ts +0 -0
  4031. /package/{types/ui → ui}/components/Widgets/Chart/hooks/useIntersectionObserver.d.ts +0 -0
  4032. /package/{types/ui → ui}/components/Widgets/Chart/hooks/useLoadingChart.d.ts +0 -0
  4033. /package/{types/ui → ui}/components/Widgets/Chart/hooks/useLoadingChartSelector.d.ts +0 -0
  4034. /package/{types/ui → ui}/components/Widgets/Chart/hooks/useMemoCallback.d.ts +0 -0
  4035. /package/{types/ui → ui}/components/Widgets/Chart/store/reducer.d.ts +0 -0
  4036. /package/{types/ui → ui}/components/Widgets/Chart/store/types.d.ts +0 -0
  4037. /package/{types/ui → ui}/components/Widgets/Chart/types.d.ts +0 -0
  4038. /package/{types/ui → ui}/components/Widgets/Chart/utils.d.ts +0 -0
  4039. /package/{types/ui → ui}/components/WorkbookIcon/WorkbookIcon.d.ts +0 -0
  4040. /package/{types/ui → ui}/components/WorkbookNavigationMinimal/WorkbookNavigationMinimal.d.ts +0 -0
  4041. /package/{types/ui → ui}/components/WorkbookNavigationMinimal/components/ListWithSharedEntries.d.ts +0 -0
  4042. /package/{types/ui → ui}/components/WorkbookNavigationMinimal/constants.d.ts +0 -0
  4043. /package/{types/ui → ui}/components/WorkbookNavigationMinimal/types.d.ts +0 -0
  4044. /package/{types/ui → ui}/components/YfmWrapper/YfmWrapper.d.ts +0 -0
  4045. /package/{types/ui → ui}/components/YfmWrapper/YfmWrapperContent.d.ts +0 -0
  4046. /package/{types/ui → ui}/components/common/Datepicker/Calendar/Calendar.d.ts +0 -0
  4047. /package/{types/ui → ui}/components/common/Datepicker/Datepicker.d.ts +0 -0
  4048. /package/{types/ui → ui}/components/common/Datepicker/Month/Month.d.ts +0 -0
  4049. /package/{types/ui → ui}/components/common/Datepicker/Months/Months.d.ts +0 -0
  4050. /package/{types/ui → ui}/components/common/Datepicker/PopupContent/PopupContent.d.ts +0 -0
  4051. /package/{types/ui → ui}/components/common/Datepicker/Presets/Presets.d.ts +0 -0
  4052. /package/{types/ui → ui}/components/common/Datepicker/Quarters/Quarters.d.ts +0 -0
  4053. /package/{types/ui → ui}/components/common/Datepicker/YearSwitcher/YearSwitcher.d.ts +0 -0
  4054. /package/{types/ui → ui}/components/common/Datepicker/Years/Years.d.ts +0 -0
  4055. /package/{types/ui → ui}/components/common/Datepicker/constants.d.ts +0 -0
  4056. /package/{types/ui → ui}/components/common/Datepicker/index.d.ts +0 -0
  4057. /package/{types/ui → ui}/components/common/Datepicker/utils.d.ts +0 -0
  4058. /package/{types/ui → ui}/components/common/DatepickerControl/DatepickerControl.d.ts +0 -0
  4059. /package/{types/ui → ui}/components/common/RangeInputPicker/RangeInputPicker.d.ts +0 -0
  4060. /package/{types/ui → ui}/components/common/RangeInputPicker/constants.d.ts +0 -0
  4061. /package/{types/ui → ui}/components/common/RangeInputPicker/index.d.ts +0 -0
  4062. /package/{types/ui → ui}/components/common/RangeInputPicker/types.d.ts +0 -0
  4063. /package/{types/ui → ui}/components/common/RangeInputPicker/utils.d.ts +0 -0
  4064. /package/{types/ui → ui}/components/common/YCSelect/Item/Item.d.ts +0 -0
  4065. /package/{types/ui → ui}/components/common/YCSelect/Items/Items.d.ts +0 -0
  4066. /package/{types/ui → ui}/components/common/YCSelect/Search/Search.d.ts +0 -0
  4067. /package/{types/ui → ui}/components/common/YCSelect/YCSelect.d.ts +0 -0
  4068. /package/{types/ui → ui}/components/common/YCSelect/constants.d.ts +0 -0
  4069. /package/{types/ui → ui}/components/common/YCSelect/index.d.ts +0 -0
  4070. /package/{types/ui → ui}/components/common/YCSelect/isBothEmpty.d.ts +0 -0
  4071. /package/{types/ui → ui}/components/common/YCSelect/utils.d.ts +0 -0
  4072. /package/{types/ui → ui}/configs/common/icons.d.ts +0 -0
  4073. /package/{types/ui → ui}/configs/index.d.ts +0 -0
  4074. /package/{types/ui → ui}/constants/common.d.ts +0 -0
  4075. /package/{types/ui → ui}/constants/connections.d.ts +0 -0
  4076. /package/{types/ui → ui}/constants/dialogs.d.ts +0 -0
  4077. /package/{types/ui → ui}/constants/embedded.d.ts +0 -0
  4078. /package/{types/ui → ui}/constants/index.d.ts +0 -0
  4079. /package/{types/ui → ui}/constants/misc.d.ts +0 -0
  4080. /package/{types/ui → ui}/constants/mobile.d.ts +0 -0
  4081. /package/{types/ui → ui}/constants/navigation.d.ts +0 -0
  4082. /package/{types/ui → ui}/constants/operations.d.ts +0 -0
  4083. /package/{types/ui → ui}/constants/visualizations/combined-chart.d.ts +0 -0
  4084. /package/{types/ui → ui}/constants/visualizations/donut.d.ts +0 -0
  4085. /package/{types/ui → ui}/constants/visualizations/flatTable.d.ts +0 -0
  4086. /package/{types/ui → ui}/constants/visualizations/geolayer.d.ts +0 -0
  4087. /package/{types/ui → ui}/constants/visualizations/geopoint.d.ts +0 -0
  4088. /package/{types/ui → ui}/constants/visualizations/geopolygon.d.ts +0 -0
  4089. /package/{types/ui → ui}/constants/visualizations/heatmap.d.ts +0 -0
  4090. /package/{types/ui → ui}/constants/visualizations/index.d.ts +0 -0
  4091. /package/{types/ui → ui}/constants/visualizations/line.d.ts +0 -0
  4092. /package/{types/ui → ui}/constants/visualizations/metric.d.ts +0 -0
  4093. /package/{types/ui → ui}/constants/visualizations/pie.d.ts +0 -0
  4094. /package/{types/ui → ui}/constants/visualizations/pivotTable.d.ts +0 -0
  4095. /package/{types/ui → ui}/constants/visualizations/polyline.d.ts +0 -0
  4096. /package/{types/ui → ui}/constants/visualizations/scatter.d.ts +0 -0
  4097. /package/{types/ui → ui}/constants/visualizations/treemap.d.ts +0 -0
  4098. /package/{types/ui → ui}/constants/visualizations/utils.d.ts +0 -0
  4099. /package/{types/ui → ui}/constants/workbooks.d.ts +0 -0
  4100. /package/{types/ui → ui}/constants/yfm.d.ts +0 -0
  4101. /package/{types/ui → ui}/datalens/helpers.d.ts +0 -0
  4102. /package/{types/ui → ui}/datalens/hooks.d.ts +0 -0
  4103. /package/{types/ui → ui}/datalens/index.d.ts +0 -0
  4104. /package/{types/ui → ui}/datalens/pages/AuthPage/AuthPage.d.ts +0 -0
  4105. /package/{types/ui → ui}/datalens/pages/CollectionsNavigationPage/CollectionsNavigationPage.d.ts +0 -0
  4106. /package/{types/ui → ui}/datalens/pages/ConnectionsPage/ConnectionsPage.d.ts +0 -0
  4107. /package/{types/ui → ui}/datalens/pages/DashAndWizardQLPages/DashAndWizardQLPages.d.ts +0 -0
  4108. /package/{types/ui → ui}/datalens/pages/DashPage/DashPage.d.ts +0 -0
  4109. /package/{types/ui → ui}/datalens/pages/DatasetPage/DatasetPage.d.ts +0 -0
  4110. /package/{types/ui → ui}/datalens/pages/FallbackPage/FallbackPage.d.ts +0 -0
  4111. /package/{types/ui → ui}/datalens/pages/LandingPage/LandingPage.d.ts +0 -0
  4112. /package/{types/ui → ui}/datalens/pages/MainPage/MainPage.d.ts +0 -0
  4113. /package/{types/ui → ui}/datalens/pages/OwnUserProfilePage/OwnUserProfilePage.d.ts +0 -0
  4114. /package/{types/ui → ui}/datalens/pages/PreviewPage/PreviewPage.d.ts +0 -0
  4115. /package/{types/ui → ui}/datalens/pages/QLPage/QLPage.d.ts +0 -0
  4116. /package/{types/ui → ui}/datalens/pages/ServiceSettingsPage/ServiceSettingsPage.d.ts +0 -0
  4117. /package/{types/ui → ui}/datalens/pages/WizardPage/WizardPage.d.ts +0 -0
  4118. /package/{types/ui → ui}/entries/dl-main.d.ts +0 -0
  4119. /package/{types/ui → ui}/hoc/index.d.ts +0 -0
  4120. /package/{types/ui → ui}/hoc/withEnabledFeature.d.ts +0 -0
  4121. /package/{types/ui → ui}/hoc/withHiddenUnmount.d.ts +0 -0
  4122. /package/{types/ui → ui}/hoc/withHotkeysContext.d.ts +0 -0
  4123. /package/{types/ui → ui}/hoc/withInaccessibleOnMobile.d.ts +0 -0
  4124. /package/{types/ui → ui}/hoc/withPromiseOpen.d.ts +0 -0
  4125. /package/{types/ui → ui}/hooks/index.d.ts +0 -0
  4126. /package/{types/ui → ui}/hooks/useBeforeLoad.d.ts +0 -0
  4127. /package/{types/ui → ui}/hooks/useBindHotkey.d.ts +0 -0
  4128. /package/{types/ui → ui}/hooks/useChangedProp.d.ts +0 -0
  4129. /package/{types/ui → ui}/hooks/useEffectOnce.d.ts +0 -0
  4130. /package/{types/ui → ui}/hooks/useEnterClick.d.ts +0 -0
  4131. /package/{types/ui → ui}/hooks/useHover.d.ts +0 -0
  4132. /package/{types/ui → ui}/hooks/useLocalStorageFallback.d.ts +0 -0
  4133. /package/{types/ui → ui}/hooks/useMarkdown.d.ts +0 -0
  4134. /package/{types/ui → ui}/hooks/useMountedState.d.ts +0 -0
  4135. /package/{types/ui → ui}/hooks/useOutsideClick.d.ts +0 -0
  4136. /package/{types/ui → ui}/hooks/usePrevious.d.ts +0 -0
  4137. /package/{types/ui → ui}/hooks/useRefMounted.d.ts +0 -0
  4138. /package/{types/ui → ui}/hooks/useSetState.d.ts +0 -0
  4139. /package/{types/ui → ui}/hooks/useShallowEqualSelector.d.ts +0 -0
  4140. /package/{types/ui → ui}/hooks/useSyncedState.d.ts +0 -0
  4141. /package/{types/ui → ui}/hooks/useTitle.d.ts +0 -0
  4142. /package/{types/ui → ui}/index.d.ts +0 -0
  4143. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/ChartKit.d.ts +0 -0
  4144. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/ChartKitAdapter.d.ts +0 -0
  4145. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/ChartKitTooltip/ChartKitTooltip.d.ts +0 -0
  4146. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Error/Error.d.ts +0 -0
  4147. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/IconRenderer.d.ts +0 -0
  4148. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/CirclePointIcon.d.ts +0 -0
  4149. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DashDotLineIcon.d.ts +0 -0
  4150. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DashLineIcon.d.ts +0 -0
  4151. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DiamondPointIcon.d.ts +0 -0
  4152. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DotLineIcon.d.ts +0 -0
  4153. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/LongDashDotDotLineIcon.d.ts +0 -0
  4154. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/LongDashDotLineIcon.d.ts +0 -0
  4155. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/LongDashLineIcon.d.ts +0 -0
  4156. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDashDotDotLineIcon.d.ts +0 -0
  4157. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDashDotLineIcon.d.ts +0 -0
  4158. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDashLineIcon.d.ts +0 -0
  4159. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDotLineIcon.d.ts +0 -0
  4160. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/SolidLineIcon.d.ts +0 -0
  4161. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/SquarePointIcon.d.ts +0 -0
  4162. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/TriangleDownPointIcon.d.ts +0 -0
  4163. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/TrianglePointIcon.d.ts +0 -0
  4164. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/constants.d.ts +0 -0
  4165. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/renderTooltipIcon.d.ts +0 -0
  4166. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/DashDotLineIcon.d.ts +0 -0
  4167. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/DashLineIcon.d.ts +0 -0
  4168. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/DotLineIcon.d.ts +0 -0
  4169. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/LongDashDotDotLineIcon.d.ts +0 -0
  4170. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/LongDashDotLineIcon.d.ts +0 -0
  4171. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/LongDashLineIcon.d.ts +0 -0
  4172. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDashDotDotLineIcon.d.ts +0 -0
  4173. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDashDotLineIcon.d.ts +0 -0
  4174. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDashLineIcon.d.ts +0 -0
  4175. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDotLineIcon.d.ts +0 -0
  4176. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/SolidLineIcon.d.ts +0 -0
  4177. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/index.d.ts +0 -0
  4178. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/types.d.ts +0 -0
  4179. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/utils.d.ts +0 -0
  4180. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Loader/Loader.d.ts +0 -0
  4181. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/Widget.d.ts +0 -0
  4182. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/AlertWidget/AlertWidget.d.ts +0 -0
  4183. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/AlertWidget/utils.d.ts +0 -0
  4184. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Markdown/Markdown.d.ts +0 -0
  4185. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Bar/Bar.d.ts +0 -0
  4186. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Bar/types.d.ts +0 -0
  4187. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Bar/utils.d.ts +0 -0
  4188. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Paginator/Paginator.d.ts +0 -0
  4189. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Table.d.ts +0 -0
  4190. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/WrappedHTMLNode.d.ts +0 -0
  4191. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/types.d.ts +0 -0
  4192. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/action-params.d.ts +0 -0
  4193. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/event-handlers.d.ts +0 -0
  4194. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/index.d.ts +0 -0
  4195. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/misc.d.ts +0 -0
  4196. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/render.d.ts +0 -0
  4197. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/types.d.ts +0 -0
  4198. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/validation.d.ts +0 -0
  4199. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/constants.d.ts +0 -0
  4200. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/index.d.ts +0 -0
  4201. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/index.d.ts +0 -0
  4202. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/action-params-handlers.d.ts +0 -0
  4203. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/apply-hc-handlers.d.ts +0 -0
  4204. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/chartkitAdapter.d.ts +0 -0
  4205. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/constants.d.ts +0 -0
  4206. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/getRandomCKId.d.ts +0 -0
  4207. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/chart-to-table.d.ts +0 -0
  4208. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/chartkit-adapter.d.ts +0 -0
  4209. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/comments.d.ts +0 -0
  4210. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/event-handlers.d.ts +0 -0
  4211. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/holidays.d.ts +0 -0
  4212. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/utils.d.ts +0 -0
  4213. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/tooltip.d.ts +0 -0
  4214. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/types.d.ts +0 -0
  4215. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/utils.d.ts +0 -0
  4216. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/wait-for-content.d.ts +0 -0
  4217. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/init.d.ts +0 -0
  4218. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/chartkit-custom-error/chartkit-custom-error.d.ts +0 -0
  4219. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/comments/drawing.d.ts +0 -0
  4220. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/handleLegendItemClick.d.ts +0 -0
  4221. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/options.d.ts +0 -0
  4222. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/addShowInNavigatorToSeries.d.ts +0 -0
  4223. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/buildNavigatorFallback.d.ts +0 -0
  4224. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/calculatePrecision.d.ts +0 -0
  4225. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/concatStrings.d.ts +0 -0
  4226. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/getChartKitFormattedValue.d.ts +0 -0
  4227. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/getFormatOptionsFromLine.d.ts +0 -0
  4228. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/getXAxisThresholdValue.d.ts +0 -0
  4229. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/index.d.ts +0 -0
  4230. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/isSafari.d.ts +0 -0
  4231. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/isTooltipShared.d.ts +0 -0
  4232. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/localStorage.d.ts +0 -0
  4233. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/mergeArrayWithObject.d.ts +0 -0
  4234. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/numberFormat.d.ts +0 -0
  4235. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/setNavigatorDefaultPeriod.d.ts +0 -0
  4236. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/graph.d.ts +0 -0
  4237. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/prepare-data.d.ts +0 -0
  4238. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/tooltip/helpers.d.ts +0 -0
  4239. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/tooltip/tooltip.d.ts +0 -0
  4240. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/tooltip/types.d.ts +0 -0
  4241. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/types/index.d.ts +0 -0
  4242. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/highcharts/colors.d.ts +0 -0
  4243. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/highcharts/helpers/calcucalteClosestPointManually.d.ts +0 -0
  4244. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/highcharts/helpers/index.d.ts +0 -0
  4245. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/highcharts/highcharts.d.ts +0 -0
  4246. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/i18n/i18n.d.ts +0 -0
  4247. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/i18n/keysets/en.d.ts +0 -0
  4248. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/i18n/keysets/ru.d.ts +0 -0
  4249. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/map/map.d.ts +0 -0
  4250. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/map/options.d.ts +0 -0
  4251. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/map/tooltip/tooltip.d.ts +0 -0
  4252. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/perfomance.d.ts +0 -0
  4253. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/helpers/fetch-script.d.ts +0 -0
  4254. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/helpers/index.d.ts +0 -0
  4255. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/helpers/number-format.d.ts +0 -0
  4256. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/Canvas.d.ts +0 -0
  4257. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/DataConverter.d.ts +0 -0
  4258. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/Heatmap.d.ts +0 -0
  4259. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/TileUrlsGenerator.d.ts +0 -0
  4260. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/Gridmap.d.ts +0 -0
  4261. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/index.d.ts +0 -0
  4262. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/utils/hexagonGrid.d.ts +0 -0
  4263. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/utils/squareGrid.d.ts +0 -0
  4264. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/Polygonmap.d.ts +0 -0
  4265. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/colorLegend.d.ts +0 -0
  4266. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/colorize.d.ts +0 -0
  4267. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/colorize.test.d.ts +0 -0
  4268. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultBalloonContent.d.ts +0 -0
  4269. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultFilter.d.ts +0 -0
  4270. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultFilter.test.d.ts +0 -0
  4271. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultMapper.d.ts +0 -0
  4272. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultMapper.test.d.ts +0 -0
  4273. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultOnClick.d.ts +0 -0
  4274. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultOnMouseEnter.d.ts +0 -0
  4275. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultOnMouseLeave.d.ts +0 -0
  4276. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/inside.d.ts +0 -0
  4277. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/inside.test.d.ts +0 -0
  4278. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/normalizeFeature.d.ts +0 -0
  4279. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/normalizeFeature.test.d.ts +0 -0
  4280. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/modules.d.ts +0 -0
  4281. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/yandex-map.d.ts +0 -0
  4282. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/index.d.ts +0 -0
  4283. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/AdvancedChartWidget.d.ts +0 -0
  4284. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/components/Tooltip/Tooltip.d.ts +0 -0
  4285. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/types.d.ts +0 -0
  4286. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/utils.d.ts +0 -0
  4287. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/types.d.ts +0 -0
  4288. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/index.d.ts +0 -0
  4289. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/renderer/HighchartsMapComponent.d.ts +0 -0
  4290. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/renderer/HighchartsMapWidget.d.ts +0 -0
  4291. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/types.d.ts +0 -0
  4292. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Markup/index.d.ts +0 -0
  4293. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Markup/renderer/MarkupWidget.d.ts +0 -0
  4294. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Markup/types.d.ts +0 -0
  4295. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Metric/index.d.ts +0 -0
  4296. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Metric/renderer/MetricTile.d.ts +0 -0
  4297. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Metric/renderer/MetricWidget.d.ts +0 -0
  4298. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Metric/renderer/metricHelpers.d.ts +0 -0
  4299. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Metric/types.d.ts +0 -0
  4300. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/index.d.ts +0 -0
  4301. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/TableWidget.d.ts +0 -0
  4302. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/BarCell/BarCell.d.ts +0 -0
  4303. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/DiffCell/DiffCell.d.ts +0 -0
  4304. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/HtmlCell/HtmlCell.d.ts +0 -0
  4305. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/MarkupCell/MarkupCell.d.ts +0 -0
  4306. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/SortIcon/SortIcon.d.ts +0 -0
  4307. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/BackgroundTable.d.ts +0 -0
  4308. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/Table.d.ts +0 -0
  4309. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/TableBody.d.ts +0 -0
  4310. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/TableFooter.d.ts +0 -0
  4311. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/TableHead.d.ts +0 -0
  4312. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/cell-width.d.ts +0 -0
  4313. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/types.d.ts +0 -0
  4314. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/usePreparedTableData.d.ts +0 -0
  4315. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/utils.d.ts +0 -0
  4316. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/TableTitleView/TableTitleView.d.ts +0 -0
  4317. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/TreeCell/TreeCell.d.ts +0 -0
  4318. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/types.d.ts +0 -0
  4319. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/action-params.d.ts +0 -0
  4320. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/drill-down.d.ts +0 -0
  4321. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/index.d.ts +0 -0
  4322. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/math.d.ts +0 -0
  4323. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/migrate-to-old-format.d.ts +0 -0
  4324. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/renderer.d.ts +0 -0
  4325. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/tree.d.ts +0 -0
  4326. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/types.d.ts +0 -0
  4327. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/index.d.ts +0 -0
  4328. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Icons/EyeSlashIcon.d.ts +0 -0
  4329. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Icons/SizeIcon.d.ts +0 -0
  4330. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Layer/Layer.d.ts +0 -0
  4331. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Legend.d.ts +0 -0
  4332. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/YandexMapComponent.d.ts +0 -0
  4333. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/YandexMapWidget.d.ts +0 -0
  4334. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/events.d.ts +0 -0
  4335. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/types.d.ts +0 -0
  4336. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/utils.d.ts +0 -0
  4337. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/types.d.ts +0 -0
  4338. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/chart-storage.d.ts +0 -0
  4339. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/components/StyledSplitPane/StyledSplitPane.d.ts +0 -0
  4340. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/components/index.d.ts +0 -0
  4341. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/components/withSplitPane/withSplitPane.d.ts +0 -0
  4342. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/index.d.ts +0 -0
  4343. /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/types.d.ts +0 -0
  4344. /package/{types/ui → ui}/libs/DatalensChartkit/DatalensChartKitOld.d.ts +0 -0
  4345. /package/{types/ui → ui}/libs/DatalensChartkit/Error/Error.d.ts +0 -0
  4346. /package/{types/ui → ui}/libs/DatalensChartkit/Error/getAdditionalChartkitErrorContent.d.ts +0 -0
  4347. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/ChartKitBase.d.ts +0 -0
  4348. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Chart/Chart.d.ts +0 -0
  4349. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/ChartkitError/ChartkitError.d.ts +0 -0
  4350. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Content/store/reducer.d.ts +0 -0
  4351. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Content/store/types.d.ts +0 -0
  4352. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Control/Control.d.ts +0 -0
  4353. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/Header.d.ts +0 -0
  4354. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/ChartsInsights.d.ts +0 -0
  4355. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/components/ChartsInsightsIcon/ChartsInsightsIcon.d.ts +0 -0
  4356. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/components/ChartsInsightsIcon/getIconData.d.ts +0 -0
  4357. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/components/TooltipContent/TooltipContent.d.ts +0 -0
  4358. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/helpers/getIconLevel.d.ts +0 -0
  4359. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/ButtonSpin/ButtonSpin.d.ts +0 -0
  4360. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/ButtonSpinInput/ButtonSpinInput.d.ts +0 -0
  4361. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/ChartsModal/ChartsModal.d.ts +0 -0
  4362. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/ChartsModalMenu/ChartsModalMenu.d.ts +0 -0
  4363. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/DownloadCsv/DownloadCsv.d.ts +0 -0
  4364. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/CsvExport/CsvExport.d.ts +0 -0
  4365. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/Export.d.ts +0 -0
  4366. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/ToastContent/ToastContent.d.ts +0 -0
  4367. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/types.d.ts +0 -0
  4368. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Inspector.d.ts +0 -0
  4369. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/SourceMeta/Datalens.d.ts +0 -0
  4370. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/Source/Source.d.ts +0 -0
  4371. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/SourceError/SourceError.d.ts +0 -0
  4372. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/SourceSuccess/SourceSuccess.d.ts +0 -0
  4373. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/Sources.d.ts +0 -0
  4374. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Timings/Timings.d.ts +0 -0
  4375. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/types.d.ts +0 -0
  4376. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Modal/Body/Body.d.ts +0 -0
  4377. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Modal/Context/Context.d.ts +0 -0
  4378. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Modal/Footer/Footer.d.ts +0 -0
  4379. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Modal/Header/Header.d.ts +0 -0
  4380. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Modal/Modal.d.ts +0 -0
  4381. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/PopupMessage/PopupMessage.d.ts +0 -0
  4382. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/constants.d.ts +0 -0
  4383. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/helpers.d.ts +0 -0
  4384. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Menu.d.ts +0 -0
  4385. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/MenuWithErrorBoundary/MenuWithErrorBoundary.d.ts +0 -0
  4386. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/index.d.ts +0 -0
  4387. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Loader/Loader.d.ts +0 -0
  4388. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/helpers.d.ts +0 -0
  4389. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/types.d.ts +0 -0
  4390. /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitIcon/ChartKitIcon.d.ts +0 -0
  4391. /package/{types/ui → ui}/libs/DatalensChartkit/components/Control/Control.d.ts +0 -0
  4392. /package/{types/ui → ui}/libs/DatalensChartkit/components/Control/Items/Items.d.ts +0 -0
  4393. /package/{types/ui → ui}/libs/DatalensChartkit/components/Control/Items/withWrapForControls.d.ts +0 -0
  4394. /package/{types/ui → ui}/libs/DatalensChartkit/components/Control/types.d.ts +0 -0
  4395. /package/{types/ui → ui}/libs/DatalensChartkit/components/DeferredInitializer/DeferredInitializer.d.ts +0 -0
  4396. /package/{types/ui → ui}/libs/DatalensChartkit/components/Drill/Drill.d.ts +0 -0
  4397. /package/{types/ui → ui}/libs/DatalensChartkit/components/Error/Error.d.ts +0 -0
  4398. /package/{types/ui → ui}/libs/DatalensChartkit/components/Error/More/More.d.ts +0 -0
  4399. /package/{types/ui → ui}/libs/DatalensChartkit/components/ErrorBoundary/ErrorBoundary.d.ts +0 -0
  4400. /package/{types/ui → ui}/libs/DatalensChartkit/components/ErrorBoundary/withErrorBoundary.d.ts +0 -0
  4401. /package/{types/ui → ui}/libs/DatalensChartkit/components/Palette/Attach/Attach.d.ts +0 -0
  4402. /package/{types/ui → ui}/libs/DatalensChartkit/components/Palette/ColorItem/ColorItem.d.ts +0 -0
  4403. /package/{types/ui → ui}/libs/DatalensChartkit/components/Palette/DraggableModalHOC/DraggableModalHOC.d.ts +0 -0
  4404. /package/{types/ui → ui}/libs/DatalensChartkit/components/Palette/PaletteEditor/PaletteEditor.d.ts +0 -0
  4405. /package/{types/ui → ui}/libs/DatalensChartkit/components/Palette/PaletteSettings/PaletteSettings.d.ts +0 -0
  4406. /package/{types/ui → ui}/libs/DatalensChartkit/components/SideMarkdown/SideMarkdown.d.ts +0 -0
  4407. /package/{types/ui → ui}/libs/DatalensChartkit/extensions/alert.d.ts +0 -0
  4408. /package/{types/ui → ui}/libs/DatalensChartkit/extensions/control.d.ts +0 -0
  4409. /package/{types/ui → ui}/libs/DatalensChartkit/extensions/markdown.d.ts +0 -0
  4410. /package/{types/ui → ui}/libs/DatalensChartkit/extensions/table.d.ts +0 -0
  4411. /package/{types/ui → ui}/libs/DatalensChartkit/helpers/convert-data-to-table.d.ts +0 -0
  4412. /package/{types/ui → ui}/libs/DatalensChartkit/helpers/helpers.d.ts +0 -0
  4413. /package/{types/ui → ui}/libs/DatalensChartkit/index.d.ts +0 -0
  4414. /package/{types/ui → ui}/libs/DatalensChartkit/menu/Menu.d.ts +0 -0
  4415. /package/{types/ui → ui}/libs/DatalensChartkit/menu/helpers.d.ts +0 -0
  4416. /package/{types/ui → ui}/libs/DatalensChartkit/modules/axios/axios.d.ts +0 -0
  4417. /package/{types/ui → ui}/libs/DatalensChartkit/modules/axios/axiosConcurrency.d.ts +0 -0
  4418. /package/{types/ui → ui}/libs/DatalensChartkit/modules/constants/constants.d.ts +0 -0
  4419. /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/chartkit-handlers.d.ts +0 -0
  4420. /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/get-graph/get-graph.d.ts +0 -0
  4421. /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/get-graph/prepare-config.d.ts +0 -0
  4422. /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/get-graph/prepare-data.d.ts +0 -0
  4423. /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/helpers/getChartsInsightsData.d.ts +0 -0
  4424. /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/helpers/index.d.ts +0 -0
  4425. /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/node.d.ts +0 -0
  4426. /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/types.d.ts +0 -0
  4427. /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/ui-sandbox-runtime.d.ts +0 -0
  4428. /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/ui-sandbox.d.ts +0 -0
  4429. /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/utils.d.ts +0 -0
  4430. /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/wizard.d.ts +0 -0
  4431. /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/example.d.ts +0 -0
  4432. /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/helpers.d.ts +0 -0
  4433. /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/withDataProvider.d.ts +0 -0
  4434. /package/{types/ui → ui}/libs/DatalensChartkit/modules/datalens-chartkit-custom-error/datalens-chartkit-custom-error.d.ts +0 -0
  4435. /package/{types/ui → ui}/libs/DatalensChartkit/modules/export/export.d.ts +0 -0
  4436. /package/{types/ui → ui}/libs/DatalensChartkit/modules/extensions-manager/extensions-manager.d.ts +0 -0
  4437. /package/{types/ui → ui}/libs/DatalensChartkit/modules/html-generator/constants.d.ts +0 -0
  4438. /package/{types/ui → ui}/libs/DatalensChartkit/modules/html-generator/index.d.ts +0 -0
  4439. /package/{types/ui → ui}/libs/DatalensChartkit/modules/html-generator/utils.d.ts +0 -0
  4440. /package/{types/ui → ui}/libs/DatalensChartkit/modules/localStorage.d.ts +0 -0
  4441. /package/{types/ui → ui}/libs/DatalensChartkit/modules/menu/menu.d.ts +0 -0
  4442. /package/{types/ui → ui}/libs/DatalensChartkit/modules/perfomance.d.ts +0 -0
  4443. /package/{types/ui → ui}/libs/DatalensChartkit/modules/settings/settings.d.ts +0 -0
  4444. /package/{types/ui → ui}/libs/DatalensChartkit/modules/table.d.ts +0 -0
  4445. /package/{types/ui → ui}/libs/DatalensChartkit/types/common.d.ts +0 -0
  4446. /package/{types/ui → ui}/libs/DatalensChartkit/types/control.d.ts +0 -0
  4447. /package/{types/ui → ui}/libs/DatalensChartkit/types/dataProvider.d.ts +0 -0
  4448. /package/{types/ui → ui}/libs/DatalensChartkit/types/index.d.ts +0 -0
  4449. /package/{types/ui → ui}/libs/DatalensChartkit/types/menu.d.ts +0 -0
  4450. /package/{types/ui → ui}/libs/DatalensChartkit/types/widget.d.ts +0 -0
  4451. /package/{types/ui → ui}/libs/auth/refreshToken.d.ts +0 -0
  4452. /package/{types/ui → ui}/libs/axios/axios.d.ts +0 -0
  4453. /package/{types/ui → ui}/libs/axios/interceptors.d.ts +0 -0
  4454. /package/{types/ui → ui}/libs/datasetHelper/index.d.ts +0 -0
  4455. /package/{types/ui → ui}/libs/datasetSdk/index.d.ts +0 -0
  4456. /package/{types/ui → ui}/libs/google-analytics/index.d.ts +0 -0
  4457. /package/{types/ui → ui}/libs/index.d.ts +0 -0
  4458. /package/{types/ui → ui}/libs/logger/index.d.ts +0 -0
  4459. /package/{types/ui → ui}/libs/metrica/index.d.ts +0 -0
  4460. /package/{types/ui → ui}/libs/monaco/constants.d.ts +0 -0
  4461. /package/{types/ui → ui}/libs/monaco/dl-lang/constants.d.ts +0 -0
  4462. /package/{types/ui → ui}/libs/monaco/dl-lang/index.d.ts +0 -0
  4463. /package/{types/ui → ui}/libs/monaco/index.d.ts +0 -0
  4464. /package/{types/ui → ui}/libs/monaco/load-monaco-core.d.ts +0 -0
  4465. /package/{types/ui → ui}/libs/monaco/ql-lang/constants.d.ts +0 -0
  4466. /package/{types/ui → ui}/libs/monaco/ql-lang/index.d.ts +0 -0
  4467. /package/{types/ui → ui}/libs/monaco/theme-mappers.d.ts +0 -0
  4468. /package/{types/ui → ui}/libs/monaco/types.d.ts +0 -0
  4469. /package/{types/ui → ui}/libs/monaco/utils.d.ts +0 -0
  4470. /package/{types/ui → ui}/libs/navigateHelper/index.d.ts +0 -0
  4471. /package/{types/ui → ui}/libs/schematic-sdk/decorator.d.ts +0 -0
  4472. /package/{types/ui → ui}/libs/schematic-sdk/index.d.ts +0 -0
  4473. /package/{types/ui → ui}/libs/schematic-sdk/parse-error.d.ts +0 -0
  4474. /package/{types/ui → ui}/libs/sdk/index.d.ts +0 -0
  4475. /package/{types/ui → ui}/libs/sdk/types.d.ts +0 -0
  4476. /package/{types/ui → ui}/libs/userSettings/index.d.ts +0 -0
  4477. /package/{types/ui → ui}/modules/index.d.ts +0 -0
  4478. /package/{types/ui → ui}/modules/markdownProvider.d.ts +0 -0
  4479. /package/{types/ui → ui}/navigation/history.d.ts +0 -0
  4480. /package/{types/ui → ui}/navigation/index.d.ts +0 -0
  4481. /package/{types/ui → ui}/navigation/router.d.ts +0 -0
  4482. /package/{types/ui → ui}/registry/components/DefaultEmpty.d.ts +0 -0
  4483. /package/{types/ui → ui}/registry/functions/example-function.d.ts +0 -0
  4484. /package/{types/ui → ui}/registry/index.d.ts +0 -0
  4485. /package/{types/ui → ui}/registry/libs/index.d.ts +0 -0
  4486. /package/{types/ui → ui}/registry/libs/registryLibsPlugins.d.ts +0 -0
  4487. /package/{types/ui → ui}/registry/libs/schematic-sdk/index.d.ts +0 -0
  4488. /package/{types/ui → ui}/registry/units/auth/components-map.d.ts +0 -0
  4489. /package/{types/ui → ui}/registry/units/auth/functions-map.d.ts +0 -0
  4490. /package/{types/ui → ui}/registry/units/auth/index.d.ts +0 -0
  4491. /package/{types/ui → ui}/registry/units/auth/register.d.ts +0 -0
  4492. /package/{types/ui → ui}/registry/units/auth/types/components/AdditionalProfileSections.d.ts +0 -0
  4493. /package/{types/ui → ui}/registry/units/auth/types/components/AdditionalUsersFilters.d.ts +0 -0
  4494. /package/{types/ui → ui}/registry/units/auth/types/components/Signin.d.ts +0 -0
  4495. /package/{types/ui → ui}/registry/units/auth/types/functions/getAdditionalAddProfileFields.d.ts +0 -0
  4496. /package/{types/ui → ui}/registry/units/auth/types/functions/getAdditionalProfileFields.d.ts +0 -0
  4497. /package/{types/ui → ui}/registry/units/auth/types/functions/getUsersListColumns.d.ts +0 -0
  4498. /package/{types/ui → ui}/registry/units/auth/types/functions/getUsersRoles.d.ts +0 -0
  4499. /package/{types/ui → ui}/registry/units/chart/components-map.d.ts +0 -0
  4500. /package/{types/ui → ui}/registry/units/chart/functions-map.d.ts +0 -0
  4501. /package/{types/ui → ui}/registry/units/chart/index.d.ts +0 -0
  4502. /package/{types/ui → ui}/registry/units/chart/register.d.ts +0 -0
  4503. /package/{types/ui → ui}/registry/units/chart/types/components/AlertDialog.d.ts +0 -0
  4504. /package/{types/ui → ui}/registry/units/chart/types/components/ChartActionPanelButton.d.ts +0 -0
  4505. /package/{types/ui → ui}/registry/units/chart/types/functions/get-chartkit-holidays.d.ts +0 -0
  4506. /package/{types/ui → ui}/registry/units/chart/types/functions/getChartkitMenuByType.d.ts +0 -0
  4507. /package/{types/ui → ui}/registry/units/chart/types/functions/getDefaultChartMenu.d.ts +0 -0
  4508. /package/{types/ui → ui}/registry/units/chart/types/functions/getPanePreviewChartMenu.d.ts +0 -0
  4509. /package/{types/ui → ui}/registry/units/chart/types/functions/getVisualSelectorBottomPlaceholder.d.ts +0 -0
  4510. /package/{types/ui → ui}/registry/units/chart/types/functions/getWizardChartMenu.d.ts +0 -0
  4511. /package/{types/ui → ui}/registry/units/collections/components-map.d.ts +0 -0
  4512. /package/{types/ui → ui}/registry/units/collections/functionts-map.d.ts +0 -0
  4513. /package/{types/ui → ui}/registry/units/collections/index.d.ts +0 -0
  4514. /package/{types/ui → ui}/registry/units/collections/register.d.ts +0 -0
  4515. /package/{types/ui → ui}/registry/units/collections/types/customizeEmptyPlaceholder.d.ts +0 -0
  4516. /package/{types/ui → ui}/registry/units/collections/types/customizeNoCreatePermissionDialog.d.ts +0 -0
  4517. /package/{types/ui → ui}/registry/units/collections/types/index.d.ts +0 -0
  4518. /package/{types/ui → ui}/registry/units/collections/types/useCreateWorkbookDialogHandlers.d.ts +0 -0
  4519. /package/{types/ui → ui}/registry/units/common/components/Example/Example.d.ts +0 -0
  4520. /package/{types/ui → ui}/registry/units/common/components-map.d.ts +0 -0
  4521. /package/{types/ui → ui}/registry/units/common/constants/components.d.ts +0 -0
  4522. /package/{types/ui → ui}/registry/units/common/constants/functions.d.ts +0 -0
  4523. /package/{types/ui → ui}/registry/units/common/functions-map.d.ts +0 -0
  4524. /package/{types/ui → ui}/registry/units/common/index.d.ts +0 -0
  4525. /package/{types/ui → ui}/registry/units/common/register.d.ts +0 -0
  4526. /package/{types/ui → ui}/registry/units/common/types/components/AccessRights.d.ts +0 -0
  4527. /package/{types/ui → ui}/registry/units/common/types/components/AccessRightsUrlOpen.d.ts +0 -0
  4528. /package/{types/ui → ui}/registry/units/common/types/components/AclSubject.d.ts +0 -0
  4529. /package/{types/ui → ui}/registry/units/common/types/components/AclSubjectSuggest.d.ts +0 -0
  4530. /package/{types/ui → ui}/registry/units/common/types/components/ActionPanelEntrySelect.d.ts +0 -0
  4531. /package/{types/ui → ui}/registry/units/common/types/components/AsideHeaderAdapter.d.ts +0 -0
  4532. /package/{types/ui → ui}/registry/units/common/types/components/ButtonFavorite.d.ts +0 -0
  4533. /package/{types/ui → ui}/registry/units/common/types/components/DialogAddParticipants.d.ts +0 -0
  4534. /package/{types/ui → ui}/registry/units/common/types/components/DialogEntryDescription.d.ts +0 -0
  4535. /package/{types/ui → ui}/registry/units/common/types/components/DialogImageWidgetLinkHint.d.ts +0 -0
  4536. /package/{types/ui → ui}/registry/units/common/types/components/DialogRelatedEntitiesRadioHint.d.ts +0 -0
  4537. /package/{types/ui → ui}/registry/units/common/types/components/DialogShare.d.ts +0 -0
  4538. /package/{types/ui → ui}/registry/units/common/types/components/DownloadScreenshot.d.ts +0 -0
  4539. /package/{types/ui → ui}/registry/units/common/types/components/EntryBreadcrumbs.d.ts +0 -0
  4540. /package/{types/ui → ui}/registry/units/common/types/components/IamAccessDialog.d.ts +0 -0
  4541. /package/{types/ui → ui}/registry/units/common/types/components/LoginById.d.ts +0 -0
  4542. /package/{types/ui → ui}/registry/units/common/types/components/MarkdownControl.d.ts +0 -0
  4543. /package/{types/ui → ui}/registry/units/common/types/components/MarkupShareLink.d.ts +0 -0
  4544. /package/{types/ui → ui}/registry/units/common/types/components/MarkupUserInfo.d.ts +0 -0
  4545. /package/{types/ui → ui}/registry/units/common/types/components/MobileHeaderComponent.d.ts +0 -0
  4546. /package/{types/ui → ui}/registry/units/common/types/components/OAuthTokenButton.d.ts +0 -0
  4547. /package/{types/ui → ui}/registry/units/common/types/components/PlaceholderIllustrationImage.d.ts +0 -0
  4548. /package/{types/ui → ui}/registry/units/common/types/components/RangeInputPicker.d.ts +0 -0
  4549. /package/{types/ui → ui}/registry/units/common/types/components/ReportButton.d.ts +0 -0
  4550. /package/{types/ui → ui}/registry/units/common/types/components/UserAvatarById.d.ts +0 -0
  4551. /package/{types/ui → ui}/registry/units/common/types/components/YfmWrapper.d.ts +0 -0
  4552. /package/{types/ui → ui}/registry/units/common/types/functions/GetUsersById.d.ts +0 -0
  4553. /package/{types/ui → ui}/registry/units/common/types/functions/checkCreateEntryButtonVisibility.d.ts +0 -0
  4554. /package/{types/ui → ui}/registry/units/common/types/functions/fetchDocumentation.d.ts +0 -0
  4555. /package/{types/ui → ui}/registry/units/common/types/functions/fetchFunctionsDocumentation.d.ts +0 -0
  4556. /package/{types/ui → ui}/registry/units/common/types/functions/getAdditionalChartkitErrorContent.d.ts +0 -0
  4557. /package/{types/ui → ui}/registry/units/common/types/functions/getBasicActionPanelItems.d.ts +0 -0
  4558. /package/{types/ui → ui}/registry/units/common/types/functions/getFunctionsDocumentation.d.ts +0 -0
  4559. /package/{types/ui → ui}/registry/units/common/types/functions/getGloballyEntrySettings.d.ts +0 -0
  4560. /package/{types/ui → ui}/registry/units/common/types/functions/getHeaderWithoutHelpCenterErrorContentTypes.d.ts +0 -0
  4561. /package/{types/ui → ui}/registry/units/common/types/functions/getHeaderWithoutNavigationErrorContentTypes.d.ts +0 -0
  4562. /package/{types/ui → ui}/registry/units/common/types/functions/getIllustrationStore.d.ts +0 -0
  4563. /package/{types/ui → ui}/registry/units/common/types/functions/getImageNameFromErrorContentType.d.ts +0 -0
  4564. /package/{types/ui → ui}/registry/units/common/types/functions/getLoginById.d.ts +0 -0
  4565. /package/{types/ui → ui}/registry/units/common/types/functions/getLogoIcon.d.ts +0 -0
  4566. /package/{types/ui → ui}/registry/units/common/types/functions/getNotAuthenticatedErrorContentTypes.d.ts +0 -0
  4567. /package/{types/ui → ui}/registry/units/common/types/functions/getShouldShowAIAssistant.d.ts +0 -0
  4568. /package/{types/ui → ui}/registry/units/common/types/functions/getUIEntryRoute.d.ts +0 -0
  4569. /package/{types/ui → ui}/registry/units/common/types/functions/isValidLogoUrl.d.ts +0 -0
  4570. /package/{types/ui → ui}/registry/units/common/types/functions/openDialogOrganizationInvite.d.ts +0 -0
  4571. /package/{types/ui → ui}/registry/units/common/types/functions/openDialogOrganizationInviteUsers.d.ts +0 -0
  4572. /package/{types/ui → ui}/registry/units/common/types/functions/renderDialogRelatedEntitiesAlertHint.d.ts +0 -0
  4573. /package/{types/ui → ui}/registry/units/common/types/functions/resolveUsersByIds.d.ts +0 -0
  4574. /package/{types/ui → ui}/registry/units/common/types/functions/setEntryKey.d.ts +0 -0
  4575. /package/{types/ui → ui}/registry/units/common/types/functions/useSubjectsListId.d.ts +0 -0
  4576. /package/{types/ui → ui}/registry/units/connections/components-map.d.ts +0 -0
  4577. /package/{types/ui → ui}/registry/units/connections/functions-map.d.ts +0 -0
  4578. /package/{types/ui → ui}/registry/units/connections/index.d.ts +0 -0
  4579. /package/{types/ui → ui}/registry/units/connections/register.d.ts +0 -0
  4580. /package/{types/ui → ui}/registry/units/connections/types/CreateEditorChartButtonProps.d.ts +0 -0
  4581. /package/{types/ui → ui}/registry/units/connections/types/PreparedRowItem.d.ts +0 -0
  4582. /package/{types/ui → ui}/registry/units/connections/types/beforeConnectorFormUnmount.d.ts +0 -0
  4583. /package/{types/ui → ui}/registry/units/connections/types/getConnectionItemRender.d.ts +0 -0
  4584. /package/{types/ui → ui}/registry/units/connections/types/getFakeEntry.d.ts +0 -0
  4585. /package/{types/ui → ui}/registry/units/connections/types/getIsShowCreateConnectionButton.d.ts +0 -0
  4586. /package/{types/ui → ui}/registry/units/connections/types/getMockedForm.d.ts +0 -0
  4587. /package/{types/ui → ui}/registry/units/connections/types/getNewConnectionDestination.d.ts +0 -0
  4588. /package/{types/ui → ui}/registry/units/connections/types/getRenderConnectionSettingsPopup.d.ts +0 -0
  4589. /package/{types/ui → ui}/registry/units/dash/components-map.d.ts +0 -0
  4590. /package/{types/ui → ui}/registry/units/dash/functions-map.d.ts +0 -0
  4591. /package/{types/ui → ui}/registry/units/dash/index.d.ts +0 -0
  4592. /package/{types/ui → ui}/registry/units/dash/register.d.ts +0 -0
  4593. /package/{types/ui → ui}/registry/units/dash/types/BeforeCloseDialogItem.d.ts +0 -0
  4594. /package/{types/ui → ui}/registry/units/dash/types/BeforeOpenDialogItem.d.ts +0 -0
  4595. /package/{types/ui → ui}/registry/units/dash/types/DashActionPanelAdditionalButtons.d.ts +0 -0
  4596. /package/{types/ui → ui}/registry/units/dash/types/DialogDashOtherSettingsPrepend.d.ts +0 -0
  4597. /package/{types/ui → ui}/registry/units/dash/types/GetExtendedItemData.d.ts +0 -0
  4598. /package/{types/ui → ui}/registry/units/datasets/functions-map.d.ts +0 -0
  4599. /package/{types/ui → ui}/registry/units/datasets/index.d.ts +0 -0
  4600. /package/{types/ui → ui}/registry/units/datasets/register.d.ts +0 -0
  4601. /package/{types/ui → ui}/registry/units/datasets/types/functions/getRenderDatasetSettingsPopup.d.ts +0 -0
  4602. /package/{types/ui → ui}/registry/units/datasets/types/functions/renderRLSDialog.d.ts +0 -0
  4603. /package/{types/ui → ui}/registry/units/docs/functions-map.d.ts +0 -0
  4604. /package/{types/ui → ui}/registry/units/docs/index.d.ts +0 -0
  4605. /package/{types/ui → ui}/registry/units/docs/register.d.ts +0 -0
  4606. /package/{types/ui → ui}/registry/units/editor/components-map.d.ts +0 -0
  4607. /package/{types/ui → ui}/registry/units/editor/constants/components.d.ts +0 -0
  4608. /package/{types/ui → ui}/registry/units/editor/constants/functions.d.ts +0 -0
  4609. /package/{types/ui → ui}/registry/units/editor/functions-map.d.ts +0 -0
  4610. /package/{types/ui → ui}/registry/units/editor/index.d.ts +0 -0
  4611. /package/{types/ui → ui}/registry/units/editor/types/components/ActionPanelButton.d.ts +0 -0
  4612. /package/{types/ui → ui}/registry/units/editor/types/functions/fetchEditorDocumentation.d.ts +0 -0
  4613. /package/{types/ui → ui}/registry/units/editor/types/functions/getEditorTemplates.d.ts +0 -0
  4614. /package/{types/ui → ui}/registry/units/fieldEditor/components-map.d.ts +0 -0
  4615. /package/{types/ui → ui}/registry/units/fieldEditor/index.d.ts +0 -0
  4616. /package/{types/ui → ui}/registry/units/main/components-map.d.ts +0 -0
  4617. /package/{types/ui → ui}/registry/units/main/index.d.ts +0 -0
  4618. /package/{types/ui → ui}/registry/units/main/register.d.ts +0 -0
  4619. /package/{types/ui → ui}/registry/units/preview/components-map.d.ts +0 -0
  4620. /package/{types/ui → ui}/registry/units/preview/index.d.ts +0 -0
  4621. /package/{types/ui → ui}/registry/units/preview/register.d.ts +0 -0
  4622. /package/{types/ui → ui}/registry/units/public/components-map.d.ts +0 -0
  4623. /package/{types/ui → ui}/registry/units/public/index.d.ts +0 -0
  4624. /package/{types/ui → ui}/registry/units/public/register.d.ts +0 -0
  4625. /package/{types/ui → ui}/registry/units/public/types/components/Header.d.ts +0 -0
  4626. /package/{types/ui → ui}/registry/units/ql/components-map.d.ts +0 -0
  4627. /package/{types/ui → ui}/registry/units/ql/functions-map.d.ts +0 -0
  4628. /package/{types/ui → ui}/registry/units/ql/index.d.ts +0 -0
  4629. /package/{types/ui → ui}/registry/units/ql/register.d.ts +0 -0
  4630. /package/{types/ui → ui}/registry/units/wizard/components-map.d.ts +0 -0
  4631. /package/{types/ui → ui}/registry/units/wizard/index.d.ts +0 -0
  4632. /package/{types/ui → ui}/registry/units/wizard/register.d.ts +0 -0
  4633. /package/{types/ui → ui}/registry/units/wizard/types/components/WizardActionPanelExtension.d.ts +0 -0
  4634. /package/{types/ui → ui}/registry/units/workbooks/components-map.d.ts +0 -0
  4635. /package/{types/ui → ui}/registry/units/workbooks/functions-map.d.ts +0 -0
  4636. /package/{types/ui → ui}/registry/units/workbooks/index.d.ts +0 -0
  4637. /package/{types/ui → ui}/registry/units/workbooks/register.d.ts +0 -0
  4638. /package/{types/ui → ui}/registry/units/workbooks/types/components/workbookTableRowExtendedContent.d.ts +0 -0
  4639. /package/{types/ui → ui}/registry/units/workbooks/types/functions/checkWbCreateEntryButtonVisibility.d.ts +0 -0
  4640. /package/{types/ui → ui}/registry/utils/components-registry.d.ts +0 -0
  4641. /package/{types/ui → ui}/registry/utils/register-app-plugins.d.ts +0 -0
  4642. /package/{types/ui → ui}/store/actions/asideHeader/index.d.ts +0 -0
  4643. /package/{types/ui → ui}/store/actions/asideHeader/navigation.d.ts +0 -0
  4644. /package/{types/ui → ui}/store/actions/chartWidget.d.ts +0 -0
  4645. /package/{types/ui → ui}/store/actions/collectionsStructure/common.d.ts +0 -0
  4646. /package/{types/ui → ui}/store/actions/collectionsStructure/export.d.ts +0 -0
  4647. /package/{types/ui → ui}/store/actions/collectionsStructure/index.d.ts +0 -0
  4648. /package/{types/ui → ui}/store/actions/collectionsStructure/showCollectionEntityErrorToast.d.ts +0 -0
  4649. /package/{types/ui → ui}/store/actions/collectionsStructure/templates.d.ts +0 -0
  4650. /package/{types/ui → ui}/store/actions/colorPaletteEditor.d.ts +0 -0
  4651. /package/{types/ui → ui}/store/actions/controlDialog/controlDialog.d.ts +0 -0
  4652. /package/{types/ui → ui}/store/actions/controlDialog/helpers.d.ts +0 -0
  4653. /package/{types/ui → ui}/store/actions/copyEntriesToWorkbook.d.ts +0 -0
  4654. /package/{types/ui → ui}/store/actions/dialog.d.ts +0 -0
  4655. /package/{types/ui → ui}/store/actions/editHistory.d.ts +0 -0
  4656. /package/{types/ui → ui}/store/actions/entryContent.d.ts +0 -0
  4657. /package/{types/ui → ui}/store/actions/iamAccessDialog.d.ts +0 -0
  4658. /package/{types/ui → ui}/store/actions/landing.d.ts +0 -0
  4659. /package/{types/ui → ui}/store/actions/localStorageFallback.d.ts +0 -0
  4660. /package/{types/ui → ui}/store/actions/migrationToWorkbook.d.ts +0 -0
  4661. /package/{types/ui → ui}/store/actions/openDialogTypes.d.ts +0 -0
  4662. /package/{types/ui → ui}/store/actions/toaster.d.ts +0 -0
  4663. /package/{types/ui → ui}/store/actions/user.d.ts +0 -0
  4664. /package/{types/ui → ui}/store/actions/usersByIds.d.ts +0 -0
  4665. /package/{types/ui → ui}/store/configure.d.ts +0 -0
  4666. /package/{types/ui → ui}/store/constants/collectionsStructure.d.ts +0 -0
  4667. /package/{types/ui → ui}/store/constants/controlDialog.d.ts +0 -0
  4668. /package/{types/ui → ui}/store/constants/copyEntriesToWorkbook.d.ts +0 -0
  4669. /package/{types/ui → ui}/store/constants/editHistory.d.ts +0 -0
  4670. /package/{types/ui → ui}/store/constants/iamAccessDialog.d.ts +0 -0
  4671. /package/{types/ui → ui}/store/constants/migrationToWorkbook.d.ts +0 -0
  4672. /package/{types/ui → ui}/store/index.d.ts +0 -0
  4673. /package/{types/ui → ui}/store/reducer-registry.d.ts +0 -0
  4674. /package/{types/ui → ui}/store/reducers/asideHeader.d.ts +0 -0
  4675. /package/{types/ui → ui}/store/reducers/collectionsStructure.d.ts +0 -0
  4676. /package/{types/ui → ui}/store/reducers/colorPaletteEditor.d.ts +0 -0
  4677. /package/{types/ui → ui}/store/reducers/controlDialog/helpers.d.ts +0 -0
  4678. /package/{types/ui → ui}/store/reducers/copyEntriesToWorkbook.d.ts +0 -0
  4679. /package/{types/ui → ui}/store/reducers/dialog.d.ts +0 -0
  4680. /package/{types/ui → ui}/store/reducers/editHistory.d.ts +0 -0
  4681. /package/{types/ui → ui}/store/reducers/entryContent.d.ts +0 -0
  4682. /package/{types/ui → ui}/store/reducers/iamAccessDialog.d.ts +0 -0
  4683. /package/{types/ui → ui}/store/reducers/index.d.ts +0 -0
  4684. /package/{types/ui → ui}/store/reducers/landing.d.ts +0 -0
  4685. /package/{types/ui → ui}/store/reducers/localStorageFallback.d.ts +0 -0
  4686. /package/{types/ui → ui}/store/reducers/migrationToWorkbook.d.ts +0 -0
  4687. /package/{types/ui → ui}/store/reducers/user.d.ts +0 -0
  4688. /package/{types/ui → ui}/store/selectors/asideHeader.d.ts +0 -0
  4689. /package/{types/ui → ui}/store/selectors/collectionsStructure.d.ts +0 -0
  4690. /package/{types/ui → ui}/store/selectors/colorPaletteEditor.d.ts +0 -0
  4691. /package/{types/ui → ui}/store/selectors/controlDialog.d.ts +0 -0
  4692. /package/{types/ui → ui}/store/selectors/copyEntriesToWorkbook.d.ts +0 -0
  4693. /package/{types/ui → ui}/store/selectors/editHistory.d.ts +0 -0
  4694. /package/{types/ui → ui}/store/selectors/entryContent.d.ts +0 -0
  4695. /package/{types/ui → ui}/store/selectors/iamAccessDialog.d.ts +0 -0
  4696. /package/{types/ui → ui}/store/selectors/landing.d.ts +0 -0
  4697. /package/{types/ui → ui}/store/selectors/localStorageFallback.d.ts +0 -0
  4698. /package/{types/ui → ui}/store/selectors/migrationToWorkbook.d.ts +0 -0
  4699. /package/{types/ui → ui}/store/selectors/user.d.ts +0 -0
  4700. /package/{types/ui → ui}/store/toolkit/chartkit/api.d.ts +0 -0
  4701. /package/{types/ui → ui}/store/toolkit/chartkit/types.d.ts +0 -0
  4702. /package/{types/ui → ui}/store/toolkit/index.d.ts +0 -0
  4703. /package/{types/ui → ui}/store/typings/asideHeader.d.ts +0 -0
  4704. /package/{types/ui → ui}/store/typings/controlDialog.d.ts +0 -0
  4705. /package/{types/ui → ui}/store/typings/entryContent.d.ts +0 -0
  4706. /package/{types/ui → ui}/store/typings/iamAccessDialog.d.ts +0 -0
  4707. /package/{types/ui → ui}/store/typings/user.d.ts +0 -0
  4708. /package/{types/ui → ui}/store/utils/asideHeader.d.ts +0 -0
  4709. /package/{types/ui → ui}/store/utils/collectionStructure.d.ts +0 -0
  4710. /package/{types/ui → ui}/store/utils/controlDialog.d.ts +0 -0
  4711. /package/{types/ui → ui}/store/utils/jdp.d.ts +0 -0
  4712. /package/{types/ui → ui}/store/utils/user.d.ts +0 -0
  4713. /package/{types/ui → ui}/typings/common.d.ts +0 -0
  4714. /package/{types/ui → ui}/typings/components.d.ts +0 -0
  4715. /package/{types/ui → ui}/typings/error.d.ts +0 -0
  4716. /package/{types/ui → ui}/typings/index.d.ts +0 -0
  4717. /package/{types/ui → ui}/units/auth/components/AuthPage/AuthPage.d.ts +0 -0
  4718. /package/{types/ui → ui}/units/auth/components/AuthPage/useAuthPageInit.d.ts +0 -0
  4719. /package/{types/ui → ui}/units/auth/components/ChangePasswordDialog/ChangePasswordDialog.d.ts +0 -0
  4720. /package/{types/ui → ui}/units/auth/components/ChangeUserRoleDialog/ChangeUserRoleDialog.d.ts +0 -0
  4721. /package/{types/ui → ui}/units/auth/components/DeleteUserDialog/DeleteUserDialog.d.ts +0 -0
  4722. /package/{types/ui → ui}/units/auth/components/EditUserProfileDialog/EditUserProfileDialog.d.ts +0 -0
  4723. /package/{types/ui → ui}/units/auth/components/LoginById/LoginById.d.ts +0 -0
  4724. /package/{types/ui → ui}/units/auth/components/LoginById/utils.d.ts +0 -0
  4725. /package/{types/ui → ui}/units/auth/components/Logout/Logout.d.ts +0 -0
  4726. /package/{types/ui → ui}/units/auth/components/Reload/Reload.d.ts +0 -0
  4727. /package/{types/ui → ui}/units/auth/components/Signin/Signin.d.ts +0 -0
  4728. /package/{types/ui → ui}/units/auth/components/Signin/components/Login.d.ts +0 -0
  4729. /package/{types/ui → ui}/units/auth/components/Signin/components/Password.d.ts +0 -0
  4730. /package/{types/ui → ui}/units/auth/components/Signup/Signup.d.ts +0 -0
  4731. /package/{types/ui → ui}/units/auth/components/Signup/components/Back.d.ts +0 -0
  4732. /package/{types/ui → ui}/units/auth/components/UserProfile/UserProfile.d.ts +0 -0
  4733. /package/{types/ui → ui}/units/auth/components/UserRoleLabel/UserRoleLabel.d.ts +0 -0
  4734. /package/{types/ui → ui}/units/auth/components/formControls/CustomRow.d.ts +0 -0
  4735. /package/{types/ui → ui}/units/auth/components/formControls/Email.d.ts +0 -0
  4736. /package/{types/ui → ui}/units/auth/components/formControls/FirstName.d.ts +0 -0
  4737. /package/{types/ui → ui}/units/auth/components/formControls/GeneratePasswordButton.d.ts +0 -0
  4738. /package/{types/ui → ui}/units/auth/components/formControls/LastName.d.ts +0 -0
  4739. /package/{types/ui → ui}/units/auth/components/formControls/Login.d.ts +0 -0
  4740. /package/{types/ui → ui}/units/auth/components/formControls/Password.d.ts +0 -0
  4741. /package/{types/ui → ui}/units/auth/components/formControls/RepeatPassword.d.ts +0 -0
  4742. /package/{types/ui → ui}/units/auth/components/formControls/Roles.d.ts +0 -0
  4743. /package/{types/ui → ui}/units/auth/components/formControls/RowButton.d.ts +0 -0
  4744. /package/{types/ui → ui}/units/auth/components/formControls/types.d.ts +0 -0
  4745. /package/{types/ui → ui}/units/auth/components/formControls/utils.d.ts +0 -0
  4746. /package/{types/ui → ui}/units/auth/constants/errors.d.ts +0 -0
  4747. /package/{types/ui → ui}/units/auth/constants/routes.d.ts +0 -0
  4748. /package/{types/ui → ui}/units/auth/containers/UserProfile/UserProfile.d.ts +0 -0
  4749. /package/{types/ui → ui}/units/auth/hooks/useClearReloadedQuery.d.ts +0 -0
  4750. /package/{types/ui → ui}/units/auth/hooks/useUserById.d.ts +0 -0
  4751. /package/{types/ui → ui}/units/auth/store/actions/common.d.ts +0 -0
  4752. /package/{types/ui → ui}/units/auth/store/actions/index.d.ts +0 -0
  4753. /package/{types/ui → ui}/units/auth/store/actions/logout.d.ts +0 -0
  4754. /package/{types/ui → ui}/units/auth/store/actions/signin.d.ts +0 -0
  4755. /package/{types/ui → ui}/units/auth/store/actions/userInfoForm.d.ts +0 -0
  4756. /package/{types/ui → ui}/units/auth/store/actions/userProfile.d.ts +0 -0
  4757. /package/{types/ui → ui}/units/auth/store/actions/usersByIds.d.ts +0 -0
  4758. /package/{types/ui → ui}/units/auth/store/constants/common.d.ts +0 -0
  4759. /package/{types/ui → ui}/units/auth/store/constants/signin.d.ts +0 -0
  4760. /package/{types/ui → ui}/units/auth/store/constants/userInfoForm.d.ts +0 -0
  4761. /package/{types/ui → ui}/units/auth/store/constants/userProfile.d.ts +0 -0
  4762. /package/{types/ui → ui}/units/auth/store/constants/usersByIds.d.ts +0 -0
  4763. /package/{types/ui → ui}/units/auth/store/reducers/common.d.ts +0 -0
  4764. /package/{types/ui → ui}/units/auth/store/reducers/index.d.ts +0 -0
  4765. /package/{types/ui → ui}/units/auth/store/reducers/signin.d.ts +0 -0
  4766. /package/{types/ui → ui}/units/auth/store/reducers/userInfoForm.d.ts +0 -0
  4767. /package/{types/ui → ui}/units/auth/store/reducers/userProfile.d.ts +0 -0
  4768. /package/{types/ui → ui}/units/auth/store/reducers/usersByIds.d.ts +0 -0
  4769. /package/{types/ui → ui}/units/auth/store/selectors/common.d.ts +0 -0
  4770. /package/{types/ui → ui}/units/auth/store/selectors/signin.d.ts +0 -0
  4771. /package/{types/ui → ui}/units/auth/store/selectors/userInfoForm.d.ts +0 -0
  4772. /package/{types/ui → ui}/units/auth/store/selectors/userProfile.d.ts +0 -0
  4773. /package/{types/ui → ui}/units/auth/store/selectors/usersByIds.d.ts +0 -0
  4774. /package/{types/ui → ui}/units/auth/store/typings/userInfoForm.d.ts +0 -0
  4775. /package/{types/ui → ui}/units/auth/store/typings/usersByIds.d.ts +0 -0
  4776. /package/{types/ui → ui}/units/auth/utils/fields.d.ts +0 -0
  4777. /package/{types/ui → ui}/units/auth/utils/getUsersRoles.d.ts +0 -0
  4778. /package/{types/ui → ui}/units/auth/utils/userProfile.d.ts +0 -0
  4779. /package/{types/ui → ui}/units/auth/utils/validation.d.ts +0 -0
  4780. /package/{types/ui → ui}/units/collections/components/CollectionActions/CollectionActions.d.ts +0 -0
  4781. /package/{types/ui → ui}/units/collections/components/CollectionActions/components/SharedEntryNotice/SharedEntryNotice.d.ts +0 -0
  4782. /package/{types/ui → ui}/units/collections/components/CollectionActions/index.d.ts +0 -0
  4783. /package/{types/ui → ui}/units/collections/components/CollectionActions/utils.d.ts +0 -0
  4784. /package/{types/ui → ui}/units/collections/components/CollectionBatchPanel/CollectionBatchPanel.d.ts +0 -0
  4785. /package/{types/ui → ui}/units/collections/components/CollectionContent/CollectionContent.d.ts +0 -0
  4786. /package/{types/ui → ui}/units/collections/components/CollectionContent/hooks/index.d.ts +0 -0
  4787. /package/{types/ui → ui}/units/collections/components/CollectionContent/hooks/useActions.d.ts +0 -0
  4788. /package/{types/ui → ui}/units/collections/components/CollectionContent/index.d.ts +0 -0
  4789. /package/{types/ui → ui}/units/collections/components/CollectionContent/utils.d.ts +0 -0
  4790. /package/{types/ui → ui}/units/collections/components/CollectionContentGrid/CollectionContentGrid.d.ts +0 -0
  4791. /package/{types/ui → ui}/units/collections/components/CollectionContentGrid/CollectionItemIcon.d.ts +0 -0
  4792. /package/{types/ui → ui}/units/collections/components/CollectionContentGrid/index.d.ts +0 -0
  4793. /package/{types/ui → ui}/units/collections/components/CollectionContentTable/CollectionContentTable.d.ts +0 -0
  4794. /package/{types/ui → ui}/units/collections/components/CollectionContentTable/TableComponents/CollectionCheckboxCell.d.ts +0 -0
  4795. /package/{types/ui → ui}/units/collections/components/CollectionContentTable/TableComponents/CollectionLinkRow.d.ts +0 -0
  4796. /package/{types/ui → ui}/units/collections/components/CollectionContentTable/TableComponents/CollectionTitleCell.d.ts +0 -0
  4797. /package/{types/ui → ui}/units/collections/components/CollectionContentTable/helpers.d.ts +0 -0
  4798. /package/{types/ui → ui}/units/collections/components/CollectionContentTable/index.d.ts +0 -0
  4799. /package/{types/ui → ui}/units/collections/components/CollectionPage/CollectionPage.d.ts +0 -0
  4800. /package/{types/ui → ui}/units/collections/components/CollectionPage/hooks/index.d.ts +0 -0
  4801. /package/{types/ui → ui}/units/collections/components/CollectionPage/hooks/useCreateWorkbookDialogHandlers.d.ts +0 -0
  4802. /package/{types/ui → ui}/units/collections/components/CollectionPage/hooks/useData.d.ts +0 -0
  4803. /package/{types/ui → ui}/units/collections/components/CollectionPage/hooks/useFilters.d.ts +0 -0
  4804. /package/{types/ui → ui}/units/collections/components/CollectionPage/hooks/useLayout.d.ts +0 -0
  4805. /package/{types/ui → ui}/units/collections/components/CollectionPage/hooks/useOpenCreateWorkbookDialog.d.ts +0 -0
  4806. /package/{types/ui → ui}/units/collections/components/CollectionPage/hooks/useSelection.d.ts +0 -0
  4807. /package/{types/ui → ui}/units/collections/components/CollectionPage/hooks/useViewMode.d.ts +0 -0
  4808. /package/{types/ui → ui}/units/collections/components/CollectionPage/index.d.ts +0 -0
  4809. /package/{types/ui → ui}/units/collections/components/CollectionPage/utils.d.ts +0 -0
  4810. /package/{types/ui → ui}/units/collections/components/constants.d.ts +0 -0
  4811. /package/{types/ui → ui}/units/collections/components/helpers.d.ts +0 -0
  4812. /package/{types/ui → ui}/units/collections/components/types.d.ts +0 -0
  4813. /package/{types/ui → ui}/units/collections/hooks/useRefreshPageAfterImport.d.ts +0 -0
  4814. /package/{types/ui → ui}/units/collections/store/actions/index.d.ts +0 -0
  4815. /package/{types/ui → ui}/units/collections/store/constants/index.d.ts +0 -0
  4816. /package/{types/ui → ui}/units/collections/store/reducers/index.d.ts +0 -0
  4817. /package/{types/ui → ui}/units/collections/store/selectors/index.d.ts +0 -0
  4818. /package/{types/ui → ui}/units/collections-navigation/components/CollectionBreadcrumbs/CollectionBreadcrumbs.d.ts +0 -0
  4819. /package/{types/ui → ui}/units/collections-navigation/components/CollectionBreadcrumbs/index.d.ts +0 -0
  4820. /package/{types/ui → ui}/units/collections-navigation/components/CollectionBreadcrumbs/utils.d.ts +0 -0
  4821. /package/{types/ui → ui}/units/collections-navigation/components/CollectionsNavigationApp/CollectionsNavigationApp.d.ts +0 -0
  4822. /package/{types/ui → ui}/units/collections-navigation/components/CollectionsNavigationApp/index.d.ts +0 -0
  4823. /package/{types/ui → ui}/units/collections-navigation/components/CollectionsNavigationLayout/CollectionsNavigationLayout.d.ts +0 -0
  4824. /package/{types/ui → ui}/units/collections-navigation/components/CollectionsNavigationLayout/index.d.ts +0 -0
  4825. /package/{types/ui → ui}/units/collections-navigation/constants/index.d.ts +0 -0
  4826. /package/{types/ui → ui}/units/collections-navigation/contexts/LayoutContext.d.ts +0 -0
  4827. /package/{types/ui → ui}/units/collections-navigation/store/actions/index.d.ts +0 -0
  4828. /package/{types/ui → ui}/units/collections-navigation/store/constants/index.d.ts +0 -0
  4829. /package/{types/ui → ui}/units/collections-navigation/store/reducers/index.d.ts +0 -0
  4830. /package/{types/ui → ui}/units/collections-navigation/store/selectors/index.d.ts +0 -0
  4831. /package/{types/ui → ui}/units/collections-navigation/utils/index.d.ts +0 -0
  4832. /package/{types/ui → ui}/units/connections/components/ConnectorForm/ConnectorForm.d.ts +0 -0
  4833. /package/{types/ui → ui}/units/connections/components/ConnectorForm/ErrorActions/ErrorActions.d.ts +0 -0
  4834. /package/{types/ui → ui}/units/connections/components/ConnectorForm/FormActions/CheckParamsButton/CheckParamsButton.d.ts +0 -0
  4835. /package/{types/ui → ui}/units/connections/components/ConnectorForm/FormActions/FormActions.d.ts +0 -0
  4836. /package/{types/ui → ui}/units/connections/components/ConnectorForm/FormActions/SubmitButton/SubmitButton.d.ts +0 -0
  4837. /package/{types/ui → ui}/units/connections/components/ConnectorForm/FormActions/selectors.d.ts +0 -0
  4838. /package/{types/ui → ui}/units/connections/components/ConnectorForm/FormActions/utils.d.ts +0 -0
  4839. /package/{types/ui → ui}/units/connections/components/ConnectorForm/FormRow/FormItem.d.ts +0 -0
  4840. /package/{types/ui → ui}/units/connections/components/ConnectorForm/FormRow/FormRow.d.ts +0 -0
  4841. /package/{types/ui → ui}/units/connections/components/ConnectorForm/FormRow/PreparedRowItem.d.ts +0 -0
  4842. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/Checkbox/Checkbox.d.ts +0 -0
  4843. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/Datepicker/Datepicker.d.ts +0 -0
  4844. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/Description/Description.d.ts +0 -0
  4845. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/FileInput/FileInput.d.ts +0 -0
  4846. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/FileInput/utils.d.ts +0 -0
  4847. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/Input/Input.d.ts +0 -0
  4848. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/KeyValue/KeyValue.d.ts +0 -0
  4849. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/KeyValue/hooks.d.ts +0 -0
  4850. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/KeyValue/types.d.ts +0 -0
  4851. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/Label/Label.d.ts +0 -0
  4852. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/MarkdownItem/MarkdownItem.d.ts +0 -0
  4853. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/PlainText/PlainText.d.ts +0 -0
  4854. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/RadioButton/RadioButton.d.ts +0 -0
  4855. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/RadioGroup/RadioGroup.d.ts +0 -0
  4856. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/Select/Select.d.ts +0 -0
  4857. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/index.d.ts +0 -0
  4858. /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/withControlWrap/withControlWrap.d.ts +0 -0
  4859. /package/{types/ui → ui}/units/connections/components/ConnectorForm/preparedRows/CacheTtlRow/CacheTtlRow.d.ts +0 -0
  4860. /package/{types/ui → ui}/units/connections/components/ConnectorForm/preparedRows/CollapseRow/CollapseRow.d.ts +0 -0
  4861. /package/{types/ui → ui}/units/connections/components/ConnectorForm/preparedRows/RawSQLLevelRow/RawSQLLevelRow.d.ts +0 -0
  4862. /package/{types/ui → ui}/units/connections/components/ConnectorForm/preparedRows/index.d.ts +0 -0
  4863. /package/{types/ui → ui}/units/connections/components/ConnectorForm/utils/index.d.ts +0 -0
  4864. /package/{types/ui → ui}/units/connections/components/ConnectorsList/ConnectorsList.d.ts +0 -0
  4865. /package/{types/ui → ui}/units/connections/components/ConnectorsList/ListItem.d.ts +0 -0
  4866. /package/{types/ui → ui}/units/connections/components/ConnectorsList/utils/index.d.ts +0 -0
  4867. /package/{types/ui → ui}/units/connections/components/ConnectorsList/utils/listItemRender.d.ts +0 -0
  4868. /package/{types/ui → ui}/units/connections/components/ErrorView/ErrorView.d.ts +0 -0
  4869. /package/{types/ui → ui}/units/connections/components/FormTitle/FormTitle.d.ts +0 -0
  4870. /package/{types/ui → ui}/units/connections/components/Page/ConnPanelActions.d.ts +0 -0
  4871. /package/{types/ui → ui}/units/connections/components/Page/Page.d.ts +0 -0
  4872. /package/{types/ui → ui}/units/connections/components/Page/components/ConnSettings.d.ts +0 -0
  4873. /package/{types/ui → ui}/units/connections/components/Page/components/CreateDatasetButton.d.ts +0 -0
  4874. /package/{types/ui → ui}/units/connections/components/Page/components/CreateQlChartButton.d.ts +0 -0
  4875. /package/{types/ui → ui}/units/connections/components/Page/components/DescriptionButton.d.ts +0 -0
  4876. /package/{types/ui → ui}/units/connections/components/Page/components/S3BasedConnButton.d.ts +0 -0
  4877. /package/{types/ui → ui}/units/connections/components/Page/components/UnloadConfirmation.d.ts +0 -0
  4878. /package/{types/ui → ui}/units/connections/components/Page/components/index.d.ts +0 -0
  4879. /package/{types/ui → ui}/units/connections/components/Page/constants.d.ts +0 -0
  4880. /package/{types/ui → ui}/units/connections/components/Page/filterContextMenuItems.d.ts +0 -0
  4881. /package/{types/ui → ui}/units/connections/components/Page/useAdditionalContextMenuItems.d.ts +0 -0
  4882. /package/{types/ui → ui}/units/connections/components/Page/useApiErrors.d.ts +0 -0
  4883. /package/{types/ui → ui}/units/connections/components/Page/utils.d.ts +0 -0
  4884. /package/{types/ui → ui}/units/connections/components/Router/Router.d.ts +0 -0
  4885. /package/{types/ui → ui}/units/connections/components/WrappedLoader/WrappedLoader.d.ts +0 -0
  4886. /package/{types/ui → ui}/units/connections/components/custom-forms/ChOverYT/ChOverYT.d.ts +0 -0
  4887. /package/{types/ui → ui}/units/connections/components/custom-forms/ChOverYT/ChoicePage.d.ts +0 -0
  4888. /package/{types/ui → ui}/units/connections/components/custom-forms/ChOverYT/ConnectorCard.d.ts +0 -0
  4889. /package/{types/ui → ui}/units/connections/components/custom-forms/ChOverYT/Notification.d.ts +0 -0
  4890. /package/{types/ui → ui}/units/connections/components/custom-forms/ChOverYT/constants.d.ts +0 -0
  4891. /package/{types/ui → ui}/units/connections/components/custom-forms/File/File.d.ts +0 -0
  4892. /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/AddFileButton.d.ts +0 -0
  4893. /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/FilesList.d.ts +0 -0
  4894. /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/ListItem/FileItem.d.ts +0 -0
  4895. /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/ListItem/ListItem.d.ts +0 -0
  4896. /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/ListItem/SourceItem.d.ts +0 -0
  4897. /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/ReplaceSourceButton.d.ts +0 -0
  4898. /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/Workspace/ColumnFilter.d.ts +0 -0
  4899. /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/Workspace/FileSettings.d.ts +0 -0
  4900. /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/Workspace/TypeSelect.d.ts +0 -0
  4901. /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/Workspace/Workspace.d.ts +0 -0
  4902. /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/index.d.ts +0 -0
  4903. /package/{types/ui → ui}/units/connections/components/custom-forms/File/context.d.ts +0 -0
  4904. /package/{types/ui → ui}/units/connections/components/custom-forms/File/types.d.ts +0 -0
  4905. /package/{types/ui → ui}/units/connections/components/custom-forms/File/useHandlers.d.ts +0 -0
  4906. /package/{types/ui → ui}/units/connections/components/custom-forms/File/utils.d.ts +0 -0
  4907. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/GSheetsV2.d.ts +0 -0
  4908. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/AddSection.d.ts +0 -0
  4909. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/AdditionalTitleContent/GAuthButton.d.ts +0 -0
  4910. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/AdditionalTitleContent/index.d.ts +0 -0
  4911. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/GSheetSourceInfoView.d.ts +0 -0
  4912. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/GSheetSourceView.d.ts +0 -0
  4913. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/UploadedGSheetView.d.ts +0 -0
  4914. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/index.d.ts +0 -0
  4915. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/SheetsList.d.ts +0 -0
  4916. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/Workspace/EmptyWorkspace.d.ts +0 -0
  4917. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/Workspace/GSheetSourceInfoWorkspace.d.ts +0 -0
  4918. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/Workspace/GSheetSourceWorkspace.d.ts +0 -0
  4919. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/Workspace/GSheetWorkspace.d.ts +0 -0
  4920. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/Workspace/Workspace.d.ts +0 -0
  4921. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/Workspace/utils.d.ts +0 -0
  4922. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/index.d.ts +0 -0
  4923. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/containers/ActionBarContainer.d.ts +0 -0
  4924. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/containers/SheetsListContainer.d.ts +0 -0
  4925. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/containers/WorkspaceContainer.d.ts +0 -0
  4926. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/containers/index.d.ts +0 -0
  4927. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/containers/useGSheetDialogs.d.ts +0 -0
  4928. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/containers/useGoogleAuth.d.ts +0 -0
  4929. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/containers/utils.d.ts +0 -0
  4930. /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/types.d.ts +0 -0
  4931. /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/Yadocs.d.ts +0 -0
  4932. /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/AdditionalTitleContent.d.ts +0 -0
  4933. /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/DialogAddDocument/DialogAddDocument.d.ts +0 -0
  4934. /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/DocsList.d.ts +0 -0
  4935. /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/Workspace.d.ts +0 -0
  4936. /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/UploadedYadocView.d.ts +0 -0
  4937. /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/YadocSourceInfoView.d.ts +0 -0
  4938. /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/YadocSourceView.d.ts +0 -0
  4939. /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/index.d.ts +0 -0
  4940. /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/index.d.ts +0 -0
  4941. /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/containers/ActionBarContainer.d.ts +0 -0
  4942. /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/containers/DocsListContainer.d.ts +0 -0
  4943. /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/containers/WorkspaceContainer.d.ts +0 -0
  4944. /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/containers/index.d.ts +0 -0
  4945. /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/containers/useYadocsDialogs.d.ts +0 -0
  4946. /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/types.d.ts +0 -0
  4947. /package/{types/ui → ui}/units/connections/components/custom-forms/components/ButtonLogout/ButtonLogout.d.ts +0 -0
  4948. /package/{types/ui → ui}/units/connections/components/custom-forms/components/ColumnFilter/ColumnFilter.d.ts +0 -0
  4949. /package/{types/ui → ui}/units/connections/components/custom-forms/components/ColumnsHeaderSwitcher/ColumnsHeaderSwitcher.d.ts +0 -0
  4950. /package/{types/ui → ui}/units/connections/components/custom-forms/components/DialogWithInput/DialogWithInput.d.ts +0 -0
  4951. /package/{types/ui → ui}/units/connections/components/custom-forms/components/DialogWithInput/index.d.ts +0 -0
  4952. /package/{types/ui → ui}/units/connections/components/custom-forms/components/DialogWithInput/types.d.ts +0 -0
  4953. /package/{types/ui → ui}/units/connections/components/custom-forms/components/ListItem/ActionDeleteView.d.ts +0 -0
  4954. /package/{types/ui → ui}/units/connections/components/custom-forms/components/ListItem/ActionErrorView.d.ts +0 -0
  4955. /package/{types/ui → ui}/units/connections/components/custom-forms/components/ListItem/ActionMoreView.d.ts +0 -0
  4956. /package/{types/ui → ui}/units/connections/components/custom-forms/components/ListItem/ListItem.d.ts +0 -0
  4957. /package/{types/ui → ui}/units/connections/components/custom-forms/components/ListItem/ListItemActions.d.ts +0 -0
  4958. /package/{types/ui → ui}/units/connections/components/custom-forms/components/ListItem/types.d.ts +0 -0
  4959. /package/{types/ui → ui}/units/connections/components/custom-forms/components/index.d.ts +0 -0
  4960. /package/{types/ui → ui}/units/connections/components/custom-forms/hooks/useFileSourceTableWidgetData.d.ts +0 -0
  4961. /package/{types/ui → ui}/units/connections/components/custom-forms/index.d.ts +0 -0
  4962. /package/{types/ui → ui}/units/connections/components/custom-forms/utils/render.d.ts +0 -0
  4963. /package/{types/ui → ui}/units/connections/components/dialogs/Confirm/Confirm.d.ts +0 -0
  4964. /package/{types/ui → ui}/units/connections/components/dialogs/Confirm/index.d.ts +0 -0
  4965. /package/{types/ui → ui}/units/connections/components/dialogs/Confirm/types.d.ts +0 -0
  4966. /package/{types/ui → ui}/units/connections/components/dialogs/CreateConnection/CreateConnection.d.ts +0 -0
  4967. /package/{types/ui → ui}/units/connections/components/dialogs/CreateConnectionInWbOrCollection/CreateConnectionInWbOrCollection.d.ts +0 -0
  4968. /package/{types/ui → ui}/units/connections/components/dialogs/S3Source/DialogS3Source.d.ts +0 -0
  4969. /package/{types/ui → ui}/units/connections/components/dialogs/S3Source/ListHeader.d.ts +0 -0
  4970. /package/{types/ui → ui}/units/connections/components/dialogs/S3Source/ListItem.d.ts +0 -0
  4971. /package/{types/ui → ui}/units/connections/components/dialogs/S3Source/index.d.ts +0 -0
  4972. /package/{types/ui → ui}/units/connections/components/dialogs/S3Source/types.d.ts +0 -0
  4973. /package/{types/ui → ui}/units/connections/components/dialogs/S3Source/utils.d.ts +0 -0
  4974. /package/{types/ui → ui}/units/connections/components/dialogs/index.d.ts +0 -0
  4975. /package/{types/ui → ui}/units/connections/components/hooks/index.d.ts +0 -0
  4976. /package/{types/ui → ui}/units/connections/components/hooks/useCreationHandler/index.d.ts +0 -0
  4977. /package/{types/ui → ui}/units/connections/components/index.d.ts +0 -0
  4978. /package/{types/ui → ui}/units/connections/constants/form.d.ts +0 -0
  4979. /package/{types/ui → ui}/units/connections/constants/index.d.ts +0 -0
  4980. /package/{types/ui → ui}/units/connections/constants/validation.d.ts +0 -0
  4981. /package/{types/ui → ui}/units/connections/index.d.ts +0 -0
  4982. /package/{types/ui → ui}/units/connections/store/actions/api.d.ts +0 -0
  4983. /package/{types/ui → ui}/units/connections/store/actions/base.d.ts +0 -0
  4984. /package/{types/ui → ui}/units/connections/store/actions/file.d.ts +0 -0
  4985. /package/{types/ui → ui}/units/connections/store/actions/gsheet/index.d.ts +0 -0
  4986. /package/{types/ui → ui}/units/connections/store/actions/gsheet/misc-actions.d.ts +0 -0
  4987. /package/{types/ui → ui}/units/connections/store/actions/gsheet/utils.d.ts +0 -0
  4988. /package/{types/ui → ui}/units/connections/store/actions/s3-based.d.ts +0 -0
  4989. /package/{types/ui → ui}/units/connections/store/actions/yadoc/index.d.ts +0 -0
  4990. /package/{types/ui → ui}/units/connections/store/actions/yadoc/misc-actions.d.ts +0 -0
  4991. /package/{types/ui → ui}/units/connections/store/actions/yadoc/utils.d.ts +0 -0
  4992. /package/{types/ui → ui}/units/connections/store/constants.d.ts +0 -0
  4993. /package/{types/ui → ui}/units/connections/store/index.d.ts +0 -0
  4994. /package/{types/ui → ui}/units/connections/store/reducers/index.d.ts +0 -0
  4995. /package/{types/ui → ui}/units/connections/store/selectors/connection-data.d.ts +0 -0
  4996. /package/{types/ui → ui}/units/connections/store/selectors/form.d.ts +0 -0
  4997. /package/{types/ui → ui}/units/connections/store/selectors/gsheet.d.ts +0 -0
  4998. /package/{types/ui → ui}/units/connections/store/selectors/index.d.ts +0 -0
  4999. /package/{types/ui → ui}/units/connections/store/selectors/initial-form.d.ts +0 -0
  5000. /package/{types/ui → ui}/units/connections/store/selectors/inner-form.d.ts +0 -0
  5001. /package/{types/ui → ui}/units/connections/store/selectors/yadocs.d.ts +0 -0
  5002. /package/{types/ui → ui}/units/connections/store/typings/file.d.ts +0 -0
  5003. /package/{types/ui → ui}/units/connections/store/typings/gsheet.d.ts +0 -0
  5004. /package/{types/ui → ui}/units/connections/store/typings/index.d.ts +0 -0
  5005. /package/{types/ui → ui}/units/connections/store/typings/s3-based.d.ts +0 -0
  5006. /package/{types/ui → ui}/units/connections/store/typings/yadocs.d.ts +0 -0
  5007. /package/{types/ui → ui}/units/connections/store/utils/connectors.d.ts +0 -0
  5008. /package/{types/ui → ui}/units/connections/store/utils/entry.d.ts +0 -0
  5009. /package/{types/ui → ui}/units/connections/store/utils/file.d.ts +0 -0
  5010. /package/{types/ui → ui}/units/connections/store/utils/forms.d.ts +0 -0
  5011. /package/{types/ui → ui}/units/connections/store/utils/index.d.ts +0 -0
  5012. /package/{types/ui → ui}/units/connections/store/utils/validation.d.ts +0 -0
  5013. /package/{types/ui → ui}/units/connections/typings/common.d.ts +0 -0
  5014. /package/{types/ui → ui}/units/connections/typings/form.d.ts +0 -0
  5015. /package/{types/ui → ui}/units/connections/typings/index.d.ts +0 -0
  5016. /package/{types/ui → ui}/units/connections/utils/common.d.ts +0 -0
  5017. /package/{types/ui → ui}/units/connections/utils/connectors.d.ts +0 -0
  5018. /package/{types/ui → ui}/units/connections/utils/entry.d.ts +0 -0
  5019. /package/{types/ui → ui}/units/connections/utils/gsheet.d.ts +0 -0
  5020. /package/{types/ui → ui}/units/connections/utils/i18n.d.ts +0 -0
  5021. /package/{types/ui → ui}/units/connections/utils/index.d.ts +0 -0
  5022. /package/{types/ui → ui}/units/connections/utils/validation.d.ts +0 -0
  5023. /package/{types/ui → ui}/units/connections/utils/yadocs.d.ts +0 -0
  5024. /package/{types/ui → ui}/units/dash/components/DashActionPanel/DashActionPanel.d.ts +0 -0
  5025. /package/{types/ui → ui}/units/dash/components/DashActionPanel/DashActionPanelMobile.d.ts +0 -0
  5026. /package/{types/ui → ui}/units/dash/components/DashActionPanel/Description/Description.d.ts +0 -0
  5027. /package/{types/ui → ui}/units/dash/components/DashActionPanel/EditControls/EditControls.d.ts +0 -0
  5028. /package/{types/ui → ui}/units/dash/components/DashActionPanel/SaveDropDown/SaveDropDown.d.ts +0 -0
  5029. /package/{types/ui → ui}/units/dash/components/DashActionPanel/ViewControls/ViewControls.d.ts +0 -0
  5030. /package/{types/ui → ui}/units/dash/components/DashActionPanel/helpers.d.ts +0 -0
  5031. /package/{types/ui → ui}/units/dash/components/EmptyState/EmptyState.d.ts +0 -0
  5032. /package/{types/ui → ui}/units/dash/components/GlobalSelectorIcon/GlobalSelectorIcon.d.ts +0 -0
  5033. /package/{types/ui → ui}/units/dash/components/Loader/Loader.d.ts +0 -0
  5034. /package/{types/ui → ui}/units/dash/components/NavigationInput/InputLink/InputLink.d.ts +0 -0
  5035. /package/{types/ui → ui}/units/dash/components/NavigationInput/NavigationInput.d.ts +0 -0
  5036. /package/{types/ui → ui}/units/dash/components/ParamsSettings/ParamsRow.d.ts +0 -0
  5037. /package/{types/ui → ui}/units/dash/components/ParamsSettings/ParamsSettings.d.ts +0 -0
  5038. /package/{types/ui → ui}/units/dash/components/ParamsSettings/helpers.d.ts +0 -0
  5039. /package/{types/ui → ui}/units/dash/components/ParamsSettings/types.d.ts +0 -0
  5040. /package/{types/ui → ui}/units/dash/components/ShareButton/ShareButton.d.ts +0 -0
  5041. /package/{types/ui → ui}/units/dash/containers/App/App.d.ts +0 -0
  5042. /package/{types/ui → ui}/units/dash/containers/Body/Body.d.ts +0 -0
  5043. /package/{types/ui → ui}/units/dash/containers/Body/LazyBody.d.ts +0 -0
  5044. /package/{types/ui → ui}/units/dash/containers/Body/components/Content/Content.d.ts +0 -0
  5045. /package/{types/ui → ui}/units/dash/containers/Body/components/Content/hooks/useCopiedData.d.ts +0 -0
  5046. /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/DashkitWrapper.d.ts +0 -0
  5047. /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/useConfig.d.ts +0 -0
  5048. /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/useDashKitContext.d.ts +0 -0
  5049. /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/useDashkitRef.d.ts +0 -0
  5050. /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/useDataProviderContext.d.ts +0 -0
  5051. /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/useHashStates.d.ts +0 -0
  5052. /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/useOverlay/getGearGlobalIcon.d.ts +0 -0
  5053. /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/useOverlay/helpers.d.ts +0 -0
  5054. /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/useOverlay/useOverlay.d.ts +0 -0
  5055. /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/usePreparedCopyItemOptions.d.ts +0 -0
  5056. /package/{types/ui → ui}/units/dash/containers/Body/context.d.ts +0 -0
  5057. /package/{types/ui → ui}/units/dash/containers/Dash/Dash.d.ts +0 -0
  5058. /package/{types/ui → ui}/units/dash/containers/DashError/DashError.d.ts +0 -0
  5059. /package/{types/ui → ui}/units/dash/containers/DashHotkes/DashHotkeys.d.ts +0 -0
  5060. /package/{types/ui → ui}/units/dash/containers/Dialogs/DialogEditQuery/DialogEditQuery.d.ts +0 -0
  5061. /package/{types/ui → ui}/units/dash/containers/Dialogs/DialogEditQuery/QueryEditor/QueryEditor.d.ts +0 -0
  5062. /package/{types/ui → ui}/units/dash/containers/Dialogs/DialogEditQuery/QueryError/QueryError.d.ts +0 -0
  5063. /package/{types/ui → ui}/units/dash/containers/Dialogs/DialogEditQuery/helpers/validate-query.d.ts +0 -0
  5064. /package/{types/ui → ui}/units/dash/containers/Dialogs/Dialogs.d.ts +0 -0
  5065. /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/Settings.d.ts +0 -0
  5066. /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/components/AutoRefresh.d.ts +0 -0
  5067. /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/components/Display.d.ts +0 -0
  5068. /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/components/LoadPriority.d.ts +0 -0
  5069. /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/components/MaxConnection.d.ts +0 -0
  5070. /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/components/OtherSettings.d.ts +0 -0
  5071. /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/components/Params.d.ts +0 -0
  5072. /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/components/Row.d.ts +0 -0
  5073. /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/components/Title.d.ts +0 -0
  5074. /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/utils.d.ts +0 -0
  5075. /package/{types/ui → ui}/units/dash/containers/Dialogs/Tabs/EditedTabItem.d.ts +0 -0
  5076. /package/{types/ui → ui}/units/dash/containers/Dialogs/Tabs/PopupWidgetsOrder/PopupWidgetsOrder.d.ts +0 -0
  5077. /package/{types/ui → ui}/units/dash/containers/Dialogs/Tabs/PopupWidgetsOrder/helpers.d.ts +0 -0
  5078. /package/{types/ui → ui}/units/dash/containers/Dialogs/Tabs/TabItem.d.ts +0 -0
  5079. /package/{types/ui → ui}/units/dash/containers/Dialogs/Tabs/Tabs.d.ts +0 -0
  5080. /package/{types/ui → ui}/units/dash/containers/Dialogs/components/ColorInputsGroup/ColorInputsGroup.d.ts +0 -0
  5081. /package/{types/ui → ui}/units/dash/containers/Dialogs/components/ColorPalette/ColorItem/ColorItem.d.ts +0 -0
  5082. /package/{types/ui → ui}/units/dash/containers/Dialogs/components/ColorPalette/ColorPalette.d.ts +0 -0
  5083. /package/{types/ui → ui}/units/dash/containers/Dialogs/components/ColorPicker/ColorPicker.d.ts +0 -0
  5084. /package/{types/ui → ui}/units/dash/containers/Dialogs/components/ColorPickerInputWithPreset/ColorPickerInputWithPreset.d.ts +0 -0
  5085. /package/{types/ui → ui}/units/dash/containers/Dialogs/components/PaletteBackground/PaletteBackground.d.ts +0 -0
  5086. /package/{types/ui → ui}/units/dash/containers/Dialogs/components/PaletteText/PaletteText.d.ts +0 -0
  5087. /package/{types/ui → ui}/units/dash/containers/Dialogs/constants.d.ts +0 -0
  5088. /package/{types/ui → ui}/units/dash/containers/Dialogs/utils.d.ts +0 -0
  5089. /package/{types/ui → ui}/units/dash/containers/FixedHeader/FixedHeader.d.ts +0 -0
  5090. /package/{types/ui → ui}/units/dash/containers/FixedHeader/FixedHeaderMobile.d.ts +0 -0
  5091. /package/{types/ui → ui}/units/dash/containers/Header/Header.d.ts +0 -0
  5092. /package/{types/ui → ui}/units/dash/containers/MobileFloatMenu/MobileFloatMenu.d.ts +0 -0
  5093. /package/{types/ui → ui}/units/dash/containers/TableOfContent/TableOfContent.d.ts +0 -0
  5094. /package/{types/ui → ui}/units/dash/containers/TableOfContent/helpers.d.ts +0 -0
  5095. /package/{types/ui → ui}/units/dash/containers/Tabs/Tabs.d.ts +0 -0
  5096. /package/{types/ui → ui}/units/dash/hooks/useIframeFeatures.d.ts +0 -0
  5097. /package/{types/ui → ui}/units/dash/modules/constants.d.ts +0 -0
  5098. /package/{types/ui → ui}/units/dash/modules/helpers.d.ts +0 -0
  5099. /package/{types/ui → ui}/units/dash/modules/markdownProvider.d.ts +0 -0
  5100. /package/{types/ui → ui}/units/dash/modules/postMessage.d.ts +0 -0
  5101. /package/{types/ui → ui}/units/dash/modules/pushStats.d.ts +0 -0
  5102. /package/{types/ui → ui}/units/dash/store/actions/base/helpers.d.ts +0 -0
  5103. /package/{types/ui → ui}/units/dash/store/actions/dash.d.ts +0 -0
  5104. /package/{types/ui → ui}/units/dash/store/actions/dashTyped.d.ts +0 -0
  5105. /package/{types/ui → ui}/units/dash/store/actions/dialogs/actions.d.ts +0 -0
  5106. /package/{types/ui → ui}/units/dash/store/actions/dialogs/dialog-edit-query.d.ts +0 -0
  5107. /package/{types/ui → ui}/units/dash/store/actions/helpers.d.ts +0 -0
  5108. /package/{types/ui → ui}/units/dash/store/actions/index.d.ts +0 -0
  5109. /package/{types/ui → ui}/units/dash/store/actions/relations/actions.d.ts +0 -0
  5110. /package/{types/ui → ui}/units/dash/store/constants/dashActionTypes.d.ts +0 -0
  5111. /package/{types/ui → ui}/units/dash/store/constants/index.d.ts +0 -0
  5112. /package/{types/ui → ui}/units/dash/store/reducers/dash.d.ts +0 -0
  5113. /package/{types/ui → ui}/units/dash/store/reducers/dashHelpers.d.ts +0 -0
  5114. /package/{types/ui → ui}/units/dash/store/reducers/dashTypedReducer.d.ts +0 -0
  5115. /package/{types/ui → ui}/units/dash/store/selectors/dash.d.ts +0 -0
  5116. /package/{types/ui → ui}/units/dash/store/selectors/dashTypedSelectors.d.ts +0 -0
  5117. /package/{types/ui → ui}/units/dash/store/typings/dash.d.ts +0 -0
  5118. /package/{types/ui → ui}/units/dash/store/utils.d.ts +0 -0
  5119. /package/{types/ui → ui}/units/dash/typings/context.d.ts +0 -0
  5120. /package/{types/ui → ui}/units/dash/typings/dash.d.ts +0 -0
  5121. /package/{types/ui → ui}/units/dash/typings/entry.d.ts +0 -0
  5122. /package/{types/ui → ui}/units/dash/utils/context.d.ts +0 -0
  5123. /package/{types/ui → ui}/units/dash/utils/customEvents.d.ts +0 -0
  5124. /package/{types/ui → ui}/units/dash/utils/dashkitProps.d.ts +0 -0
  5125. /package/{types/ui → ui}/units/dash/utils/getTabId.d.ts +0 -0
  5126. /package/{types/ui → ui}/units/dash/utils/scrollUtils.d.ts +0 -0
  5127. /package/{types/ui → ui}/units/dash/utils/selectors.d.ts +0 -0
  5128. /package/{types/ui → ui}/units/dash/utils/url.d.ts +0 -0
  5129. /package/{types/ui → ui}/units/datasets/components/Avatar/Avatar.d.ts +0 -0
  5130. /package/{types/ui → ui}/units/datasets/components/ColorsDialog/ColorsDialog.d.ts +0 -0
  5131. /package/{types/ui → ui}/units/datasets/components/ContainerLoader/ContainerLoader.d.ts +0 -0
  5132. /package/{types/ui → ui}/units/datasets/components/DatasetPanel/DatasetPanel.d.ts +0 -0
  5133. /package/{types/ui → ui}/units/datasets/components/DatasetPanel/helpers.d.ts +0 -0
  5134. /package/{types/ui → ui}/units/datasets/components/DatasetRouter/DatasetRouter.d.ts +0 -0
  5135. /package/{types/ui → ui}/units/datasets/components/DatasetRouter/UnloadConfirmation.d.ts +0 -0
  5136. /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/DatasetTabFieldList.d.ts +0 -0
  5137. /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/components/FieldRow/FieldRow.d.ts +0 -0
  5138. /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/components/TitleColumn/TitleColumn.d.ts +0 -0
  5139. /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/components/TypeColumn/TypeColumn.d.ts +0 -0
  5140. /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/components/ValidationColumn/ValidationColumn.d.ts +0 -0
  5141. /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/components/ValueColumn/ValueColumn.d.ts +0 -0
  5142. /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/constants.d.ts +0 -0
  5143. /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/helpers.d.ts +0 -0
  5144. /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/types.d.ts +0 -0
  5145. /package/{types/ui → ui}/units/datasets/components/DatasetTabSection/DatasetTabSection.d.ts +0 -0
  5146. /package/{types/ui → ui}/units/datasets/components/DatasetTable/DatasetTable.d.ts +0 -0
  5147. /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/Aggregation.d.ts +0 -0
  5148. /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/Cast.d.ts +0 -0
  5149. /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/Description.d.ts +0 -0
  5150. /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/FieldSettings.d.ts +0 -0
  5151. /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/Hidden.d.ts +0 -0
  5152. /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/Id.d.ts +0 -0
  5153. /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/IndexColumn.d.ts +0 -0
  5154. /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/More.d.ts +0 -0
  5155. /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/Rls.d.ts +0 -0
  5156. /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/Source.d.ts +0 -0
  5157. /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/Title.d.ts +0 -0
  5158. /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/index.d.ts +0 -0
  5159. /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/AggregationSelect/AggregationSelect.d.ts +0 -0
  5160. /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/BatchActionPanel/BatchActionPanel.d.ts +0 -0
  5161. /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/BatchActionPanel/components/DialogChangeDatasetFields/DialogChangeDatasetFields.d.ts +0 -0
  5162. /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/DisplaySettings.d.ts +0 -0
  5163. /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/FieldActionsPopup.d.ts +0 -0
  5164. /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/ObservedDataTable.d.ts +0 -0
  5165. /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/TableTextInput.d.ts +0 -0
  5166. /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/TypeSelect/TypeSelect.d.ts +0 -0
  5167. /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/index.d.ts +0 -0
  5168. /package/{types/ui → ui}/units/datasets/components/DatasetTable/constants.d.ts +0 -0
  5169. /package/{types/ui → ui}/units/datasets/components/DatasetTable/types.d.ts +0 -0
  5170. /package/{types/ui → ui}/units/datasets/components/DescriptionButton/DescriptionButton.d.ts +0 -0
  5171. /package/{types/ui → ui}/units/datasets/components/DialogCreateDataset/DialogCreateDataset.d.ts +0 -0
  5172. /package/{types/ui → ui}/units/datasets/components/DragAndDrop/DragAndDrop.d.ts +0 -0
  5173. /package/{types/ui → ui}/units/datasets/components/ErrorView/ErrorView.d.ts +0 -0
  5174. /package/{types/ui → ui}/units/datasets/components/FieldSettingsDialog/FieldSettingsDialog.d.ts +0 -0
  5175. /package/{types/ui → ui}/units/datasets/components/FilterSection/FilterSection.d.ts +0 -0
  5176. /package/{types/ui → ui}/units/datasets/components/FilterSection/helpers.d.ts +0 -0
  5177. /package/{types/ui → ui}/units/datasets/components/FilterSection/types.d.ts +0 -0
  5178. /package/{types/ui → ui}/units/datasets/components/FilterSection/useFilterSection.d.ts +0 -0
  5179. /package/{types/ui → ui}/units/datasets/components/ParametersSection/ParametersSection.d.ts +0 -0
  5180. /package/{types/ui → ui}/units/datasets/components/ParametersSection/components/CopyToClipboard/CopyToClipboardMenuItem.d.ts +0 -0
  5181. /package/{types/ui → ui}/units/datasets/components/ParametersSection/components/HeaderWithTooltip/HeaderWithTooltip.d.ts +0 -0
  5182. /package/{types/ui → ui}/units/datasets/components/ParametersSection/helpers.d.ts +0 -0
  5183. /package/{types/ui → ui}/units/datasets/components/ParametersSection/useParametersSection.d.ts +0 -0
  5184. /package/{types/ui → ui}/units/datasets/components/PreviewHeader/PreviewHeader.d.ts +0 -0
  5185. /package/{types/ui → ui}/units/datasets/components/PreviewHeader/constants.d.ts +0 -0
  5186. /package/{types/ui → ui}/units/datasets/components/PreviewHeader/utils.d.ts +0 -0
  5187. /package/{types/ui → ui}/units/datasets/components/PreviewTable/PreviewTable.d.ts +0 -0
  5188. /package/{types/ui → ui}/units/datasets/components/RLSDialog/RLSDialog.d.ts +0 -0
  5189. /package/{types/ui → ui}/units/datasets/components/RelationDialog/RelationDialog.d.ts +0 -0
  5190. /package/{types/ui → ui}/units/datasets/components/RelationsMap/RelationsMap.d.ts +0 -0
  5191. /package/{types/ui → ui}/units/datasets/components/SelectSourcePrototypes/SelectSourcePrototypes.d.ts +0 -0
  5192. /package/{types/ui → ui}/units/datasets/components/SelectSourcePrototypes/SourcesTable.d.ts +0 -0
  5193. /package/{types/ui → ui}/units/datasets/components/SelectSourcePrototypes/constants.d.ts +0 -0
  5194. /package/{types/ui → ui}/units/datasets/components/SelectSourcePrototypes/utils.d.ts +0 -0
  5195. /package/{types/ui → ui}/units/datasets/components/Source/Source.d.ts +0 -0
  5196. /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/SourceEditorDialog.d.ts +0 -0
  5197. /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/EditorFormItem.d.ts +0 -0
  5198. /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/Form.d.ts +0 -0
  5199. /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/InputFormItem.d.ts +0 -0
  5200. /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/ParamSelector.d.ts +0 -0
  5201. /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/SelectFormItem.d.ts +0 -0
  5202. /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/SourceError.d.ts +0 -0
  5203. /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/SourceHelpTooltip.d.ts +0 -0
  5204. /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/SourceSwitcher.d.ts +0 -0
  5205. /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/index.d.ts +0 -0
  5206. /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/types.d.ts +0 -0
  5207. /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/utils/helpers.d.ts +0 -0
  5208. /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/utils/index.d.ts +0 -0
  5209. /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/utils/validation.d.ts +0 -0
  5210. /package/{types/ui → ui}/units/datasets/components/UserName/UserName.d.ts +0 -0
  5211. /package/{types/ui → ui}/units/datasets/components/Veil/Veil.d.ts +0 -0
  5212. /package/{types/ui → ui}/units/datasets/components/dialogs/DatasetFieldInspector/DatasetFieldInspector.d.ts +0 -0
  5213. /package/{types/ui → ui}/units/datasets/components/dialogs/index.d.ts +0 -0
  5214. /package/{types/ui → ui}/units/datasets/components/hoc/AvatarDnD.d.ts +0 -0
  5215. /package/{types/ui → ui}/units/datasets/constants/datasets.d.ts +0 -0
  5216. /package/{types/ui → ui}/units/datasets/constants/index.d.ts +0 -0
  5217. /package/{types/ui → ui}/units/datasets/containers/Dataset/ActionPanelRightItems.d.ts +0 -0
  5218. /package/{types/ui → ui}/units/datasets/containers/Dataset/Dataset.d.ts +0 -0
  5219. /package/{types/ui → ui}/units/datasets/containers/Dataset/constants.d.ts +0 -0
  5220. /package/{types/ui → ui}/units/datasets/containers/Dataset/getAdditionalContextMenuItems.d.ts +0 -0
  5221. /package/{types/ui → ui}/units/datasets/containers/Dataset/useHistoryActions.d.ts +0 -0
  5222. /package/{types/ui → ui}/units/datasets/containers/DatasetEditor/DatasetEditor.d.ts +0 -0
  5223. /package/{types/ui → ui}/units/datasets/containers/DatasetEditor/utils.d.ts +0 -0
  5224. /package/{types/ui → ui}/units/datasets/containers/DatasetError/DatasetError.d.ts +0 -0
  5225. /package/{types/ui → ui}/units/datasets/containers/DatasetFilters/DatasetFilters.d.ts +0 -0
  5226. /package/{types/ui → ui}/units/datasets/containers/DatasetParameters/DatasetParameters.d.ts +0 -0
  5227. /package/{types/ui → ui}/units/datasets/containers/DatasetPreview/DatasetPreview.d.ts +0 -0
  5228. /package/{types/ui → ui}/units/datasets/containers/DatasetSources/DatasetSources.d.ts +0 -0
  5229. /package/{types/ui → ui}/units/datasets/containers/DatasetTabViewer/DatasetTabViewer.d.ts +0 -0
  5230. /package/{types/ui → ui}/units/datasets/helpers/dataset-error-helpers.d.ts +0 -0
  5231. /package/{types/ui → ui}/units/datasets/helpers/datasets.d.ts +0 -0
  5232. /package/{types/ui → ui}/units/datasets/helpers/utils.d.ts +0 -0
  5233. /package/{types/ui → ui}/units/datasets/helpers/validation.d.ts +0 -0
  5234. /package/{types/ui → ui}/units/datasets/store/actions/creators/datasetTyped.d.ts +0 -0
  5235. /package/{types/ui → ui}/units/datasets/store/actions/creators/dialogs.d.ts +0 -0
  5236. /package/{types/ui → ui}/units/datasets/store/actions/creators/index.d.ts +0 -0
  5237. /package/{types/ui → ui}/units/datasets/store/actions/creators/utils.d.ts +0 -0
  5238. /package/{types/ui → ui}/units/datasets/store/actions/types/dataset.d.ts +0 -0
  5239. /package/{types/ui → ui}/units/datasets/store/constants.d.ts +0 -0
  5240. /package/{types/ui → ui}/units/datasets/store/edit-history-middleware.d.ts +0 -0
  5241. /package/{types/ui → ui}/units/datasets/store/reducers/dataset.d.ts +0 -0
  5242. /package/{types/ui → ui}/units/datasets/store/reducers/index.d.ts +0 -0
  5243. /package/{types/ui → ui}/units/datasets/store/reducers/utils/index.d.ts +0 -0
  5244. /package/{types/ui → ui}/units/datasets/store/reducers/utils/mocks.d.ts +0 -0
  5245. /package/{types/ui → ui}/units/datasets/store/selectors/dataset.d.ts +0 -0
  5246. /package/{types/ui → ui}/units/datasets/store/selectors/datasetTyped.d.ts +0 -0
  5247. /package/{types/ui → ui}/units/datasets/store/selectors/index.d.ts +0 -0
  5248. /package/{types/ui → ui}/units/datasets/store/types/dataset.d.ts +0 -0
  5249. /package/{types/ui → ui}/units/datasets/store/types/index.d.ts +0 -0
  5250. /package/{types/ui → ui}/units/datasets/typings/dataset.d.ts +0 -0
  5251. /package/{types/ui → ui}/units/datasets/typings/redux.d.ts +0 -0
  5252. /package/{types/ui → ui}/units/preview/components/App/App.d.ts +0 -0
  5253. /package/{types/ui → ui}/units/preview/components/IndexPage/IndexPage.d.ts +0 -0
  5254. /package/{types/ui → ui}/units/preview/components/Preview/Preview.d.ts +0 -0
  5255. /package/{types/ui → ui}/units/preview/hooks/useChartAutoupdate.d.ts +0 -0
  5256. /package/{types/ui → ui}/units/preview/modules/constants/constants.d.ts +0 -0
  5257. /package/{types/ui → ui}/units/preview/modules/helpers.d.ts +0 -0
  5258. /package/{types/ui → ui}/units/ql/components/DND/DNDContainer.d.ts +0 -0
  5259. /package/{types/ui → ui}/units/ql/components/DND/DNDItem.d.ts +0 -0
  5260. /package/{types/ui → ui}/units/ql/components/DND/DNDLayer.d.ts +0 -0
  5261. /package/{types/ui → ui}/units/ql/components/Dialogs/Settings/Settings.d.ts +0 -0
  5262. /package/{types/ui → ui}/units/ql/components/Grid/Grid.d.ts +0 -0
  5263. /package/{types/ui → ui}/units/ql/components/Grid/GridPane/GridPane.d.ts +0 -0
  5264. /package/{types/ui → ui}/units/ql/components/Grid/GridPane/GridPaneView/GridPaneView.d.ts +0 -0
  5265. /package/{types/ui → ui}/units/ql/components/Grid/GridPane/GridPaneView/GridPaneViewContent.d.ts +0 -0
  5266. /package/{types/ui → ui}/units/ql/configs/chart-types.d.ts +0 -0
  5267. /package/{types/ui → ui}/units/ql/constants/index.d.ts +0 -0
  5268. /package/{types/ui → ui}/units/ql/containers/App/App.d.ts +0 -0
  5269. /package/{types/ui → ui}/units/ql/containers/PaneMain/PaneMain.d.ts +0 -0
  5270. /package/{types/ui → ui}/units/ql/containers/PaneMain/ScreenEditor/ScreenEditor.d.ts +0 -0
  5271. /package/{types/ui → ui}/units/ql/containers/PaneMain/ScreenEditor/TabParams/DefaultValue.d.ts +0 -0
  5272. /package/{types/ui → ui}/units/ql/containers/PaneMain/ScreenEditor/TabParams/OverridenValue.d.ts +0 -0
  5273. /package/{types/ui → ui}/units/ql/containers/PaneMain/ScreenEditor/TabParams/TabParams.d.ts +0 -0
  5274. /package/{types/ui → ui}/units/ql/containers/PaneMain/ScreenEditor/TabParams/utils.d.ts +0 -0
  5275. /package/{types/ui → ui}/units/ql/containers/PaneMain/ScreenEditor/TabQuery/ScreenPromQL/ScreenPromQL.d.ts +0 -0
  5276. /package/{types/ui → ui}/units/ql/containers/PaneMain/ScreenEditor/TabQuery/ScreenSQL/ScreenSQL.d.ts +0 -0
  5277. /package/{types/ui → ui}/units/ql/containers/PaneMain/ScreenEditor/TabQuery/TabQuery.d.ts +0 -0
  5278. /package/{types/ui → ui}/units/ql/containers/PanePreview/PanePreview.d.ts +0 -0
  5279. /package/{types/ui → ui}/units/ql/containers/PaneTablePreview/PaneTablePreview.d.ts +0 -0
  5280. /package/{types/ui → ui}/units/ql/containers/PaneVisualization/PaneVisualization.d.ts +0 -0
  5281. /package/{types/ui → ui}/units/ql/containers/QL/QL.d.ts +0 -0
  5282. /package/{types/ui → ui}/units/ql/containers/QL/QLActionPanel/QLActionPanel.d.ts +0 -0
  5283. /package/{types/ui → ui}/units/ql/containers/QL/QLActionPanel/useQLActionPanel.d.ts +0 -0
  5284. /package/{types/ui → ui}/units/ql/containers/QL/ViewSetup/ViewSetup.d.ts +0 -0
  5285. /package/{types/ui → ui}/units/ql/modules/helpers.d.ts +0 -0
  5286. /package/{types/ui → ui}/units/ql/store/actions/dialog.d.ts +0 -0
  5287. /package/{types/ui → ui}/units/ql/store/actions/ql.d.ts +0 -0
  5288. /package/{types/ui → ui}/units/ql/store/reducers/index.d.ts +0 -0
  5289. /package/{types/ui → ui}/units/ql/store/typings/index.d.ts +0 -0
  5290. /package/{types/ui → ui}/units/ql/store/typings/ql.d.ts +0 -0
  5291. /package/{types/ui → ui}/units/ql/store/utils/grid.d.ts +0 -0
  5292. /package/{types/ui → ui}/units/ql/store/utils/monitoring.d.ts +0 -0
  5293. /package/{types/ui → ui}/units/ql/utils/chart-settings.d.ts +0 -0
  5294. /package/{types/ui → ui}/units/ql/utils/connectionts.d.ts +0 -0
  5295. /package/{types/ui → ui}/units/ql/utils/query.d.ts +0 -0
  5296. /package/{types/ui → ui}/units/ql/utils/visualization/getAvailableQlVisualizations.d.ts +0 -0
  5297. /package/{types/ui → ui}/units/ql/utils/visualization/getDefaultQlVisualization.d.ts +0 -0
  5298. /package/{types/ui → ui}/units/ql/utils/visualization/getQlVisualization.d.ts +0 -0
  5299. /package/{types/ui → ui}/units/ql/utils/visualization/index.d.ts +0 -0
  5300. /package/{types/ui → ui}/units/service-settings/components/AppearanceSettings/AppearanceSettings.d.ts +0 -0
  5301. /package/{types/ui → ui}/units/service-settings/components/CreateUserForm/CreateUserForm.d.ts +0 -0
  5302. /package/{types/ui → ui}/units/service-settings/components/SectionGroup/SectionGroup.d.ts +0 -0
  5303. /package/{types/ui → ui}/units/service-settings/components/UsersList/LabelsList/LabelsList.d.ts +0 -0
  5304. /package/{types/ui → ui}/units/service-settings/components/UsersList/UsersFilters/UsersFilters.d.ts +0 -0
  5305. /package/{types/ui → ui}/units/service-settings/components/UsersList/UsersList.d.ts +0 -0
  5306. /package/{types/ui → ui}/units/service-settings/components/UsersList/constants.d.ts +0 -0
  5307. /package/{types/ui → ui}/units/service-settings/components/UsersList/utils.d.ts +0 -0
  5308. /package/{types/ui → ui}/units/service-settings/containers/AccessErrorPage/AccessErrorPage.d.ts +0 -0
  5309. /package/{types/ui → ui}/units/service-settings/containers/App/App.d.ts +0 -0
  5310. /package/{types/ui → ui}/units/service-settings/containers/CreateProfilePage/CreateProfilePage.d.ts +0 -0
  5311. /package/{types/ui → ui}/units/service-settings/containers/MainPage/MainPage.d.ts +0 -0
  5312. /package/{types/ui → ui}/units/service-settings/containers/UserProfilePage/UserProfilePage.d.ts +0 -0
  5313. /package/{types/ui → ui}/units/service-settings/store/actions/serviceSettings.d.ts +0 -0
  5314. /package/{types/ui → ui}/units/service-settings/store/constants/serviceSettings.d.ts +0 -0
  5315. /package/{types/ui → ui}/units/service-settings/store/reducers/serviceSettings.d.ts +0 -0
  5316. /package/{types/ui → ui}/units/service-settings/store/selectors/serviceSettings.d.ts +0 -0
  5317. /package/{types/ui → ui}/units/service-settings/store/typings/serviceSettings.d.ts +0 -0
  5318. /package/{types/ui → ui}/units/wizard/actions/dataset.d.ts +0 -0
  5319. /package/{types/ui → ui}/units/wizard/actions/dialog.d.ts +0 -0
  5320. /package/{types/ui → ui}/units/wizard/actions/dialogColor.d.ts +0 -0
  5321. /package/{types/ui → ui}/units/wizard/actions/hierarchyEditor.d.ts +0 -0
  5322. /package/{types/ui → ui}/units/wizard/actions/preview.d.ts +0 -0
  5323. /package/{types/ui → ui}/units/wizard/actions/settings.d.ts +0 -0
  5324. /package/{types/ui → ui}/units/wizard/actions/tooltip.d.ts +0 -0
  5325. /package/{types/ui → ui}/units/wizard/actions/utils/getDatasetUpdates.d.ts +0 -0
  5326. /package/{types/ui → ui}/units/wizard/actions/utils/index.d.ts +0 -0
  5327. /package/{types/ui → ui}/units/wizard/actions/utils/mutateAndValidateItem.d.ts +0 -0
  5328. /package/{types/ui → ui}/units/wizard/actions/utils/placeholders.d.ts +0 -0
  5329. /package/{types/ui → ui}/units/wizard/actions/widget.d.ts +0 -0
  5330. /package/{types/ui → ui}/units/wizard/components/AddField/AddField.d.ts +0 -0
  5331. /package/{types/ui → ui}/units/wizard/components/DND/DNDContainer.d.ts +0 -0
  5332. /package/{types/ui → ui}/units/wizard/components/DND/DNDItem.d.ts +0 -0
  5333. /package/{types/ui → ui}/units/wizard/components/DND/DragAndDrop.d.ts +0 -0
  5334. /package/{types/ui → ui}/units/wizard/components/DatasetSelect/DatasetSelect.d.ts +0 -0
  5335. /package/{types/ui → ui}/units/wizard/components/DatasetSelect/DatasetSelectItem.d.ts +0 -0
  5336. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColor/ColorSettingsContainer/ColorSettingsContainer.d.ts +0 -0
  5337. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColor/DialogColor.d.ts +0 -0
  5338. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColor/DialogColorGradient/DialogColorGradient.d.ts +0 -0
  5339. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColor/DialogColorPalette/DialogColorPalette.d.ts +0 -0
  5340. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColumnSettings/DialogColumnSettings.d.ts +0 -0
  5341. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColumnSettings/components/ColumnWidthSetting/ColumnWidthSetting.d.ts +0 -0
  5342. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColumnSettings/components/ColumnWidthSettingsSection/ColumnWidthSettingsSection.d.ts +0 -0
  5343. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColumnSettings/components/FieldInfo/FieldInfo.d.ts +0 -0
  5344. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColumnSettings/components/Subheader/Subheader.d.ts +0 -0
  5345. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColumnSettings/hooks/useDialogColumnSettingsState.d.ts +0 -0
  5346. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColumnSettings/utils/index.d.ts +0 -0
  5347. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/DialogField.d.ts +0 -0
  5348. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/BackgroundSettings.d.ts +0 -0
  5349. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/helpers.d.ts +0 -0
  5350. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgrounColorFieldSelect.d.ts +0 -0
  5351. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundColorModeRadioButtons.d.ts +0 -0
  5352. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundNullModeSettings.d.ts +0 -0
  5353. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundSettings.d.ts +0 -0
  5354. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundSettingsButtonColorDialog.d.ts +0 -0
  5355. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundSettingsSwitch.d.ts +0 -0
  5356. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BarsSettings/BarsSettings.d.ts +0 -0
  5357. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/ColorControls/ColorsControl.d.ts +0 -0
  5358. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/GradientColorControl/GradientColorControl.d.ts +0 -0
  5359. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/MinMaxInputs/MinMaxInputs.d.ts +0 -0
  5360. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/PaletteColorControl/PaletteColorControl.d.ts +0 -0
  5361. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BarsSettings/useBarsSettings/helpers.d.ts +0 -0
  5362. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BarsSettings/useBarsSettings/useBarsSettings.d.ts +0 -0
  5363. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/ButtonColorDialog/ButtonColorDialog.d.ts +0 -0
  5364. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/DialogFieldInput/DialogFieldInput.d.ts +0 -0
  5365. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/DialogFieldMainSection/DialogFieldMainSection.d.ts +0 -0
  5366. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/DialogFieldRow/DialogFieldRow.d.ts +0 -0
  5367. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/DialogFieldSelect/DialogFieldSelect.d.ts +0 -0
  5368. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/DialogFieldSettingTitle/DialogFieldSettingTitle.d.ts +0 -0
  5369. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/SubTotalsSettings/SubTotalsSettings.d.ts +0 -0
  5370. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/utils/backgroundSettings.d.ts +0 -0
  5371. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/utils/barsSettings.d.ts +0 -0
  5372. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/utils/misc.d.ts +0 -0
  5373. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/utils/subTotals.d.ts +0 -0
  5374. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogFieldInspector/DialogFieldInspector.d.ts +0 -0
  5375. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogGeolayer/DialogGeolayer.d.ts +0 -0
  5376. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogLabelSettings/DialogLabelSettings.d.ts +0 -0
  5377. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogLink.d.ts +0 -0
  5378. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogMetricSettings/DialogMetricSettings.d.ts +0 -0
  5379. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogMultidataset.d.ts +0 -0
  5380. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogNoRights.d.ts +0 -0
  5381. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogPlaceholder/DialogPlaceholder.d.ts +0 -0
  5382. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogPlaceholder/components/DialogPlaceholderRow/DialogPlaceholderRow.d.ts +0 -0
  5383. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogPlaceholder/constants/radio-buttons.d.ts +0 -0
  5384. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogPlaceholder/utils.d.ts +0 -0
  5385. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogPointsSize.d.ts +0 -0
  5386. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogShapes/DialogShapes.d.ts +0 -0
  5387. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogShapes/DialogShapesPalette/DialogShapesPalette.d.ts +0 -0
  5388. /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogTooltipSettings/DialogTooltipSettings.d.ts +0 -0
  5389. /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/CenterSetting/CenterSetting.d.ts +0 -0
  5390. /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/IndicatorTitleSetting/IndicatorTitleSetting.d.ts +0 -0
  5391. /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/LimitInput/LimitInput.d.ts +0 -0
  5392. /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/SettingFeed/SettingFeed.d.ts +0 -0
  5393. /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/SettingNavigator/NavigatorSubSettings/NavigatorSubSettings.d.ts +0 -0
  5394. /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/SettingNavigator/SettingNavigator.d.ts +0 -0
  5395. /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/SettingPagination/SettingPagination.d.ts +0 -0
  5396. /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/SettingSwitcher/SettingSwitcher.d.ts +0 -0
  5397. /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/SettingTitleMode/SettingTitleMode.d.ts +0 -0
  5398. /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/Settings.d.ts +0 -0
  5399. /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/ZoomSetting/ZoomSetting.d.ts +0 -0
  5400. /package/{types/ui → ui}/units/wizard/components/Dialogs/components/DialogRadioButtons/DialogRadioButtons.d.ts +0 -0
  5401. /package/{types/ui → ui}/units/wizard/components/Dialogs/components/DialogRow/DialogRow.d.ts +0 -0
  5402. /package/{types/ui → ui}/units/wizard/components/Dialogs/components/TitleWithTooltip/TitleWithTooltip.d.ts +0 -0
  5403. /package/{types/ui → ui}/units/wizard/components/GeolayersSelect/GeolayersSelect.d.ts +0 -0
  5404. /package/{types/ui → ui}/units/wizard/components/GradientPalettePreview/GradientPalettePreview.d.ts +0 -0
  5405. /package/{types/ui → ui}/units/wizard/components/HierarchyEditor/HierarchyEditor.d.ts +0 -0
  5406. /package/{types/ui → ui}/units/wizard/components/MinifiedPalette/MinifiedPalette.d.ts +0 -0
  5407. /package/{types/ui → ui}/units/wizard/components/Palette/Palette.d.ts +0 -0
  5408. /package/{types/ui → ui}/units/wizard/components/PlaceholderActionIcon/PlaceholderActionIcon.d.ts +0 -0
  5409. /package/{types/ui → ui}/units/wizard/components/SearchInput/SearchInput.d.ts +0 -0
  5410. /package/{types/ui → ui}/units/wizard/components/ValuesList/ValuesList.d.ts +0 -0
  5411. /package/{types/ui → ui}/units/wizard/components/VisualizationItemTitleWithAggregation/VisualizationItemTitleWithAggregation.d.ts +0 -0
  5412. /package/{types/ui → ui}/units/wizard/constants/aggregations.d.ts +0 -0
  5413. /package/{types/ui → ui}/units/wizard/constants/dialogColor.d.ts +0 -0
  5414. /package/{types/ui → ui}/units/wizard/constants/formats.d.ts +0 -0
  5415. /package/{types/ui → ui}/units/wizard/constants/grouping.d.ts +0 -0
  5416. /package/{types/ui → ui}/units/wizard/constants/index.d.ts +0 -0
  5417. /package/{types/ui → ui}/units/wizard/constants/paletteTypes.d.ts +0 -0
  5418. /package/{types/ui → ui}/units/wizard/constants/placeholders.d.ts +0 -0
  5419. /package/{types/ui → ui}/units/wizard/containers/App.d.ts +0 -0
  5420. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionDataset/DatasetItem/DatasetItem.d.ts +0 -0
  5421. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionDataset/FieldsContainer/FieldsContainer.d.ts +0 -0
  5422. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionDataset/FieldsContainer/ParametersContainer/ParametersContainer.d.ts +0 -0
  5423. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionDataset/FieldsContainer/components/SectionContainer/SectionContainer.d.ts +0 -0
  5424. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionDataset/HierarchyEditor/HierarchyEditor.d.ts +0 -0
  5425. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionDataset/SectionDataset.d.ts +0 -0
  5426. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionPreview/SectionPreview.d.ts +0 -0
  5427. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/AddField/AddField.d.ts +0 -0
  5428. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/AvailablePlaceholder/AvailablePlaceholder.d.ts +0 -0
  5429. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/ColorsPlaceholder/ColorsPlaceholder.d.ts +0 -0
  5430. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/DashboardFiltersPlaceholder/DashboardFiltersPlaceholder.d.ts +0 -0
  5431. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/DashboardParametersPlaceholder/DashboardParametersPlaceholder.d.ts +0 -0
  5432. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/FiltersPlaceholder/FiltersPlaceholder.d.ts +0 -0
  5433. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/LabelsPlaceholder/LabelsPlaceholder.d.ts +0 -0
  5434. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/LayerFiltersPlaceholder/LayerFiltersPlaceholder.d.ts +0 -0
  5435. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/Placeholder/Placeholder.d.ts +0 -0
  5436. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/PlaceholdersContainer.d.ts +0 -0
  5437. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/SegmentsPlaceholder/SegmentsPlaceholder.d.ts +0 -0
  5438. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/ShapesPlaceholder/ShapesPlaceholder.d.ts +0 -0
  5439. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/SortPlaceholder/SortPlaceholder.d.ts +0 -0
  5440. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/TooltipsPlaceholder/TooltipsPlaceholder.d.ts +0 -0
  5441. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/VisualizationPlaceholder/constants.d.ts +0 -0
  5442. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/utils.d.ts +0 -0
  5443. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/SectionVisualization.d.ts +0 -0
  5444. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/VisualizationItem/VisualizationItem.d.ts +0 -0
  5445. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/VisualizationLayersControl/CombinedChartLayerTypeSwitcher.d.ts +0 -0
  5446. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/VisualizationLayersControl/VisualizationLayersControl.d.ts +0 -0
  5447. /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/VisualizationSelector/VisualizationSelector.d.ts +0 -0
  5448. /package/{types/ui → ui}/units/wizard/containers/Wizard/Wizard.d.ts +0 -0
  5449. /package/{types/ui → ui}/units/wizard/containers/Wizard/WizardActionPanel/WizardActionPanel.d.ts +0 -0
  5450. /package/{types/ui → ui}/units/wizard/containers/Wizard/WizardActionPanel/useWizardActionPanel.d.ts +0 -0
  5451. /package/{types/ui → ui}/units/wizard/reducers/dataset.d.ts +0 -0
  5452. /package/{types/ui → ui}/units/wizard/reducers/dialogColor.d.ts +0 -0
  5453. /package/{types/ui → ui}/units/wizard/reducers/hierarchyEditor.d.ts +0 -0
  5454. /package/{types/ui → ui}/units/wizard/reducers/index.d.ts +0 -0
  5455. /package/{types/ui → ui}/units/wizard/reducers/preview.d.ts +0 -0
  5456. /package/{types/ui → ui}/units/wizard/reducers/revisions/reducers.d.ts +0 -0
  5457. /package/{types/ui → ui}/units/wizard/reducers/settings.d.ts +0 -0
  5458. /package/{types/ui → ui}/units/wizard/reducers/utils/checkTableColor.d.ts +0 -0
  5459. /package/{types/ui → ui}/units/wizard/reducers/utils/clearUnusedVisualizationItems.d.ts +0 -0
  5460. /package/{types/ui → ui}/units/wizard/reducers/utils/getConfigData.d.ts +0 -0
  5461. /package/{types/ui → ui}/units/wizard/reducers/utils/getPlaceholdersWithMergedSettings.d.ts +0 -0
  5462. /package/{types/ui → ui}/units/wizard/reducers/utils/index.d.ts +0 -0
  5463. /package/{types/ui → ui}/units/wizard/reducers/utils/updateColorHierarchies.d.ts +0 -0
  5464. /package/{types/ui → ui}/units/wizard/reducers/visualization.d.ts +0 -0
  5465. /package/{types/ui → ui}/units/wizard/reducers/widget.d.ts +0 -0
  5466. /package/{types/ui → ui}/units/wizard/selectors/dataset.d.ts +0 -0
  5467. /package/{types/ui → ui}/units/wizard/selectors/dialogColor.d.ts +0 -0
  5468. /package/{types/ui → ui}/units/wizard/selectors/gradient.d.ts +0 -0
  5469. /package/{types/ui → ui}/units/wizard/selectors/index.d.ts +0 -0
  5470. /package/{types/ui → ui}/units/wizard/selectors/preview.d.ts +0 -0
  5471. /package/{types/ui → ui}/units/wizard/selectors/settings.d.ts +0 -0
  5472. /package/{types/ui → ui}/units/wizard/selectors/visualization.d.ts +0 -0
  5473. /package/{types/ui → ui}/units/wizard/selectors/widget.d.ts +0 -0
  5474. /package/{types/ui → ui}/units/wizard/typings/index.d.ts +0 -0
  5475. /package/{types/ui → ui}/units/wizard/typings/wizard.d.ts +0 -0
  5476. /package/{types/ui → ui}/units/wizard/utils/colors.d.ts +0 -0
  5477. /package/{types/ui → ui}/units/wizard/utils/filters.d.ts +0 -0
  5478. /package/{types/ui → ui}/units/wizard/utils/helpers.d.ts +0 -0
  5479. /package/{types/ui → ui}/units/wizard/utils/mappers/mapChartsToClientConfig.d.ts +0 -0
  5480. /package/{types/ui → ui}/units/wizard/utils/mappers/mapClientToChartsConfig.d.ts +0 -0
  5481. /package/{types/ui → ui}/units/wizard/utils/palette.d.ts +0 -0
  5482. /package/{types/ui → ui}/units/wizard/utils/placeholder.d.ts +0 -0
  5483. /package/{types/ui → ui}/units/wizard/utils/shapes.d.ts +0 -0
  5484. /package/{types/ui → ui}/units/wizard/utils/table.d.ts +0 -0
  5485. /package/{types/ui → ui}/units/workbooks/components/CreateEntry/CreateEntry.d.ts +0 -0
  5486. /package/{types/ui → ui}/units/workbooks/components/CreateEntry/utils.d.ts +0 -0
  5487. /package/{types/ui → ui}/units/workbooks/components/CreateEntryDialog/CreateEntryDialog.d.ts +0 -0
  5488. /package/{types/ui → ui}/units/workbooks/components/CreateEntryDialog/utils.d.ts +0 -0
  5489. /package/{types/ui → ui}/units/workbooks/components/DeleteEntryDialog/DeleteEntryDialog.d.ts +0 -0
  5490. /package/{types/ui → ui}/units/workbooks/components/DuplicateEntryDialog/DuplicateEntryDialog.d.ts +0 -0
  5491. /package/{types/ui → ui}/units/workbooks/components/EmptyWorkbook/EmptyWorkbook.d.ts +0 -0
  5492. /package/{types/ui → ui}/units/workbooks/components/EmptyWorkbook/EmptyWorkbookContainer.d.ts +0 -0
  5493. /package/{types/ui → ui}/units/workbooks/components/EmptyWorkbook/utils.d.ts +0 -0
  5494. /package/{types/ui → ui}/units/workbooks/components/EntryActions/EntryActions.d.ts +0 -0
  5495. /package/{types/ui → ui}/units/workbooks/components/EntryActions/utils.d.ts +0 -0
  5496. /package/{types/ui → ui}/units/workbooks/components/RenameEntryDialog/RenameEntryDialog.d.ts +0 -0
  5497. /package/{types/ui → ui}/units/workbooks/components/Table/WorkbookEntriesTable/ChunkGroup/ChunkGroup.d.ts +0 -0
  5498. /package/{types/ui → ui}/units/workbooks/components/Table/WorkbookEntriesTable/MainTabContent/MainTabContent.d.ts +0 -0
  5499. /package/{types/ui → ui}/units/workbooks/components/Table/WorkbookEntriesTable/Row/Row.d.ts +0 -0
  5500. /package/{types/ui → ui}/units/workbooks/components/Table/WorkbookEntriesTable/WorkbookEntriesTable.d.ts +0 -0
  5501. /package/{types/ui → ui}/units/workbooks/components/Table/WorkbookEntriesTable/WorkbookEntriesTableTabs.d.ts +0 -0
  5502. /package/{types/ui → ui}/units/workbooks/components/Table/WorkbookEntriesTable/constants.d.ts +0 -0
  5503. /package/{types/ui → ui}/units/workbooks/components/Table/WorkbookEntriesTable/types.d.ts +0 -0
  5504. /package/{types/ui → ui}/units/workbooks/components/Table/WorkbookEntriesTable/utils.d.ts +0 -0
  5505. /package/{types/ui → ui}/units/workbooks/components/WorkbookActions/WorkbookActions.d.ts +0 -0
  5506. /package/{types/ui → ui}/units/workbooks/components/WorkbookActions/utils.d.ts +0 -0
  5507. /package/{types/ui → ui}/units/workbooks/components/WorkbookFilters/WorkbookFilters.d.ts +0 -0
  5508. /package/{types/ui → ui}/units/workbooks/components/WorkbookMainTabContent/WorkbookMainTabContent.d.ts +0 -0
  5509. /package/{types/ui → ui}/units/workbooks/components/WorkbookMainTabContent/useChunkedEntries.d.ts +0 -0
  5510. /package/{types/ui → ui}/units/workbooks/components/WorkbookPage/WorkbookPage.d.ts +0 -0
  5511. /package/{types/ui → ui}/units/workbooks/components/WorkbookPage/hooks/useLayout.d.ts +0 -0
  5512. /package/{types/ui → ui}/units/workbooks/components/WorkbookTabContent/WorkbookTabContent.d.ts +0 -0
  5513. /package/{types/ui → ui}/units/workbooks/components/WorkbookTabContent/useChunkedEntries.d.ts +0 -0
  5514. /package/{types/ui → ui}/units/workbooks/components/WorkbookTabs/WorkbookTabs.d.ts +0 -0
  5515. /package/{types/ui → ui}/units/workbooks/components/WorkbookTabs/constants.d.ts +0 -0
  5516. /package/{types/ui → ui}/units/workbooks/components/WorkbookTabs/types.d.ts +0 -0
  5517. /package/{types/ui → ui}/units/workbooks/components/WorkbookTabs/utils.d.ts +0 -0
  5518. /package/{types/ui → ui}/units/workbooks/constants/index.d.ts +0 -0
  5519. /package/{types/ui → ui}/units/workbooks/store/actions/index.d.ts +0 -0
  5520. /package/{types/ui → ui}/units/workbooks/store/constants/index.d.ts +0 -0
  5521. /package/{types/ui → ui}/units/workbooks/store/reducers/index.d.ts +0 -0
  5522. /package/{types/ui → ui}/units/workbooks/store/reducers/workbook-page.d.ts +0 -0
  5523. /package/{types/ui → ui}/units/workbooks/store/selectors/index.d.ts +0 -0
  5524. /package/{types/ui → ui}/units/workbooks/types/index.d.ts +0 -0
  5525. /package/{types/ui → ui}/units/workbooks/utils/entry.d.ts +0 -0
  5526. /package/{types/ui → ui}/utils/absurd.d.ts +0 -0
  5527. /package/{types/ui → ui}/utils/collectionFiltersStorage.d.ts +0 -0
  5528. /package/{types/ui → ui}/utils/colors.d.ts +0 -0
  5529. /package/{types/ui → ui}/utils/connections/icons.d.ts +0 -0
  5530. /package/{types/ui → ui}/utils/connections/index.d.ts +0 -0
  5531. /package/{types/ui → ui}/utils/copyItems.d.ts +0 -0
  5532. /package/{types/ui → ui}/utils/copyText.d.ts +0 -0
  5533. /package/{types/ui → ui}/utils/custom-export-menu-item.d.ts +0 -0
  5534. /package/{types/ui → ui}/utils/date.d.ts +0 -0
  5535. /package/{types/ui → ui}/utils/docs/helpers.d.ts +0 -0
  5536. /package/{types/ui → ui}/utils/docs/index.d.ts +0 -0
  5537. /package/{types/ui → ui}/utils/embedded.d.ts +0 -0
  5538. /package/{types/ui → ui}/utils/errorContentTypes.d.ts +0 -0
  5539. /package/{types/ui → ui}/utils/errors/errorByCode.d.ts +0 -0
  5540. /package/{types/ui → ui}/utils/errors/manual.d.ts +0 -0
  5541. /package/{types/ui → ui}/utils/errors/parse.d.ts +0 -0
  5542. /package/{types/ui → ui}/utils/getActionPanelItems.d.ts +0 -0
  5543. /package/{types/ui → ui}/utils/getAllEntryScopes.d.ts +0 -0
  5544. /package/{types/ui → ui}/utils/getBasicActionPanelItems.d.ts +0 -0
  5545. /package/{types/ui → ui}/utils/getCurrentUserRights.d.ts +0 -0
  5546. /package/{types/ui → ui}/utils/getOverridedTheme.d.ts +0 -0
  5547. /package/{types/ui → ui}/utils/getRestrictedParamNames.d.ts +0 -0
  5548. /package/{types/ui → ui}/utils/getRevisionsPanelEntryScopesTexts.d.ts +0 -0
  5549. /package/{types/ui → ui}/utils/getScopeTypeIcon.d.ts +0 -0
  5550. /package/{types/ui → ui}/utils/getTopLevelEntryScopes.d.ts +0 -0
  5551. /package/{types/ui → ui}/utils/getTypeSelectOptions.d.ts +0 -0
  5552. /package/{types/ui → ui}/utils/gridStorage.d.ts +0 -0
  5553. /package/{types/ui → ui}/utils/helpers.d.ts +0 -0
  5554. /package/{types/ui → ui}/utils/icons.d.ts +0 -0
  5555. /package/{types/ui → ui}/utils/index.d.ts +0 -0
  5556. /package/{types/ui → ui}/utils/isEnabledFeature.d.ts +0 -0
  5557. /package/{types/ui → ui}/utils/markdown/get-render-markdown-fn.d.ts +0 -0
  5558. /package/{types/ui → ui}/utils/markdown/get-render-yfm-fn.d.ts +0 -0
  5559. /package/{types/ui → ui}/utils/markdown/index.d.ts +0 -0
  5560. /package/{types/ui → ui}/utils/markup.d.ts +0 -0
  5561. /package/{types/ui → ui}/utils/migrateItemDataOnPaste.d.ts +0 -0
  5562. /package/{types/ui → ui}/utils/mobile.d.ts +0 -0
  5563. /package/{types/ui → ui}/utils/os.d.ts +0 -0
  5564. /package/{types/ui → ui}/utils/palettes.d.ts +0 -0
  5565. /package/{types/ui → ui}/utils/readOnly.d.ts +0 -0
  5566. /package/{types/ui → ui}/utils/revisions.d.ts +0 -0
  5567. /package/{types/ui → ui}/utils/scrollableContainerContext.d.ts +0 -0
  5568. /package/{types/ui → ui}/utils/sdkRequests.d.ts +0 -0
  5569. /package/{types/ui → ui}/utils/setEntryKey.d.ts +0 -0
  5570. /package/{types/ui → ui}/utils/shared-entries/get-is-shared-entry.d.ts +0 -0
  5571. /package/{types/ui → ui}/utils/shared-entries/index.d.ts +0 -0
  5572. /package/{types/ui → ui}/utils/stringUtils.d.ts +0 -0
  5573. /package/{types/ui → ui}/utils/urlUtils.d.ts +0 -0
  5574. /package/{types/ui → ui}/utils/utils.d.ts +0 -0
  5575. /package/{types/ui → ui}/utils/validation.d.ts +0 -0
  5576. /package/{types/ui → ui}/utils/visualizations/line.d.ts +0 -0
  5577. /package/{types/ui → ui}/utils/visualizations/placeholders/colors.d.ts +0 -0
  5578. /package/{types/ui → ui}/utils/visualizations/placeholders/common-measures.d.ts +0 -0
  5579. /package/{types/ui → ui}/utils/waitOperation.d.ts +0 -0
  5580. /package/{types/ui → ui}/utils/widgetColors.d.ts +0 -0
  5581. /package/{types/ui → ui}/utils/workbooks.d.ts +0 -0
@@ -1,2698 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- import React__default from "react";
3
- import { pickActionParamsFromParams, transformParamsToActionParams } from "@gravity-ui/dashkit/helpers";
4
- import block from "bem-cn-lite";
5
- import get from "lodash/get";
6
- import isEqual from "lodash/isEqual";
7
- import isNumber from "lodash/isNumber";
8
- import merge from "lodash/merge";
9
- import pick from "lodash/pick";
10
- import PropTypes from "prop-types";
11
- import ReactDOM from "react-dom";
12
- import { ib as ChartKitCustomError, bd as getRandomCKId, bG as Performance, ic as ERROR_CODE, bB as i18n, ie as hasMatchedActionParams, ig as subtractParameters, ih as addParams } from "./components/ControlComponents.js";
13
- import isEmpty from "lodash/isEmpty";
14
- import { l as logger, I as isMacintosh, G as getRenderMarkupToStringFn, F as getRenderYfmFn } from "./components/ActionPanel.js";
15
- import colormap from "colormap";
16
- import contains from "robust-point-in-polygon";
17
- /* empty css */
18
- import { Button, Icon } from "@gravity-ui/uikit";
19
- import { aj as formatNumber, aC as WRAPPED_MARKDOWN_KEY } from "./components/AccessRights.js";
20
- import { gray, lab } from "d3";
21
- import escape from "lodash/escape";
22
- import { S as StyledSplitPane } from "./StyledSplitPane.js";
23
- function fetchScript(url) {
24
- return new Promise((resolve, reject) => {
25
- const script = document.createElement("script");
26
- script.type = "text/javascript";
27
- script.onload = resolve;
28
- script.onerror = reject;
29
- script.src = url;
30
- script.async = true;
31
- document.head.appendChild(script);
32
- });
33
- }
34
- function numberFormat(value) {
35
- return isNumber(value) ? new Intl.NumberFormat("ru-RU", {
36
- maximumFractionDigits: 20
37
- }).format(value) : value;
38
- }
39
- const init = (polygonmap) => {
40
- const show = polygonmap.options.get("showLegend");
41
- if (!show) return;
42
- const template = polygonmap.options.get("legendTemplate");
43
- const map = polygonmap.getMap();
44
- const colorScheme = polygonmap.colorize.getColorMap();
45
- const colorRanges = polygonmap.colorize.getColorRanges();
46
- const colors = colorScheme.map((el, i) => {
47
- return {
48
- name: el,
49
- value: colorRanges[i],
50
- opacity: polygonmap.options.get("colorOpacity")
51
- };
52
- });
53
- const CustomControlClass = function(options) {
54
- CustomControlClass.superclass.constructor.call(this, options);
55
- };
56
- const ymaps = polygonmap.getYMaps();
57
- ymaps.util.augment(CustomControlClass, ymaps.collection.Item, {
58
- onAddToMap(map2) {
59
- CustomControlClass.superclass.onAddToMap.call(this, map2);
60
- this.getParent().getChildElement(this).then(this._onGetChildElement, this);
61
- polygonmap._legendControl = this;
62
- },
63
- _onGetChildElement(parentDomContainer) {
64
- const legend = document.createElement("div");
65
- legend.className = "ymaps-color-legend";
66
- legend.innerHTML = template.call(polygonmap, colors);
67
- parentDomContainer.appendChild(legend);
68
- }
69
- });
70
- const customControl = new CustomControlClass();
71
- map.controls.add(customControl, {
72
- float: "none",
73
- position: polygonmap.options.get("legendPosition")
74
- });
75
- };
76
- const defaultTemplate = function(colors) {
77
- const fillBy = this.options.get("fillBy");
78
- const fillByWeight = fillBy === "weight";
79
- const colorRangesMinimum = this.options.get("colorRangesMinimum");
80
- const min = colorRangesMinimum === "min" ? fillByWeight ? this.pointsWeightMinimum : this.pointsCountMinimum : colorRangesMinimum;
81
- return `
82
- <div class="legend">
83
- ${colors.map(
84
- (color, i) => `
85
- <div class="legend__row">
86
- <span class="legend__value">
87
- ${colors[i - 1] ? `${colors[i - 1].value + 1} - ${color.value}` : `${min} - ${color.value}`}
88
- </span>
89
- <span class="legend__color" style="background: ${color.name}; opacity: ${color.opacity}"></span>
90
- </div>
91
- `
92
- ).join("\n")}
93
- </div>
94
- `;
95
- };
96
- var colorLegend_default = { init, defaultTemplate };
97
- class Colorize {
98
- /**
99
- * @param {number} min Min value.
100
- * @param {number} max Max value.
101
- * @param {object} options Setting for generate colormap.
102
- * @param {string|array} options.colorScheme Sheme of colormap or array of custom colors (from light to dark).
103
- * @param {number|array} options.colorRanges Count of ranges to automaticly generate or custom array
104
- * of ranges (from light to dark).
105
- */
106
- constructor(min, max, options) {
107
- if (typeof min !== "number") {
108
- throw new Error('Wrong "min" value');
109
- }
110
- if (typeof max !== "number") {
111
- throw new Error('Wrong "max" value');
112
- }
113
- this._min = min;
114
- this._max = max;
115
- if (typeof options.colorRanges === "object") {
116
- this._ranges = options.colorRanges;
117
- this._rangesCount = this._ranges.length;
118
- } else {
119
- this._rangesCount = options.colorRanges;
120
- this._ranges = this._createRangesArray();
121
- }
122
- this._colors = typeof options.colorScheme === "object" ? options.colorScheme : colormap({
123
- colormap: options.colorScheme,
124
- nshades: this._rangesCount
125
- }).reverse();
126
- if (this._colors.length !== this._rangesCount) {
127
- throw new Error("The length of the colorScheme array and ranges must be equal");
128
- }
129
- }
130
- /**
131
- * Create array for ranges depending on rangesCount.
132
- * @returns {Array.<*>} Return array of ranges.
133
- * @private
134
- */
135
- _createRangesArray() {
136
- const arr = [];
137
- const step = Math.floor((this._max - this._min) / this._rangesCount, 10);
138
- for (let i = 1; i < this._rangesCount; i++) {
139
- arr.push(this._min + i * step);
140
- }
141
- arr.push(this._max + 1);
142
- return arr;
143
- }
144
- /**
145
- * @returns {Array} Return generated array of colors.
146
- */
147
- getColorMap() {
148
- return this._colors;
149
- }
150
- /**
151
- * @returns {Array} Return generated array of ranges.
152
- */
153
- getColorRanges() {
154
- return this._ranges;
155
- }
156
- /**
157
- * Return color depending on count of points inside polygon
158
- * @param {number} pointsCount=0 Count of point inside polygon.
159
- * @returns {string} Return color.
160
- */
161
- getColor(pointsCount = 0) {
162
- let color = this._colors[0];
163
- for (let i = 0; i < this._rangesCount; i++) {
164
- if (pointsCount > this._ranges[i - 1] && pointsCount <= this._ranges[i]) {
165
- color = this._colors[i];
166
- break;
167
- }
168
- }
169
- return color;
170
- }
171
- }
172
- var colorize_default = Colorize;
173
- const defaultBalloonContent = (object2) => {
174
- return `<div>
175
- <h3>Object data</h3>
176
- <div>Number of points: ${object2.properties.pointsCount}</div>
177
- </div>`;
178
- };
179
- var defaultBalloonContent_default = defaultBalloonContent;
180
- const defaultFilter = function(feature) {
181
- return feature.properties.pointsCount > 0;
182
- };
183
- var defaultFilter_default = defaultFilter;
184
- const defaultMapper = function(feature) {
185
- const { pointsCount, pointsWeight } = feature.properties;
186
- let fillColor;
187
- if (pointsCount === 0) {
188
- fillColor = this.options.get("fillColorEmptyPolygon");
189
- } else {
190
- const colorNumber = this.options.get("fillBy") === "weight" ? pointsWeight : pointsCount;
191
- fillColor = this.colorize.getColor(colorNumber);
192
- }
193
- feature.properties.fillColor = fillColor;
194
- feature.options = Object.assign(
195
- {
196
- fillColor,
197
- fillOpacity: this.options.get("fillOpacity"),
198
- strokeWidth: this.options.get("strokeWidth"),
199
- strokeColor: this.options.get("strokeColor")
200
- },
201
- feature.options
202
- );
203
- return feature;
204
- };
205
- var defaultMapper_default = defaultMapper;
206
- const defaultOnClick = function(e) {
207
- const objId = e.get("objectId");
208
- const object2 = this.objectManager.objects.getById(objId);
209
- const balloonContent = this.options.get("balloonContent");
210
- this.balloon.setData({
211
- content: balloonContent(object2)
212
- });
213
- this.balloon.open(e.get("coords"));
214
- const options = {
215
- fillColorOriginal: object2.options.fillColor || this.options.get("fillColor"),
216
- fillOpacityOriginal: typeof object2.options.fillOpacity === "number" ? object2.options.fillOpacity : this.options.get("fillOpacity"),
217
- strokeColorOriginal: typeof object2.options.strokeColor === "number" ? object2.options.strokeColor : this.options.get("strokeColor"),
218
- strokeWidthOriginal: typeof object2.options.strokeWidth === "number" ? object2.options.strokeWidth : this.options.get("strokeWidth"),
219
- fillOpacity: typeof object2.options.fillOpacityActive === "number" ? object2.options.fillOpacityActive : this.options.get("fillOpacityActive"),
220
- strokeColor: typeof object2.options.strokeColorActive === "number" ? object2.options.strokeColorActive : this.options.get("strokeColorActive"),
221
- strokeWidth: typeof object2.options.strokeWidthActive === "number" ? object2.options.strokeWidthActive : this.options.get("strokeWidthActive")
222
- };
223
- const fillColor = object2.options.fillColorActive || this.options.get("fillColorActive");
224
- if (fillColor) {
225
- options.fillColor = fillColor;
226
- }
227
- this.objectManager.objects.setObjectOptions(objId, options);
228
- const onClose = () => {
229
- if (this._prevObjectId) {
230
- const object22 = this.objectManager.objects.getById(this._prevObjectId);
231
- if (object22) {
232
- this.objectManager.objects.setObjectOptions(this._prevObjectId, {
233
- fillColor: object22.options.fillColorOriginal,
234
- fillOpacity: object22.options.fillOpacityOriginal,
235
- strokeColor: object22.options.strokeColorOriginal,
236
- strokeWidth: object22.options.strokeWidthOriginal
237
- });
238
- }
239
- }
240
- };
241
- onClose();
242
- this._prevObjectId = objId;
243
- this.balloon.events.add("close", () => {
244
- onClose();
245
- this._prevObjectId = null;
246
- });
247
- };
248
- var defaultOnClick_default = defaultOnClick;
249
- const defaultOnMouseEnter = function(e) {
250
- const objId = e.get("objectId");
251
- if (this._prevObjectId !== objId) {
252
- const object2 = this.objectManager.objects.getById(objId);
253
- const options = {
254
- fillColorOriginal: object2.options.fillColor || this.options.get("fillColor"),
255
- fillOpacityOriginal: typeof object2.options.fillOpacity === "number" ? object2.options.fillOpacity : this.options.get("fillOpacity"),
256
- strokeColorOriginal: typeof object2.options.strokeColor === "number" ? object2.options.strokeColor : this.options.get("strokeColor"),
257
- strokeWidthOriginal: typeof object2.options.strokeWidth === "number" ? object2.options.strokeWidth : this.options.get("strokeWidth"),
258
- fillOpacity: typeof object2.options.fillOpacityHover === "number" ? object2.options.fillOpacityHover : this.options.get("fillOpacityHover"),
259
- strokeColor: typeof object2.options.strokeColorHover === "number" ? object2.options.strokeColorHover : this.options.get("strokeColorHover"),
260
- strokeWidth: typeof object2.options.strokeWidthHover === "number" ? object2.options.strokeWidthHover : this.options.get("strokeWidthHover")
261
- };
262
- const fillColor = object2.options.fillColorHover || this.options.get("fillColorHover");
263
- if (fillColor) {
264
- options.fillColor = fillColor;
265
- }
266
- this.objectManager.objects.setObjectOptions(objId, options);
267
- }
268
- };
269
- var defaultOnMouseEnter_default = defaultOnMouseEnter;
270
- const defaultOnMouseLeave = function(e) {
271
- const objId = e.get("objectId");
272
- const object2 = this.objectManager.objects.getById(objId);
273
- if (this._prevObjectId !== objId) {
274
- this.objectManager.objects.setObjectOptions(objId, {
275
- fillColor: object2.options.fillColorOriginal,
276
- fillOpacity: object2.options.fillOpacityOriginal,
277
- strokeColor: object2.options.strokeColorOriginal,
278
- strokeWidth: object2.options.strokeWidthOriginal
279
- });
280
- }
281
- };
282
- var defaultOnMouseLeave_default = defaultOnMouseLeave;
283
- const inside = (polygon, point) => {
284
- const pointCoord = point.coordinates;
285
- const polygonsCoord = polygon.coordinates;
286
- const polygonCoord = polygonsCoord[0];
287
- let result = contains(polygonCoord, pointCoord) !== 1;
288
- if (result) {
289
- for (let k = 1; k < polygonsCoord.length; k++) {
290
- const holeCoord = polygonsCoord[k];
291
- const isInsideHole = contains(holeCoord, pointCoord) !== 1;
292
- if (isInsideHole) {
293
- result = !isInsideHole;
294
- break;
295
- }
296
- }
297
- } else {
298
- for (let k = 1; k < polygonsCoord.length; k++) {
299
- const polygonCoord2 = polygonsCoord[k];
300
- const isInsidePolygon = contains(polygonCoord2, pointCoord) !== 1;
301
- if (isInsidePolygon) {
302
- result = isInsidePolygon;
303
- break;
304
- }
305
- }
306
- }
307
- return result;
308
- };
309
- var inside_default = inside;
310
- const normalizeFeature = (feature, meta, props = {}) => {
311
- let { type, coordinates } = feature.geometry;
312
- if (feature.geometry.type === "MultiPolygon") {
313
- type = "Polygon";
314
- coordinates = feature.geometry.coordinates.reduce(
315
- (acc, coordinates2) => acc.concat(coordinates2),
316
- []
317
- );
318
- }
319
- return Object.assign({}, props, feature, {
320
- geometry: {
321
- type,
322
- coordinates,
323
- // This parameter is needed for drawing holes in polygons on ymaps
324
- fillRule: "evenOdd"
325
- }
326
- });
327
- };
328
- var normalizeFeature_default = normalizeFeature;
329
- function define$1(ymaps) {
330
- ymaps.modules.define(
331
- "Polygonmap",
332
- ["meta", "option.Manager", "ObjectManager"],
333
- (provide, meta, OptionManager, ObjectManager) => {
334
- class Polygonmap {
335
- constructor(data, options = {}) {
336
- const defaultOptions = new OptionManager({
337
- mapper: defaultMapper_default,
338
- fillBy: "points",
339
- fillByWeightProp: "weight",
340
- fillByWeightType: "middle",
341
- colorRangesMinimum: 0,
342
- colorRanges: 4,
343
- colorScheme: ["#e66a54", "#ce4356", "#ab2960", "#571756"],
344
- fillOpacity: 0.8,
345
- fillColorEmptyPolygon: "#f4f6f8",
346
- strokeColor: "#fff",
347
- strokeWidth: 1,
348
- showLegend: true,
349
- legendTemplate: colorLegend_default.defaultTemplate,
350
- legendPosition: {
351
- top: 10,
352
- right: 10
353
- },
354
- // Since the default filter for empty polygons is disabled by default,
355
- // this option will be undefined.
356
- filter: void 0,
357
- filterEmptyPolygons: false,
358
- onMouseEnter: defaultOnMouseEnter_default,
359
- onMouseLeave: defaultOnMouseLeave_default,
360
- onClick: defaultOnClick_default,
361
- balloonContent: defaultBalloonContent_default,
362
- fillColorHover: void 0,
363
- fillOpacityHover: 0.9,
364
- strokeColorHover: "#fff",
365
- strokeWidthHover: 2,
366
- fillColorActive: void 0,
367
- fillOpacityActive: 0.9,
368
- strokeColorActive: "#fff",
369
- strokeWidthActive: 2,
370
- interactivity: true
371
- });
372
- this._initOptions(options, defaultOptions);
373
- this.setData(data);
374
- }
375
- /**
376
- * Get Yandex Maps main class.
377
- *
378
- * @public
379
- * @returns {YMaps} Reference to YMaps.
380
- */
381
- getYMaps() {
382
- return ymaps;
383
- }
384
- /**
385
- * Get the data, polygons and points.
386
- *
387
- * @public
388
- * @returns {Object} Polygons and points.
389
- */
390
- getData() {
391
- return this._data || null;
392
- }
393
- /**
394
- * Set the data, polygons and points.
395
- *
396
- * @public
397
- * @param {Object} data Polygons and points.
398
- * @param {Object} data.polygons GeoJSON FeatureCollections.
399
- * @param {Object} data.points GeoJSON FeatureCollections.
400
- * @returns {Polygonmap} Self-reference.
401
- */
402
- setData(data) {
403
- this._data = data;
404
- if (data) {
405
- this._data = {
406
- points: { type: "FeatureCollection", features: [] },
407
- polygons: { type: "FeatureCollection", features: [] }
408
- };
409
- this._prepare(data);
410
- this._initObjectManager();
411
- }
412
- return this;
413
- }
414
- /**
415
- * Get the Map instance.
416
- *
417
- * @public
418
- * @returns {Map} Reference to Map instance.
419
- */
420
- getMap() {
421
- return this._map;
422
- }
423
- /**
424
- * Set Map instance to render Polygonmap object.
425
- *
426
- * @public
427
- * @param {Map} map Map instance.
428
- * @returns {Polygonmap} Self-reference.
429
- */
430
- setMap(map) {
431
- if (this._map !== map) {
432
- this._map = map;
433
- if (map && this._data) {
434
- this._render();
435
- }
436
- }
437
- return this;
438
- }
439
- /**
440
- * Destructs Polygonmap instance.
441
- *
442
- * @public
443
- */
444
- destroy() {
445
- this.setData(null);
446
- this.objectManager.removeAll();
447
- this._legendControl.setParent(null);
448
- this.balloon.close();
449
- this.setMap(null);
450
- }
451
- /**
452
- * Prepare for render Polygonmap.
453
- *
454
- * @private
455
- * @param {Object} data Polygons and points.
456
- * @param {Object} data.polygons GeoJSON FeatureCollections.
457
- * @param {Object} data.points GeoJSON FeatureCollections.
458
- * @returns {undefined}
459
- */
460
- _prepare(data) {
461
- if (data.polygons.type === "FeatureCollection" && data.points.type === "FeatureCollection") {
462
- const polygonFeatures = data.polygons.features;
463
- const fillBy = this.options.get("fillBy");
464
- const fillByWeightType = this.options.get("fillByWeightType");
465
- const fillByWeightProp = this.options.get("fillByWeightProp");
466
- let pointFeatures = data.points.features;
467
- for (let i = 0; i < polygonFeatures.length; i++) {
468
- const restPointFeatures = [];
469
- const polygonFeature = normalizeFeature_default(polygonFeatures[i], meta, {
470
- id: i
471
- });
472
- polygonFeature.properties = polygonFeature.properties || {};
473
- if (typeof polygonFeature.properties.pointsCount !== "number" && typeof polygonFeature.properties.pointsWeight !== "number") {
474
- let pointsCount = 0;
475
- let pointsWeight = 0;
476
- for (let j = 0; j < pointFeatures.length; j++) {
477
- let pointFeature;
478
- if (i === 0) {
479
- pointFeature = normalizeFeature_default(pointFeatures[j], meta, {
480
- id: j
481
- });
482
- this._data.points.features.push(pointFeature);
483
- } else {
484
- pointFeature = pointFeatures[j];
485
- }
486
- if (inside_default(polygonFeature.geometry, pointFeature.geometry)) {
487
- pointsCount++;
488
- pointsWeight += pointFeature.properties[fillByWeightProp];
489
- } else {
490
- restPointFeatures.push(pointFeature);
491
- }
492
- }
493
- pointFeatures = restPointFeatures;
494
- if (fillBy === "weight") {
495
- pointsWeight = fillByWeightType === "middle" ? pointsWeight === 0 && pointsCount === 0 ? 0 : pointsWeight / pointsCount : pointsWeight;
496
- }
497
- polygonFeature.properties.pointsCount = pointsCount;
498
- polygonFeature.properties.pointsWeight = pointsWeight;
499
- }
500
- this._calculator(polygonFeature, { fillBy });
501
- this._data.polygons.features.push(polygonFeature);
502
- }
503
- }
504
- }
505
- /**
506
- * Calculator for feture values.
507
- *
508
- * @param {Object} feature GeoJSON FeatureCollection.
509
- * @param {Object} options Options for calculating.
510
- * @private
511
- */
512
- _calculator(feature, options) {
513
- const { pointsCount } = feature.properties;
514
- const { pointsWeight } = feature.properties;
515
- const { fillBy } = options;
516
- if (typeof this.pointsCountMinimum === "undefined" || pointsCount <= this.pointsCountMinimum) {
517
- this.pointsCountMinimum = pointsCount;
518
- }
519
- if (typeof this.pointsCountMaximum === "undefined" || pointsCount >= this.pointsCountMaximum) {
520
- this.pointsCountMaximum = pointsCount;
521
- }
522
- if (fillBy === "weight") {
523
- if (typeof this.pointsWeightMinimum === "undefined" || pointsWeight <= this.pointsWeightMinimum) {
524
- this.pointsWeightMinimum = pointsWeight;
525
- }
526
- if (typeof this.pointsWeightMaximum === "undefined" || pointsWeight >= this.pointsWeightMaximum) {
527
- this.pointsWeightMaximum = pointsWeight;
528
- }
529
- }
530
- }
531
- /**
532
- * Render ObjectManager.
533
- *
534
- * @private
535
- */
536
- _render() {
537
- if (this.options.get("interactivity")) {
538
- this._initInteractivity();
539
- }
540
- this._map.geoObjects.add(this.objectManager);
541
- colorLegend_default.init(this);
542
- }
543
- /**
544
- * Init Options.
545
- *
546
- * @param {Object} options Options.
547
- * @param {Object} defaultOptions Default options.
548
- * @private
549
- */
550
- _initOptions(options, defaultOptions) {
551
- this.options = new OptionManager(options, defaultOptions);
552
- const mapper = this.options.get("mapper");
553
- const filterEmptyPolygons = this.options.get("filterEmptyPolygons");
554
- const colorScheme = this.options.get("colorScheme");
555
- const colorRanges = this.options.get("colorRanges");
556
- const onMouseEnter = this.options.get("onMouseEnter");
557
- const onMouseLeave = this.options.get("onMouseLeave");
558
- const onClick = this.options.get("onClick");
559
- this.options.set("mapper", mapper.bind(this));
560
- if (filterEmptyPolygons) {
561
- this.options.set("filter", defaultFilter_default.bind(this));
562
- }
563
- if (typeof options.colorRanges === "undefined" && colorRanges !== colorScheme.length) {
564
- this.options.set("colorRanges", colorScheme.length);
565
- }
566
- this.options.set("onMouseEnter", onMouseEnter.bind(this));
567
- this.options.set("onMouseLeave", onMouseLeave.bind(this));
568
- this.options.set("onClick", onClick.bind(this));
569
- }
570
- /**
571
- * Init ObjectManager.
572
- *
573
- * @private
574
- */
575
- _initObjectManager() {
576
- const mapper = this.options.get("mapper");
577
- const filter = this.options.get("filter");
578
- const fillBy = this.options.get("fillBy");
579
- const fillByWeight = fillBy === "weight";
580
- const colorRangesMinimum = this.options.get("colorRangesMinimum");
581
- if (colorRangesMinimum === "min") {
582
- delete this.pointsCountMinimum;
583
- delete this.pointsWeightMinimum;
584
- const reducer2 = (acc, feature) => {
585
- if (!filter || filter(feature)) {
586
- this._calculator(feature, { fillBy });
587
- acc.push(feature);
588
- }
589
- return acc;
590
- };
591
- this._data.polygons.features = this._data.polygons.features.reduce(
592
- reducer2,
593
- []
594
- );
595
- }
596
- try {
597
- this.colorize = new colorize_default(
598
- colorRangesMinimum === "min" ? fillByWeight ? this.pointsWeightMinimum : this.pointsCountMinimum : colorRangesMinimum,
599
- fillByWeight ? this.pointsWeightMaximum : this.pointsCountMaximum,
600
- {
601
- colorScheme: this.options.get("colorScheme"),
602
- colorRanges: this.options.get("colorRanges")
603
- }
604
- );
605
- } catch (error) {
606
- console.error(error);
607
- }
608
- const reducer = (acc, feature) => {
609
- if (!filter || filter(feature)) {
610
- if (mapper) {
611
- acc.push(mapper(feature));
612
- } else {
613
- acc.push(feature);
614
- }
615
- this._calculator(feature, { fillBy });
616
- }
617
- return acc;
618
- };
619
- this._data.polygons.features = this._data.polygons.features.reduce(reducer, []);
620
- this.objectManager = new ObjectManager();
621
- this.objectManager.add(this._data.polygons);
622
- }
623
- /**
624
- * Init interactivity.
625
- *
626
- * @private
627
- */
628
- _initInteractivity() {
629
- this._prevObjectId = null;
630
- this.balloon = new ymaps.Balloon(this._map);
631
- const onMouseEnter = this.options.get("onMouseEnter");
632
- const onMouseLeave = this.options.get("onMouseLeave");
633
- const onClick = this.options.get("onClick");
634
- this.objectManager.events.add("mouseenter", onMouseEnter);
635
- this.objectManager.events.add("mouseleave", onMouseLeave);
636
- this.balloon.options.setParent(this._map.options);
637
- this.objectManager.events.add("click", onClick);
638
- }
639
- }
640
- provide(Polygonmap);
641
- }
642
- );
643
- }
644
- var Polygonmap_default = define$1;
645
- function sin(angle) {
646
- return Math.sin(Math.PI * angle / 180);
647
- }
648
- function cos(angle) {
649
- return Math.cos(Math.PI * angle / 180);
650
- }
651
- function hexagonGrid(projection, zoom, R, offsetLeft, offsetTop, width, height) {
652
- const colWidth = 1.5 * R;
653
- const rowHeight = 1.5 * R;
654
- const cols = Math.floor((width + R / 2) / colWidth) + 1;
655
- const rows = Math.floor(height / rowHeight);
656
- const result = { type: "FeatureCollection", features: [] };
657
- let id = 0;
658
- for (let c = 0; c < cols; c++) {
659
- for (let r = 0; r < rows; r++) {
660
- const horizontalShift = c % 2 === 0 ? 0 : -1 * sin(60);
661
- const x = c * 1.5;
662
- const y = r * (2 * sin(60)) + horizontalShift;
663
- const hexagon = [
664
- [cos(0) + x, sin(0) + y],
665
- [cos(60) + x, sin(60) + y],
666
- [cos(120) + x, sin(120) + y],
667
- [cos(180) + x, sin(180) + y],
668
- [cos(240) + x, sin(240) + y],
669
- [cos(300) + x, sin(300) + y],
670
- [cos(0) + x, sin(0) + y]
671
- ];
672
- const hexagonGlobals = hexagon.map(
673
- ([x2, y2]) => projection.fromGlobalPixels([offsetLeft + x2 * R, offsetTop + y2 * R], zoom)
674
- );
675
- result.features.push({
676
- type: "Feature",
677
- id: "hxg" + id++,
678
- geometry: {
679
- type: "Polygon",
680
- coordinates: [hexagonGlobals]
681
- },
682
- properties: {}
683
- });
684
- }
685
- }
686
- return result;
687
- }
688
- function squaresGrid(projection, zoom, sideLength, offsetLeft, offsetTop, width, height) {
689
- const cols = width / sideLength;
690
- const rows = height / sideLength;
691
- const result = { type: "FeatureCollection", features: [] };
692
- let id = 0;
693
- for (let r = 0; r < rows; r++) {
694
- for (let c = 0; c < cols; c++) {
695
- const left = offsetLeft + c * sideLength;
696
- const top = offsetTop + r * sideLength;
697
- const right = left + sideLength;
698
- const bottom = top + sideLength;
699
- const squarePixels = [
700
- [left, top],
701
- [right, top],
702
- [right, bottom],
703
- [left, bottom]
704
- ];
705
- const squareGlobals = squarePixels.map(
706
- (point) => projection.fromGlobalPixels(point, zoom)
707
- );
708
- result.features.push({
709
- type: "Feature",
710
- id: "sqr" + id++,
711
- geometry: {
712
- type: "Polygon",
713
- coordinates: [squareGlobals]
714
- },
715
- properties: {}
716
- });
717
- }
718
- }
719
- return result;
720
- }
721
- function define(ymaps) {
722
- Polygonmap_default(ymaps);
723
- ymaps.modules.define(
724
- "Gridmap",
725
- ["Polygonmap", "util.bounds"],
726
- (provide, Polygonmap, bounds) => {
727
- function getRequiredOption(options, path) {
728
- const value = get(options, path);
729
- if (!value) {
730
- throw new Error(`options.${path} is required parameter`);
731
- }
732
- return value;
733
- }
734
- class Gridmap {
735
- constructor(data, options) {
736
- this._data = data;
737
- this.options = options;
738
- }
739
- /**
740
- * Set Map instance to render Polygonmap object.
741
- *
742
- * @public
743
- * @param {Map} map Map instance.
744
- * @returns {Gridmap|Polygonmap} Self-reference.
745
- */
746
- setMap(map) {
747
- if (this._map !== map) {
748
- this._map = map;
749
- if (map && this._data) {
750
- this._render();
751
- return this._polygonmap;
752
- }
753
- }
754
- return this;
755
- }
756
- /**
757
- * Get the Map instance.
758
- *
759
- * @public
760
- * @returns {Map} Reference to Map instance.
761
- */
762
- getMap() {
763
- return this._map;
764
- }
765
- /**
766
- * Render Polygonmap.
767
- *
768
- * @private
769
- */
770
- _render() {
771
- const points = this._data;
772
- const zoom = getRequiredOption(this.options, "zoom");
773
- const projection = this._map.options.get("projection");
774
- let leftBottom;
775
- let rightTop;
776
- if (get(this.options, "grid.bounds")) {
777
- leftBottom = getRequiredOption(this.options, "grid.bounds.leftBottom");
778
- rightTop = getRequiredOption(this.options, "grid.bounds.rightTop");
779
- } else {
780
- const coords = points.features.map(
781
- ({ geometry: { coordinates } }) => coordinates
782
- );
783
- [leftBottom, rightTop] = bounds.fromPoints(coords, projection);
784
- }
785
- const [left, bottom] = projection.toGlobalPixels(leftBottom, zoom);
786
- const [right, top] = projection.toGlobalPixels(rightTop, zoom);
787
- const width = right - left;
788
- const height = bottom - top;
789
- const gripType = getRequiredOption(this.options, "grid.type");
790
- let polygons;
791
- switch (gripType) {
792
- case "hexagon": {
793
- const bigRadius = getRequiredOption(
794
- this.options,
795
- "grid.params.bigRadius"
796
- );
797
- polygons = hexagonGrid(
798
- projection,
799
- zoom,
800
- bigRadius,
801
- left,
802
- top,
803
- width,
804
- height
805
- );
806
- break;
807
- }
808
- case "square": {
809
- const sideWidth = getRequiredOption(
810
- this.options,
811
- "grid.params.sideLength"
812
- );
813
- polygons = squaresGrid(
814
- projection,
815
- zoom,
816
- sideWidth,
817
- left,
818
- top,
819
- width,
820
- height
821
- );
822
- break;
823
- }
824
- default: {
825
- throw new Error(`Unsupported grid's type ${gripType}`);
826
- }
827
- }
828
- this._polygonmap = new Polygonmap({ polygons, points }, this.options);
829
- this._polygonmap.setMap(this._map);
830
- }
831
- }
832
- provide(Gridmap);
833
- }
834
- );
835
- }
836
- var Gridmap_default = define;
837
- function defineCanvas(ymaps) {
838
- ymaps.modules.define(
839
- "heatmap.component.Canvas",
840
- ["option.Manager", "Monitor"],
841
- function(provide, OptionManager, Monitor) {
842
- const DEFAULT_OPTIONS = {
843
- // Point radius.
844
- radius: 10,
845
- // Radius factor.
846
- radiusFactor: 1,
847
- // Map layer opacity.
848
- opacity: 0.8,
849
- // Median point intencity.
850
- intensityOfMidpoint: 0.2,
851
- // Median of points weights.
852
- medianaOfWeights: 1,
853
- // Gradient.
854
- gradient: {
855
- 0.1: "rgba(128, 255, 0, 0.7)",
856
- 0.2: "rgba(255, 255, 0, 0.8)",
857
- 0.7: "rgba(234, 72, 58, 0.9)",
858
- 1: "rgba(162, 36, 25, 1)"
859
- }
860
- };
861
- const EMPTY_PNG = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAABFUlEQVR4nO3BMQEAAADCoPVP7WsIoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAMBPAABPO1TCQAAAABJRU5ErkJggg==";
862
- const Canvas = function(size) {
863
- this._canvas = document.createElement("canvas");
864
- this._canvas.width = size[0];
865
- this._canvas.height = size[1];
866
- this._context = this._canvas.getContext("2d");
867
- this.options = new OptionManager({});
868
- this._setupDrawTools();
869
- this._setupOptionMonitor();
870
- };
871
- Canvas.prototype.getBrushRadius = function() {
872
- return this.options.get("radius", DEFAULT_OPTIONS.radius) * this.options.get("radiusFactor", DEFAULT_OPTIONS.radiusFactor);
873
- };
874
- Canvas.prototype.generateDataURLHeatmap = function(points) {
875
- if (points && points.length > 0) {
876
- this._drawHeatmap(points);
877
- return this._canvas.toDataURL();
878
- } else {
879
- return EMPTY_PNG;
880
- }
881
- };
882
- Canvas.prototype.destroy = function() {
883
- this._destroyOptionMonitor();
884
- this._destroyDrawTools();
885
- };
886
- Canvas.prototype._setupOptionMonitor = function() {
887
- this._optionMonitor = new Monitor(this.options);
888
- return this._optionMonitor.add(
889
- ["radius", "radiusFactor", "gradient"],
890
- this._setupDrawTools,
891
- this
892
- );
893
- };
894
- Canvas.prototype._destroyOptionMonitor = function() {
895
- this._optionMonitor.removeAll();
896
- this._optionMonitor = {};
897
- };
898
- Canvas.prototype._setupDrawTools = function() {
899
- this._brush = this._createBrush();
900
- this._gradient = this._createGradient();
901
- return this;
902
- };
903
- Canvas.prototype._destroyDrawTools = function() {
904
- this._brush = null;
905
- this._gradient = null;
906
- };
907
- Canvas.prototype._createBrush = function() {
908
- const brush = document.createElement("canvas");
909
- const context = brush.getContext("2d");
910
- const radius = this.getBrushRadius();
911
- const gradient = context.createRadialGradient(
912
- radius,
913
- radius,
914
- 0,
915
- radius,
916
- radius,
917
- radius
918
- );
919
- brush.width = 2 * radius;
920
- brush.height = 2 * radius;
921
- gradient.addColorStop(0, "rgba(0,0,0,1)");
922
- gradient.addColorStop(1, "rgba(0,0,0,0)");
923
- context.fillStyle = gradient;
924
- context.fillRect(0, 0, 2 * radius, 2 * radius);
925
- return brush;
926
- };
927
- Canvas.prototype._createGradient = function() {
928
- const canvas = document.createElement("canvas");
929
- const context = canvas.getContext("2d");
930
- const gradient = context.createLinearGradient(0, 0, 0, 256);
931
- canvas.width = 1;
932
- canvas.height = 256;
933
- const gradientOption = this.options.get("gradient", DEFAULT_OPTIONS.gradient);
934
- for (const i in gradientOption) {
935
- if (gradientOption.hasOwnProperty(i)) {
936
- gradient.addColorStop(i, gradientOption[i]);
937
- }
938
- }
939
- context.fillStyle = gradient;
940
- context.fillRect(0, 0, 1, 256);
941
- return context.getImageData(0, 0, 1, 256).data;
942
- };
943
- Canvas.prototype._drawHeatmap = function(points) {
944
- const context = this._context;
945
- const radius = this.getBrushRadius();
946
- const intensityOfMidpoint = this.options.get(
947
- "intensityOfMidpoint",
948
- DEFAULT_OPTIONS.intensityOfMidpoint
949
- );
950
- const medianaOfWeights = this.options.get(
951
- "medianaOfWeights",
952
- DEFAULT_OPTIONS.medianaOfWeights
953
- );
954
- const weightFactor = intensityOfMidpoint / medianaOfWeights;
955
- context.clearRect(0, 0, this._canvas.width, this._canvas.height);
956
- for (let i = 0, length = points.length; i < length; i++) {
957
- context.globalAlpha = Math.min(points[i].weight * weightFactor, 1);
958
- context.drawImage(
959
- this._brush,
960
- points[i].coordinates[0] - radius,
961
- points[i].coordinates[1] - radius
962
- );
963
- }
964
- const heatmapImage = context.getImageData(
965
- 0,
966
- 0,
967
- this._canvas.width,
968
- this._canvas.height
969
- );
970
- this._colorize(heatmapImage.data);
971
- context.putImageData(heatmapImage, 0, 0);
972
- return this;
973
- };
974
- Canvas.prototype._colorize = function(pixels) {
975
- const opacity = this.options.get("opacity", DEFAULT_OPTIONS.opacity);
976
- for (let i = 3, length = pixels.length, j; i < length; i += 4) {
977
- if (pixels[i]) {
978
- j = 4 * pixels[i];
979
- pixels[i - 3] = this._gradient[j];
980
- pixels[i - 2] = this._gradient[j + 1];
981
- pixels[i - 1] = this._gradient[j + 2];
982
- pixels[i] = opacity * (this._gradient[j + 3] || 255);
983
- }
984
- }
985
- };
986
- provide(Canvas);
987
- }
988
- );
989
- }
990
- var Canvas_default = defineCanvas;
991
- function defineDataConverter(ymaps) {
992
- ymaps.modules.define("heatmap.component.dataConverter", [], function(provide) {
993
- const dataConverter = {};
994
- dataConverter.convert = function(data) {
995
- let points = [];
996
- if (typeof object == "string") {
997
- data = JSON.parse(data);
998
- }
999
- if (this._isJsonFeatureCollection(data)) {
1000
- for (let i = 0, l = data.features.length; i < l; i++) {
1001
- points = points.concat(this.convert(data.features[i]));
1002
- }
1003
- } else if (this._isCoordinates(data)) {
1004
- points.push(this._convertCoordinatesToPoint(data));
1005
- } else {
1006
- const dataArray = [].concat(data);
1007
- for (let i = 0, l = dataArray.length, item; i < l; i++) {
1008
- item = dataArray[i];
1009
- if (this._isCoordinates(item)) {
1010
- points.push(this._convertCoordinatesToPoint(item));
1011
- } else if (this._isJsonGeometry(item) && item.type == "Point") {
1012
- points.push(this._convertCoordinatesToPoint(item.coordinates));
1013
- } else if (this._isJsonFeature(item) && item.geometry.type == "Point") {
1014
- points.push(this._convertJsonFeatureToPoint(item));
1015
- } else if (this._isGeoObject(item) && item.geometry.getType() == "Point") {
1016
- points.push(this._convertGeoObjectToPoint(item));
1017
- } else if (this._isCollection(item)) {
1018
- const iterator = item.getIterator();
1019
- let geoObject;
1020
- while ((geoObject = iterator.getNext()) != iterator.STOP_ITERATION) {
1021
- points = points.concat(this.convert(geoObject));
1022
- }
1023
- }
1024
- }
1025
- }
1026
- return points;
1027
- };
1028
- dataConverter._isJsonFeature = function(object2) {
1029
- return object2.type == "Feature";
1030
- };
1031
- dataConverter._convertJsonFeatureToPoint = function(jsonFeature) {
1032
- let weight = 1;
1033
- if (jsonFeature.properties && jsonFeature.properties.weight) {
1034
- weight = jsonFeature.properties.weight;
1035
- }
1036
- return {
1037
- coordinates: jsonFeature.geometry.coordinates,
1038
- weight
1039
- };
1040
- };
1041
- dataConverter._isJsonFeatureCollection = function(object2) {
1042
- return object2.type == "FeatureCollection";
1043
- };
1044
- dataConverter._isCoordinates = function(object2) {
1045
- return Object.prototype.toString.call(object2) == "[object Array]" && typeof object2[0] == "number" && typeof object2[1] == "number";
1046
- };
1047
- dataConverter._convertCoordinatesToPoint = function(coordinates) {
1048
- return {
1049
- coordinates,
1050
- weight: 1
1051
- };
1052
- };
1053
- dataConverter._isJsonGeometry = function(object2) {
1054
- return Boolean(object2.type && object2.coordinates);
1055
- };
1056
- dataConverter._isGeoObject = function(object2) {
1057
- return Boolean(object2.geometry && object2.getOverlay);
1058
- };
1059
- dataConverter._convertGeoObjectToPoint = function(geoObject) {
1060
- return {
1061
- coordinates: geoObject.geometry.getCoordinates(),
1062
- weight: geoObject.properties.get("weight") || 1
1063
- };
1064
- };
1065
- dataConverter._isCollection = function(object2) {
1066
- return Boolean(object2.getIterator);
1067
- };
1068
- provide(dataConverter);
1069
- });
1070
- }
1071
- var DataConverter_default = defineDataConverter;
1072
- function defineHeatmap(ymaps) {
1073
- ymaps.modules.define(
1074
- "Heatmap",
1075
- [
1076
- "option.Manager",
1077
- "Monitor",
1078
- "Layer",
1079
- "heatmap.component.dataConverter",
1080
- "heatmap.component.TileUrlsGenerator"
1081
- ],
1082
- function(provide, OptionManager, Monitor, Layer2, dataConverter, TileUrlsGenerator) {
1083
- const Heatmap = function(data, options) {
1084
- this._unprocessedPoints = [];
1085
- if (data) {
1086
- this.setData(data);
1087
- }
1088
- this.options = new OptionManager(options);
1089
- };
1090
- Heatmap.prototype.getData = function() {
1091
- return this._data || null;
1092
- };
1093
- Heatmap.prototype.setData = function(data) {
1094
- this._data = data;
1095
- const points = dataConverter.convert(data);
1096
- if (this._tileUrlsGenerator) {
1097
- this._tileUrlsGenerator.setPoints(points);
1098
- this._refresh();
1099
- } else {
1100
- this._unprocessedPoints = points;
1101
- }
1102
- return this;
1103
- };
1104
- Heatmap.prototype.getMap = function() {
1105
- return this._map;
1106
- };
1107
- Heatmap.prototype.setMap = function(map) {
1108
- if (this._map != map) {
1109
- if (this._layer) {
1110
- this._map.layers.remove(this._layer);
1111
- this._destroyLayer();
1112
- }
1113
- this._map = map;
1114
- if (map) {
1115
- this._setupLayer();
1116
- this._map.layers.add(this._layer);
1117
- }
1118
- }
1119
- return this;
1120
- };
1121
- Heatmap.prototype.destroy = function() {
1122
- this._data = null;
1123
- this.setMap(null);
1124
- };
1125
- Heatmap.prototype._refresh = function() {
1126
- if (this._layer) {
1127
- this._layer.update();
1128
- }
1129
- return this;
1130
- };
1131
- Heatmap.prototype._setupLayer = function() {
1132
- this._setupTileUrlsGenerator();
1133
- const getTileUrl = this._tileUrlsGenerator.getTileUrl.bind(this._tileUrlsGenerator);
1134
- this._layer = new Layer2(getTileUrl, { tileTransparent: true });
1135
- this._setupOptionMonitor();
1136
- return this._layer;
1137
- };
1138
- Heatmap.prototype._destroyLayer = function() {
1139
- this._destroyTileUrlsGenerator();
1140
- this._destroyOptionMonitor();
1141
- this._layer = null;
1142
- };
1143
- Heatmap.prototype._setupTileUrlsGenerator = function() {
1144
- this._tileUrlsGenerator = new TileUrlsGenerator(
1145
- this._map.options.get("projection"),
1146
- this._unprocessedPoints
1147
- );
1148
- this._unprocessedPoints = null;
1149
- this._tileUrlsGenerator.options.setParent(this.options);
1150
- return this._tileUrlsGenerator;
1151
- };
1152
- Heatmap.prototype._destroyTileUrlsGenerator = function() {
1153
- this._unprocessedPoints = this._tileUrlsGenerator.getPoints();
1154
- this._tileUrlsGenerator.destroy();
1155
- this._tileUrlsGenerator = null;
1156
- };
1157
- Heatmap.prototype._setupOptionMonitor = function() {
1158
- this._optionMonitor = new Monitor(this.options);
1159
- return this._optionMonitor.add(
1160
- ["radius", "dissipating", "opacity", "intensityOfMidpoint", "gradient"],
1161
- this._refresh,
1162
- this
1163
- );
1164
- };
1165
- Heatmap.prototype._destroyOptionMonitor = function() {
1166
- this._optionMonitor.removeAll();
1167
- this._optionMonitor = {};
1168
- };
1169
- provide(Heatmap);
1170
- }
1171
- );
1172
- }
1173
- var Heatmap_default = defineHeatmap;
1174
- function defineTitleUrlsGenerator(ymaps) {
1175
- ymaps.modules.define(
1176
- "heatmap.component.TileUrlsGenerator",
1177
- ["option.Manager", "heatmap.component.Canvas"],
1178
- function(provide, OptionManager, HeatmapCanvas) {
1179
- const TILE_SIZE = [256, 256];
1180
- const TileUrlsGenerator = function(projection, points) {
1181
- this._projection = projection;
1182
- this._canvas = new HeatmapCanvas(TILE_SIZE);
1183
- this.options = new OptionManager({});
1184
- this._canvas.options.setParent(this.options);
1185
- this.setPoints(points || []);
1186
- };
1187
- TileUrlsGenerator.prototype.setPoints = function(points) {
1188
- this._points = [];
1189
- const weights = [];
1190
- for (let i = 0, length = points.length; i < length; i++) {
1191
- this._points.push({
1192
- coordinates: this._projection.toGlobalPixels(points[i].coordinates, 0),
1193
- weight: points[i].weight
1194
- });
1195
- weights.push(points[i].weight);
1196
- }
1197
- this._canvas.options.set("medianaOfWeights", findMediana(weights));
1198
- return this;
1199
- };
1200
- TileUrlsGenerator.prototype.getPoints = function() {
1201
- const points = [];
1202
- for (let i = 0, length = this._points.length; i < length; i++) {
1203
- points.push({
1204
- coordinates: this._projection.fromGlobalPixels(
1205
- this._points[i].coordinates,
1206
- 0
1207
- ),
1208
- weight: this._points[i].weight
1209
- });
1210
- }
1211
- return points;
1212
- };
1213
- TileUrlsGenerator.prototype.getTileUrl = function(tileNumber, zoom) {
1214
- const radiusFactor = this._canvas.options.get("radiusFactor");
1215
- if (this.options.get("dissipating")) {
1216
- const newRadiusFactor = calculateRadiusFactor(zoom);
1217
- if (radiusFactor != newRadiusFactor) {
1218
- this._canvas.options.set("radiusFactor", newRadiusFactor);
1219
- }
1220
- } else if (radiusFactor) {
1221
- this._canvas.options.unset("radiusFactor");
1222
- }
1223
- const zoomFactor = Math.pow(2, zoom);
1224
- const tileBounds = [
1225
- [
1226
- tileNumber[0] * TILE_SIZE[0] / zoomFactor,
1227
- tileNumber[1] * TILE_SIZE[1] / zoomFactor
1228
- ],
1229
- [
1230
- (tileNumber[0] + 1) * TILE_SIZE[0] / zoomFactor,
1231
- (tileNumber[1] + 1) * TILE_SIZE[1] / zoomFactor
1232
- ]
1233
- ];
1234
- const tileMargin = this._canvas.getBrushRadius() / zoomFactor;
1235
- const points = [];
1236
- for (let i = 0, length = this._points.length, point; i < length; i++) {
1237
- point = this._points[i].coordinates;
1238
- if (this._contains(tileBounds, point, tileMargin)) {
1239
- points.push({
1240
- coordinates: [
1241
- (point[0] - tileBounds[0][0]) * zoomFactor,
1242
- (point[1] - tileBounds[0][1]) * zoomFactor
1243
- ],
1244
- weight: this._points[i].weight
1245
- });
1246
- }
1247
- }
1248
- return this._canvas.generateDataURLHeatmap(points);
1249
- };
1250
- TileUrlsGenerator.prototype.destroy = function() {
1251
- this._canvas.destroy();
1252
- this._canvas = null;
1253
- this._projection = null;
1254
- };
1255
- TileUrlsGenerator.prototype._contains = function(bounds, point, margin) {
1256
- return point[0] >= bounds[0][0] - margin && point[0] <= bounds[1][0] + margin && point[1] >= bounds[0][1] - margin && point[1] <= bounds[1][1] + margin;
1257
- };
1258
- function calculateRadiusFactor(zoom) {
1259
- return Math.pow(zoom / 10, 1.1);
1260
- }
1261
- function findMediana(selection) {
1262
- const sortSelection = selection.sort(comparator);
1263
- const center = sortSelection.length / 2;
1264
- if (center !== Math.floor(center)) {
1265
- return sortSelection[Math.floor(center)];
1266
- } else {
1267
- return (sortSelection[center - 1] + sortSelection[center]) / 2;
1268
- }
1269
- }
1270
- function comparator(a, b2) {
1271
- return a - b2;
1272
- }
1273
- provide(TileUrlsGenerator);
1274
- }
1275
- );
1276
- }
1277
- var TileUrlsGenerator_default = defineTitleUrlsGenerator;
1278
- function defineModules(ymaps) {
1279
- Heatmap_default(ymaps);
1280
- DataConverter_default(ymaps);
1281
- TileUrlsGenerator_default(ymaps);
1282
- Canvas_default(ymaps);
1283
- }
1284
- var modules_default = defineModules;
1285
- const IS_DEVELOPMENT = process.env.NODE_ENV === "development";
1286
- const ONLOAD = "__chartkit_ymaps_onload";
1287
- const ONERROR = "__chartkit_ymaps_onerror";
1288
- function getFetchUrl(lang, apiKey = "") {
1289
- const apiKeyParam = apiKey ? `&apikey=${apiKey}` : "";
1290
- return `https://api-maps.yandex.ru/2.1?lang=${lang}_RU${apiKeyParam}&mode=${IS_DEVELOPMENT ? "debug" : "release"}&ns=&onload=${ONLOAD}&onerror=${ONERROR}`;
1291
- }
1292
- function combinedMapper(feature) {
1293
- const mappedFeature = defaultMapper_default.call(this, feature);
1294
- const nameProperty = this.options.get("nameProperty");
1295
- const name = nameProperty ? mappedFeature.properties[nameProperty] : void 0;
1296
- return merge({}, mappedFeature, {
1297
- properties: {
1298
- name,
1299
- text: this.options.get("valuesText"),
1300
- value: this.options.get("fillBy") === "weight" ? mappedFeature.properties.pointsWeight : mappedFeature.properties.pointsCount
1301
- }
1302
- });
1303
- }
1304
- function combinedMapperNoPoints(feature) {
1305
- const mappedFeature = defaultMapper_default.call(this, feature);
1306
- const nameProperty = this.options.get("nameProperty");
1307
- const name = nameProperty ? mappedFeature.properties[nameProperty] : void 0;
1308
- return merge({}, mappedFeature, {
1309
- properties: {
1310
- name,
1311
- text: this.options.get("valuesText")
1312
- }
1313
- });
1314
- }
1315
- function arrayOfArraysToPointsCollection(points) {
1316
- return {
1317
- type: "FeatureCollection",
1318
- features: points.map(([coordA, coordB, weight]) => {
1319
- return {
1320
- geometry: {
1321
- coordinates: [coordA, coordB],
1322
- type: "Point"
1323
- },
1324
- properties: { weight },
1325
- type: "Feature"
1326
- };
1327
- })
1328
- };
1329
- }
1330
- const GEO_OBJECT_TYPE = {
1331
- POLYGONMAP: "polygonmap",
1332
- GRIDMAP: "gridmap",
1333
- HEATMAP: "heatmap",
1334
- GEOCOLLECTION: "geocollection"
1335
- };
1336
- const b$3 = block("chartkit-tooltip");
1337
- const TOOLTIP_TWIG_TEMPLATE = `<div
1338
- class="${b$3({ "yandex-map": true })}"
1339
- {% if (!(properties.name || properties.value !== undefined || properties.text || properties.data)) %}
1340
- style="display: none"
1341
- {% endif %}
1342
- >
1343
- {% if (properties.name) %}
1344
- <div class="${b$3("header")}">
1345
- {{properties.name}}
1346
- </div>
1347
- {% endif %}
1348
- {% if (properties.value !== undefined || properties.text) %}
1349
- <div class="${b$3("row")}">
1350
- {% if (properties.value !== undefined) %}
1351
- <div class="${b$3("cell", {
1352
- "yandex-map": true
1353
- })}">{{properties.value|number}}</div>
1354
- {% endif %}
1355
- {% if (properties.text) %}
1356
- <div class="${b$3("cell", { "yandex-map": true })}">
1357
- {% if (properties.rawText) %}
1358
- {{properties.text|raw}}
1359
- {% else %}
1360
- {{properties.text}}
1361
- {% endif %}
1362
- </div>
1363
- {% endif %}
1364
- </div>
1365
- {% endif %}
1366
- {% if (properties.data) %}
1367
- {% if (properties.value !== undefined || properties.text || properties.name) %}
1368
- <wbr>
1369
- {% endif %}
1370
- {% for part in properties.data %}
1371
- <div class="${b$3("row")}
1372
- ">
1373
- {% if (properties.data.0.color) %}
1374
- <div class="${b$3("cell")}">
1375
- <span class="${b$3(
1376
- "color"
1377
- )}" style="background-color: {{part.color}};"></span>
1378
- </div>
1379
- {% endif %}
1380
- <div class="${b$3("cell", { "yandex-map": true })}">{{part.weight|number}}</div>
1381
- <div class="${b$3("cell", { "yandex-map": true })}">
1382
- {% if (properties.rawText) %}
1383
- {{part.text|raw}}
1384
- {% else %}
1385
- {{part.text}}
1386
- {% endif %}
1387
- </div>
1388
- </div>
1389
- {% endfor %}
1390
- {% endif %}
1391
- </div>`;
1392
- function setHeatmapVisibility(heatmap, value) {
1393
- if (value) {
1394
- heatmap.options.set("opacity", heatmap.options.get("opacitySaved"));
1395
- heatmap.options.set("opacitySaved", null);
1396
- } else {
1397
- heatmap.options.set("opacitySaved", heatmap.options.get("opacity"));
1398
- heatmap.options.set("opacity", 0);
1399
- }
1400
- }
1401
- function setPolygonmapVisibility(geoObject, value) {
1402
- const objects = geoObject.objectManager.objects;
1403
- objects.getAll().forEach(
1404
- ({
1405
- id,
1406
- options: {
1407
- fillOpacity,
1408
- fillOpacityHover,
1409
- strokeWidth,
1410
- strokeWidthHover,
1411
- fillOpacitySaved,
1412
- fillOpacityHoverSaved,
1413
- strokeWidthSaved,
1414
- strokeWidthHoverSaved
1415
- }
1416
- }) => {
1417
- if (value) {
1418
- objects.setObjectOptions(id, {
1419
- openHintOnHover: true,
1420
- zIndex: 100,
1421
- fillOpacity: fillOpacitySaved,
1422
- fillOpacityHover: fillOpacityHoverSaved,
1423
- strokeWidth: strokeWidthSaved,
1424
- strokeWidthHover: strokeWidthHoverSaved,
1425
- fillOpacitySaved: null,
1426
- fillOpacityHoverSaved: null,
1427
- strokeWidthSaved: null,
1428
- strokeWidthHoverSaved: null
1429
- });
1430
- } else {
1431
- objects.setObjectOptions(id, {
1432
- openHintOnHover: false,
1433
- zIndex: -100,
1434
- fillOpacity: 0,
1435
- fillOpacityHover: 0,
1436
- strokeWidth: 0,
1437
- strokeWidthHover: 0,
1438
- fillOpacitySaved: fillOpacity,
1439
- fillOpacityHoverSaved: fillOpacityHover,
1440
- strokeWidthSaved: strokeWidth,
1441
- strokeWidthHoverSaved: strokeWidthHover
1442
- });
1443
- }
1444
- }
1445
- );
1446
- }
1447
- class YandexMap {
1448
- static _ymaps;
1449
- static _promise;
1450
- static _shared = {};
1451
- static _loadApi(lang, apiKey) {
1452
- return new Promise((resolve, reject) => {
1453
- window[ONLOAD] = (api) => {
1454
- YandexMap._ymaps = api;
1455
- resolve(api);
1456
- delete window[ONLOAD];
1457
- };
1458
- window[ONERROR] = (error) => {
1459
- reject(ChartKitCustomError.wrap(error));
1460
- delete window[ONERROR];
1461
- };
1462
- fetchScript(getFetchUrl(lang, apiKey)).catch((error) => {
1463
- throw ChartKitCustomError.wrap(error);
1464
- });
1465
- });
1466
- }
1467
- static async _initModules() {
1468
- try {
1469
- await YandexMap._ymaps.modules.require("layer.tileContainer.CanvasContainer").then(([canvasContainer]) => {
1470
- if (canvasContainer?.superclass?.constructor) {
1471
- const superclassCtor = canvasContainer.superclass.constructor;
1472
- canvasContainer.superclass.constructor = function(...args) {
1473
- const result = superclassCtor.call(this, args);
1474
- this.options?.set("crossOrigin", "anonymous");
1475
- return result;
1476
- };
1477
- }
1478
- });
1479
- Gridmap_default(YandexMap._ymaps);
1480
- modules_default(YandexMap._ymaps);
1481
- YandexMap._ymaps.template.filtersStorage.add(
1482
- "number",
1483
- (dataLogger, value) => numberFormat(value)
1484
- );
1485
- YandexMap._shared.hintLayout = YandexMap._ymaps.templateLayoutFactory.createClass(
1486
- TOOLTIP_TWIG_TEMPLATE,
1487
- {
1488
- // Defining the getShape method, which will return the dimensions of the hint layout.
1489
- // This is necessary in order for the hint to automatically shift the position when going outside the map.
1490
- getShape: function() {
1491
- const element = this.getElement();
1492
- let result = null;
1493
- if (element) {
1494
- const firstChild = element.firstChild;
1495
- result = new YandexMap._ymaps.shape.Rectangle(
1496
- new YandexMap._ymaps.geometry.pixel.Rectangle([
1497
- [0, 0],
1498
- [firstChild.offsetWidth, firstChild.offsetHeight]
1499
- ])
1500
- );
1501
- }
1502
- return result;
1503
- }
1504
- }
1505
- );
1506
- YandexMap._shared.balloonContentLayout = YandexMap._ymaps.templateLayoutFactory.createClass(
1507
- `{% if (properties.balloonContentHeader || properties.balloonContentBody || properties.balloonContentFooter) %}
1508
- <div class="${b$3()}">
1509
- <div class="${b$3("header")}">
1510
- $[properties.balloonContentHeader]
1511
- </div>
1512
- <div class="${b$3("row")}">
1513
- $[properties.balloonContentBody]
1514
- </div>
1515
- <div class="${b$3("footer")}">
1516
- $[properties.balloonContentFooter]
1517
- </div>
1518
- </div>
1519
- {% endif %}`
1520
- );
1521
- const Chips = YandexMap._ymaps.templateLayoutFactory.createClass(
1522
- '<div class="chartkit-yandex-map-chips">$[properties.label]</div>',
1523
- {
1524
- build: function() {
1525
- Chips.superclass.build.call(this);
1526
- const map = this.getData().geoObject.getMap();
1527
- if (!this.inited) {
1528
- this.inited = true;
1529
- let zoom = map.getZoom();
1530
- map.events.add(
1531
- "boundschange",
1532
- function() {
1533
- const currentZoom = map.getZoom();
1534
- if (currentZoom !== zoom) {
1535
- zoom = currentZoom;
1536
- this.rebuild();
1537
- }
1538
- },
1539
- this
1540
- );
1541
- }
1542
- const properties = this.getData().properties;
1543
- const options = this.getData().options;
1544
- const geoObjectOptions = this.getData().geoObject.options;
1545
- const radius = properties.get("radius");
1546
- const label = properties.get("label");
1547
- const size = map.getZoom() * radius;
1548
- const element = this.getParentElement().getElementsByClassName(
1549
- "chartkit-yandex-map-chips"
1550
- )[0];
1551
- element.style.width = element.style.height = size + "px";
1552
- element.style.marginLeft = element.style.marginTop = -size / 2 + "px";
1553
- element.style.backgroundColor = options.get("color");
1554
- element.style.opacity = geoObjectOptions.get("opacity");
1555
- const MIN_SIZE_TO_SHOW_LABEL = 25;
1556
- if (label && size >= MIN_SIZE_TO_SHOW_LABEL) {
1557
- const BASE_TEXT_MULTIPLIER = 0.31;
1558
- element.style.fontSize = size * BASE_TEXT_MULTIPLIER + "px";
1559
- } else {
1560
- element.style.fontSize = "0px";
1561
- }
1562
- const circleShape = { type: "Circle", coordinates: [0, 0], radius: size / 2 };
1563
- options.set("shape", circleShape);
1564
- const isActive = geoObjectOptions.get("active");
1565
- const classNames = new Set(element.className.split(" "));
1566
- if (isActive === true) {
1567
- classNames.delete("inactive");
1568
- classNames.add("active");
1569
- } else if (isActive === false) {
1570
- classNames.delete("active");
1571
- classNames.add("inactive");
1572
- } else {
1573
- classNames.delete("inactive");
1574
- classNames.delete("active");
1575
- }
1576
- element.className = Array.from(classNames).join(" ");
1577
- this.optionsMonitor = new YandexMap._ymaps.Monitor(geoObjectOptions).add(
1578
- "opacity",
1579
- (newValue) => {
1580
- element.style.opacity = newValue;
1581
- }
1582
- );
1583
- },
1584
- clear: function() {
1585
- Chips.superclass.clear.call(this);
1586
- this.optionsMonitor.removeAll();
1587
- }
1588
- }
1589
- );
1590
- YandexMap._ymaps.option.presetStorage.add("chartkit#chips", { iconLayout: Chips });
1591
- } catch (error) {
1592
- throw ChartKitCustomError.wrap(error);
1593
- }
1594
- }
1595
- // TODO: Calling YandexMap._initModules and YandexMap._promise = null look kind of sloppy
1596
- static async _initYmaps(lang, apiKey) {
1597
- try {
1598
- if (window.ymaps) {
1599
- YandexMap._ymaps = window.ymaps;
1600
- } else if (!YandexMap._promise) {
1601
- YandexMap._promise = YandexMap._loadApi(lang, apiKey).then(YandexMap._initModules);
1602
- }
1603
- await YandexMap._promise;
1604
- } catch (error) {
1605
- YandexMap._promise = null;
1606
- throw ChartKitCustomError.wrap(error);
1607
- }
1608
- }
1609
- static async draw({ node, data, config, events, lang }) {
1610
- let yandexMapAPIWaiting = null;
1611
- let geoObjectsInstantiationDuration = null;
1612
- const { ymap: { state, options: configOptions, apiKey } = {} } = config;
1613
- if (!YandexMap._ymaps) {
1614
- const initYmapsMarkId = getRandomCKId();
1615
- Performance.mark(initYmapsMarkId);
1616
- await YandexMap._initYmaps(lang, apiKey);
1617
- yandexMapAPIWaiting = Performance.getDuration(initYmapsMarkId);
1618
- }
1619
- const bounds = state.bounds;
1620
- if (bounds && isEqual(bounds[0], bounds[1])) {
1621
- const zoomRange = await YandexMap._ymaps.getZoomRange("yandex#map", bounds[0]);
1622
- state.center = bounds[0];
1623
- state.zoom = zoomRange[1];
1624
- delete state.bounds;
1625
- }
1626
- const geoObjectsInstantiationMarkId = getRandomCKId();
1627
- Performance.mark(geoObjectsInstantiationMarkId);
1628
- const map = new YandexMap._ymaps.Map(
1629
- node,
1630
- {
1631
- controls: [],
1632
- behaviors: [],
1633
- ...state
1634
- },
1635
- {
1636
- yandexMapDisablePoiInteractivity: true,
1637
- suppressMapOpenBlock: true,
1638
- hintCloseTimeout: 100,
1639
- hintOpenTimeout: 100,
1640
- hintPane: "hint",
1641
- hintLayout: YandexMap._shared.hintLayout,
1642
- balloonPanelMaxMapArea: 0,
1643
- autoFitToViewport: "always",
1644
- ...configOptions
1645
- }
1646
- );
1647
- if (events) {
1648
- Object.entries(events).forEach(([key, value]) => {
1649
- map.events.add(key, value);
1650
- });
1651
- }
1652
- const extendOptions = (options) => {
1653
- const result = {
1654
- balloonContentLayout: YandexMap._shared.balloonContentLayout,
1655
- ...options
1656
- };
1657
- if (result.showCustomLegend) {
1658
- result.showLegend = false;
1659
- }
1660
- return result;
1661
- };
1662
- if (isEmpty(data)) {
1663
- throw new ChartKitCustomError(null, { code: ERROR_CODE.NO_DATA });
1664
- }
1665
- const responses = await Promise.allSettled(
1666
- data.map(async (item, index) => {
1667
- if (item.collection) {
1668
- const {
1669
- collection: { geometry, properties, children }
1670
- } = item;
1671
- const geoObjectChildren = children.reduce(
1672
- (result, { feature, options: childOptions }) => {
1673
- result.push(new YandexMap._ymaps.GeoObject(feature, childOptions));
1674
- return result;
1675
- },
1676
- []
1677
- );
1678
- const geoCollection = new YandexMap._ymaps.GeoObjectCollection(
1679
- { geometry, properties, children: geoObjectChildren },
1680
- {
1681
- ...extendOptions(item.options),
1682
- geoObjectType: GEO_OBJECT_TYPE.GEOCOLLECTION,
1683
- zIndex: index
1684
- }
1685
- );
1686
- map.geoObjects.add(geoCollection);
1687
- return geoCollection;
1688
- } else if (item.clusterer) {
1689
- const { clusterer, options } = item;
1690
- const geoClusterer = new YandexMap._ymaps.Clusterer(options);
1691
- clusterer.forEach(({ feature, options: innerOptions }) => {
1692
- const geoObject = new YandexMap._ymaps.GeoObject(
1693
- feature,
1694
- extendOptions(innerOptions)
1695
- );
1696
- geoClusterer.add(geoObject);
1697
- });
1698
- map.geoObjects.add(geoClusterer);
1699
- return geoClusterer;
1700
- } else if (item.polygonmap) {
1701
- const {
1702
- polygonmap: {
1703
- polygons,
1704
- points = { type: "FeatureCollection", features: [] },
1705
- values
1706
- },
1707
- options
1708
- } = item;
1709
- const featurePointsCollection = points.type === "FeatureCollection" ? points : arrayOfArraysToPointsCollection(points);
1710
- const useValues = options.joinByProperty && values;
1711
- if (useValues) {
1712
- const valuesDict = values.reduce((result, value) => {
1713
- const key = value[options.joinByProperty];
1714
- result[key] = value.value;
1715
- return result;
1716
- }, {});
1717
- polygons.features = polygons.features.map((feature) => {
1718
- const key = feature.properties[options.joinByProperty];
1719
- return merge({}, feature, { properties: { pointsCount: valuesDict[key] } });
1720
- });
1721
- }
1722
- return new Promise((resolve, reject) => {
1723
- YandexMap._ymaps.modules.require(["Polygonmap"], (Polygonmap) => {
1724
- if (options.mapper === "emptyMapper") {
1725
- delete options.mapper;
1726
- }
1727
- const mapper = featurePointsCollection.features.length || useValues ? combinedMapper : combinedMapperNoPoints;
1728
- let polygonmap = new Polygonmap(
1729
- { polygons, points: featurePointsCollection },
1730
- Object.assign(
1731
- {
1732
- colorRangesMinimum: 1,
1733
- onClick: function() {
1734
- },
1735
- mapper,
1736
- geoObjectType: GEO_OBJECT_TYPE.POLYGONMAP
1737
- },
1738
- extendOptions(options)
1739
- )
1740
- );
1741
- try {
1742
- polygonmap = polygonmap.setMap(map);
1743
- } catch (error) {
1744
- logger.logError("YandexMapModule.draw failed [Polygonmap]", error);
1745
- reject();
1746
- }
1747
- if (polygonmap.options.get("visible") === false) {
1748
- setPolygonmapVisibility(polygonmap, false);
1749
- }
1750
- polygonmap.optionsMonitor = new YandexMap._ymaps.Monitor(
1751
- polygonmap.options
1752
- ).add(
1753
- "visible",
1754
- (newValue) => setPolygonmapVisibility(polygonmap, newValue)
1755
- );
1756
- resolve(polygonmap);
1757
- });
1758
- });
1759
- }
1760
- if (item.gridmap) {
1761
- const featurePointsCollection = item.gridmap.type === "FeatureCollection" ? item.gridmap : arrayOfArraysToPointsCollection(item.gridmap);
1762
- return new Promise((resolve) => {
1763
- YandexMap._ymaps.modules.require(["Gridmap"], (Gridmap) => {
1764
- let gridmap = new Gridmap(
1765
- featurePointsCollection,
1766
- merge(
1767
- {
1768
- filterEmptyPolygons: true,
1769
- colorRangesMinimum: 1,
1770
- onClick: function() {
1771
- },
1772
- mapper: combinedMapper,
1773
- geoObjectType: GEO_OBJECT_TYPE.GRIDMAP
1774
- },
1775
- extendOptions(item.options)
1776
- )
1777
- );
1778
- gridmap = gridmap.setMap(map);
1779
- if (gridmap.options.get("visible") === false) {
1780
- setPolygonmapVisibility(gridmap, false);
1781
- }
1782
- gridmap.optionsMonitor = new YandexMap._ymaps.Monitor(
1783
- gridmap.options
1784
- ).add(
1785
- "visible",
1786
- (newValue) => setPolygonmapVisibility(gridmap, newValue)
1787
- );
1788
- resolve(gridmap);
1789
- });
1790
- });
1791
- }
1792
- if (item.heatmap) {
1793
- return new Promise((resolve) => {
1794
- YandexMap._ymaps.modules.require(["Heatmap"], (Heatmap) => {
1795
- const heatmap = new Heatmap(item.heatmap, {
1796
- ...extendOptions(item.options),
1797
- geoObjectType: GEO_OBJECT_TYPE.HEATMAP
1798
- });
1799
- if (heatmap.options.get("visible") === false) {
1800
- setHeatmapVisibility(heatmap, false);
1801
- }
1802
- heatmap.setMap(map);
1803
- heatmap.optionsMonitor = new YandexMap._ymaps.Monitor(
1804
- heatmap.options
1805
- ).add("visible", (newValue) => setHeatmapVisibility(heatmap, newValue));
1806
- resolve(heatmap);
1807
- });
1808
- });
1809
- } else {
1810
- const { feature, options } = item;
1811
- const geoObject = new YandexMap._ymaps.GeoObject(
1812
- feature,
1813
- extendOptions(options)
1814
- );
1815
- map.geoObjects.add(geoObject);
1816
- return geoObject;
1817
- }
1818
- })
1819
- );
1820
- const geoObjects = responses.reduce((acc, response) => {
1821
- if (response.status === "fulfilled") {
1822
- acc.push(response.value);
1823
- }
1824
- return acc;
1825
- }, []);
1826
- geoObjectsInstantiationDuration = Performance.getDuration(geoObjectsInstantiationMarkId);
1827
- const mapPerformanceMetrics = {
1828
- geoObjectsInstantiationDuration,
1829
- yandexMapAPIWaiting
1830
- };
1831
- return { map, geoObjects, mapPerformanceMetrics };
1832
- }
1833
- }
1834
- var yandex_map_default = YandexMap;
1835
- const EyeSlashIcon = () => /* @__PURE__ */ jsx("svg", { width: "16", height: "16", viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx(
1836
- "path",
1837
- {
1838
- d: "M15.8502 13.3666L0.923557 1.70983C0.848674 1.65991 0.74883 1.60999 0.673947 1.60999C0.549142 1.60999 0.424337 1.68487 0.349454 1.75975L0.099844 2.08424C0.049922 2.13417 0 2.25897 0 2.33385C0 2.4337 0.074883 2.58346 0.174727 2.63339L15.1014 14.3151C15.1513 14.3651 15.2512 14.39 15.351 14.39C15.4509 14.39 15.5757 14.3401 15.6505 14.2403L15.9002 13.9407C15.9501 13.8908 16 13.766 16 13.6911C16 13.5913 15.9251 13.4415 15.8502 13.3666ZM7.41342 5.27925L10.7832 7.90016C10.7332 6.4025 9.51014 5.20437 8.01248 5.20437C7.83775 5.22933 7.58814 5.25429 7.41342 5.27925ZM8.58658 10.7457L5.21685 8.12481C5.26677 9.62247 6.48986 10.7956 8.01248 10.7956C8.16225 10.7956 8.41186 10.7707 8.58658 10.7457ZM8.01248 4.40562C10.4587 4.40562 12.7301 5.77847 13.9282 8C13.6786 8.47426 13.2044 9.14821 12.83 9.52262L13.7785 10.2465C14.2278 9.77223 14.8019 8.94852 15.1014 8.37442C15.1513 8.27457 15.2012 8.12481 15.2012 8C15.2012 7.90016 15.1513 7.75039 15.1014 7.65055C13.7535 5.00468 11.0577 3.20749 8.01248 3.20749C7.08892 3.20749 6.21529 3.38222 5.39158 3.68175L6.53978 4.60531C7.01404 4.4805 7.51326 4.40562 8.01248 4.40562ZM8.01248 11.5944C5.54134 11.5944 3.26989 10.2215 2.07176 8C2.32137 7.5507 2.79563 6.87676 3.17005 6.50234L2.22153 5.77847C1.77223 6.25273 1.19813 7.07644 0.898596 7.65055C0.848674 7.75039 0.823713 7.90016 0.823713 8.02496C0.823713 8.12481 0.848674 8.27457 0.898596 8.37442C2.24649 11.0203 4.94228 12.7925 8.01248 12.7925C8.91108 12.7925 9.78471 12.6178 10.6084 12.3432L9.46022 11.4197C8.98596 11.5445 8.48674 11.5944 8.01248 11.5944Z",
1839
- fill: "currentColor"
1840
- }
1841
- ) });
1842
- const SizeIcon = () => /* @__PURE__ */ jsx(
1843
- "svg",
1844
- {
1845
- width: "164",
1846
- height: "12",
1847
- viewBox: "0 0 164 12",
1848
- fill: "none",
1849
- xmlns: "http://www.w3.org/2000/svg",
1850
- children: /* @__PURE__ */ jsx("path", { d: "M0.5 11.5V9.46973L163.5 0.532226V11.5H0.5Z", stroke: "currentColor" })
1851
- }
1852
- );
1853
- const b$2 = block("chartkit-ymap-legend-layer");
1854
- function wrappedFormatNumber(value) {
1855
- return formatNumber(value, { precision: "auto", unit: "auto" });
1856
- }
1857
- class Layer extends React__default.PureComponent {
1858
- constructor() {
1859
- super(...arguments);
1860
- this.state = {
1861
- layerVisibility: typeof this.props.geoObject.options.get("visible") === "boolean" ? this.props.geoObject.options.get("visible") : true,
1862
- categoriesVisibility: false
1863
- };
1864
- this.componentDidUpdate = (prevProps) => {
1865
- if (prevProps !== this.props) {
1866
- this.setState({
1867
- layerVisibility: typeof this.props.geoObject.options.get("visible") === "boolean" ? this.props.geoObject.options.get("visible") : true,
1868
- categoriesVisibility: false
1869
- });
1870
- }
1871
- };
1872
- this.onClickShowToggle = () => {
1873
- const newVisibilityValue = !this.state.layerVisibility;
1874
- this.setState({
1875
- layerVisibility: newVisibilityValue
1876
- });
1877
- this.props.onSetVisibility(
1878
- this.props.geoObject.options.get("geoObjectId"),
1879
- newVisibilityValue
1880
- );
1881
- };
1882
- this.onClickCollapseToggle = () => {
1883
- const newVisibilityValue = !this.state.categoriesVisibility;
1884
- this.setState({
1885
- categoriesVisibility: newVisibilityValue
1886
- });
1887
- };
1888
- }
1889
- render() {
1890
- const { geoObject, singleLayerMode } = this.props;
1891
- const { layerVisibility, categoriesVisibility } = this.state;
1892
- const layerTitle = geoObject.options.get("layerTitle");
1893
- const geoObjectId = geoObject.options.get("geoObjectId");
1894
- const geoObjectType = geoObject.options.get("geoObjectType");
1895
- const mode = geoObject.options.get("mode");
1896
- const sizeTitle = geoObject.options.get("sizeTitle");
1897
- const sizeMinValue = geoObject.options.get("sizeMinValue");
1898
- const sizeMaxValue = geoObject.options.get("sizeMaxValue");
1899
- let colorTitle = geoObject.options.get("colorTitle");
1900
- const gradient = geoObject.options.get("gradient");
1901
- const isCustomPalette = geoObject.options.get("isCustomPalette");
1902
- const gradientData = geoObject.options.get("gradientData");
1903
- const colorDictionary = geoObject.options.get("colorDictionary");
1904
- let colorDictionaryKeys = [];
1905
- let customColorDictionaryKeys = [];
1906
- if (colorDictionary) {
1907
- colorDictionaryKeys = Object.keys(colorDictionary);
1908
- if (colorDictionaryKeys.length > 10) {
1909
- customColorDictionaryKeys = colorDictionaryKeys.slice(0, 10);
1910
- }
1911
- }
1912
- const colorMinValue = geoObject.options.get("colorMinValue");
1913
- const colorMaxValue = geoObject.options.get("colorMaxValue");
1914
- const colorMidValue = geoObject.options.get("colorMidValue");
1915
- let previewStyle;
1916
- if (mode === "gradient") {
1917
- previewStyle = {
1918
- background: `linear-gradient(90deg, ${gradientData.colors.map((stage) => `rgb(${Object.values(stage).join(",")})`).join(", ")})`
1919
- };
1920
- } else if (geoObjectType === GEO_OBJECT_TYPE.HEATMAP) {
1921
- previewStyle = {
1922
- background: `linear-gradient(90deg, ${Object.keys(gradient).sort().map((stage) => gradient[stage]).join(",")}`
1923
- };
1924
- colorTitle = colorTitle || i18n("chartkit-ymap-legend", "label-heatmap");
1925
- }
1926
- if (singleLayerMode && !colorTitle && !sizeTitle) {
1927
- return null;
1928
- }
1929
- return /* @__PURE__ */ jsxs("div", { className: b$2({ hidden: !layerVisibility }), children: [
1930
- !singleLayerMode && /* @__PURE__ */ jsxs("div", { className: b$2("header"), children: [
1931
- /* @__PURE__ */ jsx("span", { className: b$2("layer-title"), title: layerTitle, children: layerTitle }),
1932
- /* @__PURE__ */ jsx(
1933
- Button,
1934
- {
1935
- className: b$2("visibility-button"),
1936
- view: "flat",
1937
- onClick: this.onClickShowToggle,
1938
- children: /* @__PURE__ */ jsx(Icon, { data: EyeSlashIcon })
1939
- }
1940
- )
1941
- ] }),
1942
- colorTitle && /* @__PURE__ */ jsx("div", { className: b$2("color-title"), title: colorTitle, children: colorTitle }),
1943
- mode === "gradient" && /* @__PURE__ */ jsxs(React__default.Fragment, { children: [
1944
- /* @__PURE__ */ jsx("div", { className: b$2("color-preview"), style: previewStyle }),
1945
- /* @__PURE__ */ jsxs("div", { className: b$2("preview-legend"), children: [
1946
- /* @__PURE__ */ jsx("span", { children: wrappedFormatNumber(colorMinValue) }),
1947
- typeof colorMidValue === "number" && /* @__PURE__ */ jsx("span", { children: wrappedFormatNumber(colorMidValue) }),
1948
- /* @__PURE__ */ jsx("span", { children: wrappedFormatNumber(colorMaxValue) })
1949
- ] })
1950
- ] }),
1951
- geoObjectType === GEO_OBJECT_TYPE.HEATMAP && /* @__PURE__ */ jsxs(React__default.Fragment, { children: [
1952
- /* @__PURE__ */ jsx(
1953
- "div",
1954
- {
1955
- className: b$2("color-preview", { "default-heatmap": !isCustomPalette }),
1956
- style: previewStyle
1957
- }
1958
- ),
1959
- /* @__PURE__ */ jsxs("div", { className: b$2("preview-legend"), children: [
1960
- /* @__PURE__ */ jsx("span", { children: "min" }),
1961
- /* @__PURE__ */ jsx("span", { children: "max" })
1962
- ] })
1963
- ] }),
1964
- mode === "dictionary" && colorDictionary && /* @__PURE__ */ jsxs("div", { className: b$2("list"), children: [
1965
- customColorDictionaryKeys.length > 0 && /* @__PURE__ */ jsxs(React__default.Fragment, { children: [
1966
- (categoriesVisibility ? colorDictionaryKeys : customColorDictionaryKeys).map((key) => /* @__PURE__ */ jsxs("div", { className: b$2("row"), children: [
1967
- /* @__PURE__ */ jsx(
1968
- "span",
1969
- {
1970
- className: b$2("color"),
1971
- style: { background: colorDictionary[key] }
1972
- }
1973
- ),
1974
- /* @__PURE__ */ jsx("span", { className: b$2("value"), children: key })
1975
- ] }, key)),
1976
- /* @__PURE__ */ jsx(
1977
- "div",
1978
- {
1979
- className: b$2("row", { action: true }),
1980
- onClick: this.onClickCollapseToggle,
1981
- children: /* @__PURE__ */ jsx("span", { className: b$2("value"), children: categoriesVisibility ? i18n("chartkit-ymap-legend", "label-hide") : i18n("chartkit-ymap-legend", "label-more", {
1982
- count: colorDictionaryKeys.length - 10
1983
- }) })
1984
- },
1985
- "others"
1986
- )
1987
- ] }),
1988
- customColorDictionaryKeys.length === 0 && colorDictionaryKeys && colorDictionaryKeys.map((key) => /* @__PURE__ */ jsxs("div", { className: b$2("row"), children: [
1989
- /* @__PURE__ */ jsx(
1990
- "span",
1991
- {
1992
- className: b$2("color"),
1993
- style: { background: colorDictionary[key] }
1994
- }
1995
- ),
1996
- /* @__PURE__ */ jsx("span", { className: b$2("value"), children: key })
1997
- ] }, key))
1998
- ] }),
1999
- typeof sizeTitle === "string" && /* @__PURE__ */ jsxs(React__default.Fragment, { children: [
2000
- /* @__PURE__ */ jsx("div", { className: b$2("size-title"), title: sizeTitle, children: sizeTitle }),
2001
- /* @__PURE__ */ jsx("div", { className: b$2("size-preview"), children: /* @__PURE__ */ jsx(SizeIcon, {}) }),
2002
- /* @__PURE__ */ jsxs("div", { className: b$2("preview-legend"), children: [
2003
- /* @__PURE__ */ jsx("span", { children: wrappedFormatNumber(sizeMinValue) }),
2004
- /* @__PURE__ */ jsx("span", { children: wrappedFormatNumber(sizeMaxValue) })
2005
- ] })
2006
- ] })
2007
- ] }, geoObjectId);
2008
- }
2009
- }
2010
- const b$1 = block("chartkit-ymap-legend");
2011
- const Legend = ({ geoObjects, onSetVisibility }) => {
2012
- const filteredGeoObjects = geoObjects.filter((geoObject) => {
2013
- return [
2014
- GEO_OBJECT_TYPE.POLYGONMAP,
2015
- GEO_OBJECT_TYPE.GRIDMAP,
2016
- GEO_OBJECT_TYPE.GEOCOLLECTION,
2017
- GEO_OBJECT_TYPE.HEATMAP
2018
- ].includes(geoObject.options.get("geoObjectType")) && geoObject.options.get("showCustomLegend");
2019
- });
2020
- if (filteredGeoObjects.length === 0) {
2021
- return null;
2022
- }
2023
- const singleLayerMode = filteredGeoObjects.length === 1;
2024
- return /* @__PURE__ */ jsx("div", { className: b$1(), children: filteredGeoObjects.map((geoObject, index) => /* @__PURE__ */ jsx(
2025
- Layer,
2026
- {
2027
- geoObject,
2028
- onSetVisibility,
2029
- singleLayerMode
2030
- },
2031
- index
2032
- )) });
2033
- };
2034
- function setSelectedState(args) {
2035
- const { data, actionParams } = args;
2036
- data.forEach((item) => {
2037
- const polygons = get(item, "polygonmap.polygons.features", []);
2038
- if (polygons.length) {
2039
- const anySelected = polygons.some((polygon) => {
2040
- const ap = polygon?.properties?.custom?.actionParams ?? {};
2041
- return hasMatchedActionParams(ap, actionParams);
2042
- });
2043
- polygons.forEach((polygon) => {
2044
- let selected;
2045
- if (anySelected) {
2046
- const ap = polygon?.properties?.custom?.actionParams ?? {};
2047
- selected = hasMatchedActionParams(ap, actionParams);
2048
- }
2049
- if (selected === false) {
2050
- const originalFillColor = polygon.options.fillColor;
2051
- polygon.options.fillColorHover = originalFillColor;
2052
- polygon.options.fillColor = originalFillColor ? gray(lab(originalFillColor).l).formatRgb() : void 0;
2053
- polygon.options.fillOpacity = 0.5;
2054
- }
2055
- });
2056
- return;
2057
- }
2058
- const geoPoints = get(item, "collection.children", []);
2059
- if (geoPoints.length) {
2060
- const anySelected = geoPoints.some((point) => {
2061
- const ap = point?.feature?.properties?.custom?.actionParams ?? {};
2062
- return hasMatchedActionParams(ap, actionParams);
2063
- });
2064
- geoPoints.forEach((point) => {
2065
- let selected;
2066
- if (anySelected) {
2067
- const ap = point?.feature?.properties?.custom?.actionParams ?? {};
2068
- selected = hasMatchedActionParams(ap, actionParams);
2069
- }
2070
- point.options.active = selected;
2071
- });
2072
- return;
2073
- }
2074
- });
2075
- }
2076
- function getGeoObjectCollection(geoObjectCollection) {
2077
- const type = geoObjectCollection.options.get("geoObjectType");
2078
- switch (type) {
2079
- case GEO_OBJECT_TYPE.POLYGONMAP: {
2080
- return geoObjectCollection.objectManager.objects.getAll();
2081
- }
2082
- case GEO_OBJECT_TYPE.GEOCOLLECTION: {
2083
- return geoObjectCollection.toArray();
2084
- }
2085
- }
2086
- return [];
2087
- }
2088
- function getGeoObjectActionParams(geoObject) {
2089
- const geoType = get(geoObject, "geometry.type");
2090
- if (geoType === "Polygon") {
2091
- return geoObject.properties.custom?.actionParams ?? {};
2092
- }
2093
- return geoObject.properties.get("custom")?.actionParams ?? {};
2094
- }
2095
- function getNewActionParams(args) {
2096
- const { multiSelect, currentPoint, geoObjects, actionParams: prevActionParams } = args;
2097
- let newActionParams = prevActionParams;
2098
- const currentPointParams = getGeoObjectActionParams(currentPoint);
2099
- const hasSomePointSelected = geoObjects.some((item) => {
2100
- return getGeoObjectCollection(item).some((point) => {
2101
- return hasMatchedActionParams(getGeoObjectActionParams(point), prevActionParams);
2102
- });
2103
- });
2104
- if (hasSomePointSelected) {
2105
- if (hasMatchedActionParams(currentPointParams, prevActionParams)) {
2106
- if (multiSelect) {
2107
- newActionParams = subtractParameters(newActionParams, currentPointParams);
2108
- geoObjects.forEach((item) => {
2109
- return getGeoObjectCollection(item).forEach((point) => {
2110
- const pointActionParams = getGeoObjectActionParams(point);
2111
- if (hasMatchedActionParams(pointActionParams, newActionParams)) {
2112
- newActionParams = addParams(newActionParams, pointActionParams);
2113
- }
2114
- });
2115
- });
2116
- } else {
2117
- newActionParams = {};
2118
- }
2119
- } else {
2120
- if (!multiSelect) {
2121
- geoObjects.forEach((item) => {
2122
- return getGeoObjectCollection(item).forEach((point) => {
2123
- const pointActionParams = getGeoObjectActionParams(point);
2124
- if (hasMatchedActionParams(pointActionParams, newActionParams)) {
2125
- newActionParams = subtractParameters(
2126
- newActionParams,
2127
- pointActionParams
2128
- );
2129
- }
2130
- });
2131
- });
2132
- }
2133
- newActionParams = addParams(newActionParams, currentPointParams);
2134
- }
2135
- } else {
2136
- newActionParams = addParams(newActionParams, currentPointParams);
2137
- }
2138
- return newActionParams;
2139
- }
2140
- function shouldUseMultiselect(event) {
2141
- const sourceEvent = typeof event?.getSourceEvent === "function" ? event.getSourceEvent() : null;
2142
- if (sourceEvent) {
2143
- return shouldUseMultiselect(sourceEvent);
2144
- }
2145
- const originalEvent = event?.originalEvent?.domEvent ?? event?.originalEvent;
2146
- const key = isMacintosh() ? "metaKey" : "ctrlKey";
2147
- return Boolean(originalEvent?.get?.(key) ?? originalEvent?.[key]);
2148
- }
2149
- function applyEventHandlers(args) {
2150
- const { geoObjects, config, unresolvedParams = {}, onChange } = args;
2151
- const prevActionParams = pickActionParamsFromParams(unresolvedParams);
2152
- const handleClick = function(geoObject, event) {
2153
- const actions = config?.events?.click ?? [];
2154
- const clickActions = Array.isArray(actions) ? actions : [actions];
2155
- clickActions.forEach((action) => {
2156
- const handlers = Array.isArray(action.handler) ? action.handler : [action.handler];
2157
- handlers.forEach((handler) => {
2158
- switch (handler.type) {
2159
- case "setActionParams": {
2160
- const clickScope = get(action, "scope", "point");
2161
- if (clickScope !== "point") {
2162
- return;
2163
- }
2164
- const newActionParams = getNewActionParams({
2165
- geoObjects,
2166
- actionParams: prevActionParams,
2167
- currentPoint: geoObject,
2168
- multiSelect: shouldUseMultiselect(event)
2169
- });
2170
- if (isEqual(prevActionParams, newActionParams)) {
2171
- return;
2172
- }
2173
- const params = transformParamsToActionParams(newActionParams);
2174
- onChange?.(
2175
- {
2176
- type: "PARAMS_CHANGED",
2177
- data: { params }
2178
- },
2179
- { forceUpdate: true },
2180
- true,
2181
- true
2182
- );
2183
- }
2184
- }
2185
- });
2186
- });
2187
- };
2188
- geoObjects.forEach((collection) => {
2189
- const type = collection.options.get("geoObjectType");
2190
- switch (type) {
2191
- case GEO_OBJECT_TYPE.POLYGONMAP: {
2192
- collection.objectManager.events.add("click", function(event) {
2193
- const objId = event.get("objectId");
2194
- const object2 = collection.objectManager.objects.getById(objId);
2195
- handleClick(object2, event);
2196
- });
2197
- break;
2198
- }
2199
- case GEO_OBJECT_TYPE.GEOCOLLECTION: {
2200
- collection.events.add("click", function(event) {
2201
- handleClick(event.get("target"), event);
2202
- });
2203
- break;
2204
- }
2205
- }
2206
- });
2207
- }
2208
- const renderPossibleMarkupItems = (renderMarkupToString, renderMarkdownToString, data) => {
2209
- data.forEach((d) => {
2210
- if (typeof d?.key === "string" && d?.value) {
2211
- const markup = renderMarkupToString(d.value);
2212
- d.text = d.key ? `${escape(d.key)}: ${markup}` : markup;
2213
- }
2214
- if (d && d?.[WRAPPED_MARKDOWN_KEY] && renderMarkdownToString) {
2215
- d.text = renderMarkdownToString(d[WRAPPED_MARKDOWN_KEY]);
2216
- }
2217
- });
2218
- };
2219
- const PROVIDER_DATA_FIELDS = ["data", "config", "libraryConfig"];
2220
- const b = block("chartkit-ymap");
2221
- const hoveredPolygonOptions = { strokeWidth: 2, fillOpacity: 1 };
2222
- const CHART_SECTION_PERCENTAGE = 0.6;
2223
- const PANE_RESIZER_HEIGHT = 24;
2224
- const MOBILE_CHART_HEIGHT = 400;
2225
- const paneSplits = {
2226
- vertical: "vertical",
2227
- horizontal: "horizontal"
2228
- };
2229
- function getTileContainer(layer) {
2230
- for (const k in layer) {
2231
- if (Object.prototype.hasOwnProperty.call(layer, k)) {
2232
- if (layer[k] instanceof yandex_map_default._ymaps.layer.tileContainer.CanvasContainer || layer[k] instanceof yandex_map_default._ymaps.layer.tileContainer.DomContainer) {
2233
- return layer[k];
2234
- }
2235
- }
2236
- }
2237
- return null;
2238
- }
2239
- function waitForTilesLoad(layer) {
2240
- return new yandex_map_default._ymaps.vow.Promise((resolve) => {
2241
- const tileContainer = getTileContainer(layer);
2242
- let readyAll = true;
2243
- tileContainer.tiles.each((tile) => {
2244
- if (!tile.isReady()) {
2245
- readyAll = false;
2246
- }
2247
- });
2248
- if (readyAll) {
2249
- resolve();
2250
- } else {
2251
- tileContainer.events.once("ready", () => {
2252
- resolve();
2253
- });
2254
- }
2255
- });
2256
- }
2257
- function getCurrentPaneSplit() {
2258
- return window.innerWidth > window.innerHeight ? paneSplits.vertical : paneSplits.horizontal;
2259
- }
2260
- function getNodeHeight(node) {
2261
- return node?.getBoundingClientRect().height || 0;
2262
- }
2263
- function hasActionParamsChanged(currentParams, prevParams) {
2264
- const prevActionParams = pickActionParamsFromParams(currentParams);
2265
- const actionParams = pickActionParamsFromParams(prevParams);
2266
- return !isEqual(prevActionParams, actionParams);
2267
- }
2268
- class YandexMapComponent extends React__default.Component {
2269
- static propTypes = {
2270
- data: PropTypes.shape({
2271
- data: PropTypes.array,
2272
- config: PropTypes.object,
2273
- libraryConfig: PropTypes.object
2274
- }).isRequired,
2275
- lang: PropTypes.oneOf(["ru", "en"]),
2276
- splitTooltip: PropTypes.bool,
2277
- onLoad: PropTypes.func,
2278
- onChartLoad: PropTypes.func,
2279
- onRender: PropTypes.func,
2280
- onChange: PropTypes.func.isRequired,
2281
- onError: PropTypes.func.isRequired
2282
- };
2283
- constructor(props) {
2284
- super(props);
2285
- const paneSplit = getCurrentPaneSplit();
2286
- const paneMinSize = MOBILE_CHART_HEIGHT;
2287
- this.state = {
2288
- paneSplit,
2289
- paneMinSize,
2290
- geoObjects: [],
2291
- bounds: void 0,
2292
- paneSize: void 0,
2293
- paneMaxSize: void 0,
2294
- error: void 0
2295
- };
2296
- }
2297
- componentDidMount() {
2298
- this.init("onMount");
2299
- if (this.props.splitTooltip) {
2300
- window.addEventListener("resize", this.resizeHandler);
2301
- }
2302
- }
2303
- shouldComponentUpdate(nextProps, nextState) {
2304
- const splitTooltipModeWasSwitched = nextProps.splitTooltip !== this.props.splitTooltip;
2305
- const orientationWasChanged = nextState.paneSplit !== this.state.paneSplit;
2306
- const shouldUpdate = splitTooltipModeWasSwitched || orientationWasChanged || !isEqual(
2307
- pick(nextProps.data, PROVIDER_DATA_FIELDS),
2308
- pick(this.props.data, PROVIDER_DATA_FIELDS)
2309
- ) || nextState.geoObjects !== this.state.geoObjects || nextState.paneSize !== this.state.paneSize || hasActionParamsChanged(
2310
- nextProps.data.unresolvedParams,
2311
- this.props.data.unresolvedParams
2312
- );
2313
- return shouldUpdate;
2314
- }
2315
- componentDidUpdate(prevProps, prevState) {
2316
- const splitTooltipModeWasSwitched = prevProps.splitTooltip !== this.props.splitTooltip;
2317
- const orientationWasChanged = prevState.paneSplit !== this.state.paneSplit;
2318
- const needReInit = splitTooltipModeWasSwitched || orientationWasChanged || !isEqual(
2319
- pick(prevProps.data, PROVIDER_DATA_FIELDS),
2320
- pick(this.props.data, PROVIDER_DATA_FIELDS)
2321
- ) || hasActionParamsChanged(
2322
- this.props.data.unresolvedParams,
2323
- prevProps.data.unresolvedParams
2324
- );
2325
- if (needReInit) {
2326
- if (!prevProps.splitTooltip && this.props.splitTooltip) {
2327
- window.addEventListener("resize", this.resizeHandler);
2328
- } else if (prevProps.splitTooltip && !this.props.splitTooltip) {
2329
- window.removeEventListener("resize", this.resizeHandler);
2330
- }
2331
- this.init("onRender");
2332
- }
2333
- }
2334
- componentWillUnmount() {
2335
- this.destroy();
2336
- window.removeEventListener("resize", this.resizeHandler);
2337
- }
2338
- tooltipContainerRef = React__default.createRef();
2339
- mapContainerRef = React__default.createRef();
2340
- selectedObjectId = null;
2341
- geoObjectsStates = {};
2342
- node = void 0;
2343
- map = void 0;
2344
- // If there is a chart with a map and description on the dashboard,
2345
- // then after the description appears, sizechange is triggered, and then boundschange.
2346
- // In the described case, it is necessary that bounds are not stored in state.
2347
- sizeChanged = false;
2348
- resizeHandler = () => {
2349
- const currentPaneSplit = getCurrentPaneSplit();
2350
- if (this.state.paneSplit !== currentPaneSplit) {
2351
- this.setState({ paneSplit: currentPaneSplit });
2352
- }
2353
- };
2354
- /**
2355
- * helper for Wizard to set opacity for geo layers
2356
- *
2357
- * @param {string} geoObjectId
2358
- * @param {number} value
2359
- * @returns {void}
2360
- */
2361
- setOpacity = (geoObjectId, value) => {
2362
- const geoObject = this.state.geoObjects.find(
2363
- (item) => item.options.get("geoObjectId") === geoObjectId
2364
- );
2365
- const geoObjectType = geoObject.options.get("geoObjectType");
2366
- if (geoObjectType === GEO_OBJECT_TYPE.HEATMAP) {
2367
- geoObject.options.set("opacity", value);
2368
- } else if (geoObjectType === GEO_OBJECT_TYPE.POLYGONMAP || geoObjectType === GEO_OBJECT_TYPE.GRIDMAP) {
2369
- const objects = geoObject.objectManager.objects;
2370
- let opacityHover = value + 0.1;
2371
- opacityHover = opacityHover > 1 ? 1 : opacityHover;
2372
- objects.getAll().forEach(
2373
- ({ id }) => objects.setObjectOptions(id, {
2374
- fillOpacity: value,
2375
- fillOpacityHover: opacityHover
2376
- })
2377
- );
2378
- } else {
2379
- geoObject.options.set("opacity", value);
2380
- }
2381
- };
2382
- /**
2383
- * helper for Wizard to set visibility for geo layers
2384
- *
2385
- * @param {string} geoObjectId
2386
- * @param {boolean} value
2387
- * @returns {void}
2388
- */
2389
- setVisibility = (geoObjectId, value) => {
2390
- const geoObject = this.state.geoObjects.find(
2391
- (item) => item.options.get("geoObjectId") === geoObjectId
2392
- );
2393
- geoObject.options.set("visible", value);
2394
- this.geoObjectsStates[geoObjectId] = { options: { visible: value } };
2395
- this.props.onChange(
2396
- { type: "YMAP_GEOOBJECT_VISIBILITY_CHANGED", data: { geoObjectId, value } },
2397
- {},
2398
- true
2399
- );
2400
- };
2401
- destroy() {
2402
- if (this.map) {
2403
- this.map.destroy();
2404
- }
2405
- }
2406
- applyEvents() {
2407
- const { data: widgetData, onChange } = this.props;
2408
- applyEventHandlers({
2409
- geoObjects: this.state.geoObjects,
2410
- config: widgetData.config,
2411
- onChange,
2412
- unresolvedParams: widgetData.unresolvedParams
2413
- });
2414
- }
2415
- async init(callBackType) {
2416
- try {
2417
- const widgetData = this.props.data;
2418
- const { data, libraryConfig, config, unresolvedParams } = widgetData;
2419
- let renderMarkdownToString;
2420
- const renderMarkupToString = await getRenderMarkupToStringFn();
2421
- if (config.useMarkdown) {
2422
- renderMarkdownToString = await getRenderYfmFn();
2423
- }
2424
- const actionParams = pickActionParamsFromParams(unresolvedParams);
2425
- setSelectedState({ data, actionParams });
2426
- const { map, geoObjects, mapPerformanceMetrics } = await yandex_map_default.draw({
2427
- node: this.node,
2428
- data: data.map((geoObject) => {
2429
- const geoObjectState = geoObject.options && this.geoObjectsStates[geoObject.options.geoObjectId];
2430
- const children = get(geoObject, "collection.children") || get(geoObject, "clusterer") || [];
2431
- const polygons = get(geoObject, "polygonmap.polygons.features", []);
2432
- if (children.length) {
2433
- children.forEach((child) => {
2434
- const childData = get(child, "feature.properties.data", []);
2435
- renderPossibleMarkupItems(
2436
- renderMarkupToString,
2437
- renderMarkdownToString,
2438
- childData
2439
- );
2440
- });
2441
- } else if (polygons.length) {
2442
- polygons.forEach((polygon) => {
2443
- const polygonData = get(polygon, "properties.data", []);
2444
- renderPossibleMarkupItems(
2445
- renderMarkupToString,
2446
- renderMarkdownToString,
2447
- polygonData
2448
- );
2449
- });
2450
- }
2451
- return geoObjectState ? merge({}, geoObject, geoObjectState) : geoObject;
2452
- }),
2453
- lang: this.props.lang,
2454
- config: Object.assign(
2455
- { ymap: merge(libraryConfig, { state: { bounds: this.state.bounds } }) },
2456
- config
2457
- ),
2458
- events: {
2459
- boundschange: (event) => {
2460
- if (!this.sizeChanged) {
2461
- this.setState({
2462
- bounds: event.get("newBounds")
2463
- });
2464
- }
2465
- this.sizeChanged = false;
2466
- },
2467
- sizechange: () => {
2468
- this.sizeChanged = true;
2469
- }
2470
- }
2471
- });
2472
- yandex_map_default._ymaps.ready(() => {
2473
- class CustomControlClass extends yandex_map_default._ymaps.collection.Item {
2474
- constructor(component) {
2475
- super();
2476
- this._$content = null;
2477
- this._$component = component;
2478
- }
2479
- onAddToMap() {
2480
- this._lastCenter = null;
2481
- this.getParent().getChildElement(this).then(this._onGetChildElement, this);
2482
- }
2483
- onRemoveFromMap() {
2484
- if (this._$content) {
2485
- this._$content.remove();
2486
- }
2487
- }
2488
- _onGetChildElement(parentDomContainer) {
2489
- this._$content = document.createElement("div");
2490
- ReactDOM.render(this._$component, this._$content);
2491
- parentDomContainer.appendChild(this._$content);
2492
- }
2493
- }
2494
- const customControl = new CustomControlClass(
2495
- /* @__PURE__ */ React__default.createElement(
2496
- Legend,
2497
- {
2498
- map: this.map,
2499
- geoObjects: this.state.geoObjects,
2500
- onSetVisibility: this.setVisibility
2501
- }
2502
- )
2503
- );
2504
- this.map.controls.add(customControl, {
2505
- float: "none"
2506
- });
2507
- this.applyEvents();
2508
- });
2509
- this.destroy();
2510
- this.map = map;
2511
- const allLayers = [];
2512
- const tilesLoadingMarkId = getRandomCKId();
2513
- Performance.mark(tilesLoadingMarkId);
2514
- this.map.layers.each((layerOrCollection) => {
2515
- if (layerOrCollection instanceof yandex_map_default._ymaps.LayerCollection) {
2516
- layerOrCollection.each((createdLayer) => {
2517
- allLayers.push(createdLayer);
2518
- });
2519
- } else {
2520
- allLayers.push(layerOrCollection);
2521
- }
2522
- });
2523
- const [firstLayer] = allLayers;
2524
- if (firstLayer) {
2525
- firstLayer._element?.classList.add("chartkit-map-ground-pane");
2526
- }
2527
- const { geoObjectsInstantiationDuration, yandexMapAPIWaiting } = mapPerformanceMetrics;
2528
- yandex_map_default._ymaps.vow.all(allLayers.map((layer) => waitForTilesLoad(layer))).then(() => {
2529
- const tilesLoadingDuration = Performance.getDuration(tilesLoadingMarkId);
2530
- if (callBackType === "onMount") {
2531
- this.props.onChartLoad?.({
2532
- widget: {
2533
- setOpacity: this.setOpacity,
2534
- setVisibility: this.setVisibility
2535
- }
2536
- });
2537
- }
2538
- if (callBackType === "onRender") {
2539
- this.props.onRender?.({
2540
- widgetRendering: geoObjectsInstantiationDuration + tilesLoadingDuration
2541
- });
2542
- }
2543
- this.props.onLoad?.({
2544
- widgetRendering: geoObjectsInstantiationDuration + tilesLoadingDuration,
2545
- yandexMapAPIWaiting,
2546
- widget: {
2547
- setOpacity: this.setOpacity,
2548
- setVisibility: this.setVisibility
2549
- }
2550
- });
2551
- });
2552
- if (this.props.splitTooltip) {
2553
- this.prepareForSplitTooltipMode();
2554
- }
2555
- this.setState({
2556
- geoObjects: geoObjects.slice().reverse()
2557
- });
2558
- } catch (error) {
2559
- if (this.props.onError) {
2560
- this.props.onError({ error });
2561
- }
2562
- }
2563
- }
2564
- getPaneSizeOptions = () => {
2565
- let paneSize;
2566
- let paneMinSize;
2567
- let paneMaxSize;
2568
- const mapContainerHeight = getNodeHeight(this.mapContainerRef.current);
2569
- const tooltipHeight = getNodeHeight(this.tooltipContainerRef.current);
2570
- if (this.state.paneSplit === paneSplits.vertical) {
2571
- paneSize = window.innerWidth * CHART_SECTION_PERCENTAGE;
2572
- } else {
2573
- paneSize = mapContainerHeight - tooltipHeight - PANE_RESIZER_HEIGHT;
2574
- paneMinSize = mapContainerHeight - tooltipHeight - PANE_RESIZER_HEIGHT;
2575
- paneMaxSize = mapContainerHeight - PANE_RESIZER_HEIGHT;
2576
- }
2577
- return { paneSize, paneMinSize, paneMaxSize };
2578
- };
2579
- // in split-tooltip mode, the tooltip must be shown in a separate split-pane "sash".
2580
- // Can't find the solutions in map-api about how to render a tooltip outside the map container, so we use the Template capabilities from the Maps API
2581
- // (https://tech.yandex.ru/maps/jsapi/doc/2.1/ref/reference/Template-docpage /) and append the resulting markup in
2582
- // the necessary node.
2583
- // When activating the split tooltip mode, you must:
2584
- // - show something in the tooltip (wait for the user's first interaction with map objects and only after
2585
- // showing this is not a good solution, since showing the tooltip will change the size of the map container
2586
- // and its redrawing). Therefore, we will take the first element from the first collection and show the tooltip for it, and
2587
- // set the element (if possible) active state.
2588
- // - subscribe for events on map objects that will update the tooltip and manage the activity states of objects
2589
- prepareForSplitTooltipMode = () => {
2590
- this.map.geoObjects.each((collection, index) => {
2591
- if (!index) {
2592
- this.setState(this.getPaneSizeOptions(), () => {
2593
- if (collection.objects) {
2594
- const firstObject = collection.objects.getIterator().getNext();
2595
- this.selectedObjectId = firstObject.id;
2596
- collection.objects.setObjectOptions(firstObject.id, hoveredPolygonOptions);
2597
- }
2598
- });
2599
- }
2600
- this.bindEventsForSplitTooltip(collection);
2601
- });
2602
- };
2603
- bindEventsForSplitTooltip = (collection) => {
2604
- if (collection.objects) {
2605
- collection.objects.events.add("mouseenter", (event) => {
2606
- event.stopPropagation();
2607
- event.preventDefault();
2608
- });
2609
- collection.objects.events.add("mouseleave", (event) => {
2610
- event.stopPropagation();
2611
- event.preventDefault();
2612
- });
2613
- collection.objects.events.add("click", (event) => {
2614
- const objectId = event.get("objectId");
2615
- if (isNumber(this.selectedObjectId) && this.selectedObjectId !== objectId) {
2616
- const prevSelectedObject = collection.objects.getById(this.selectedObjectId);
2617
- const options = {
2618
- strokeWidth: prevSelectedObject.options.strokeWidthDefault,
2619
- fillOpacity: prevSelectedObject.options.fillOpacityDefault
2620
- };
2621
- collection.objects.setObjectOptions(this.selectedObjectId, options);
2622
- }
2623
- this.selectedObjectId = objectId;
2624
- collection.objects.setObjectOptions(objectId, hoveredPolygonOptions);
2625
- const selectedObject = collection.objects.getById(objectId);
2626
- if (this.tooltipContainerRef && this.tooltipContainerRef.current) {
2627
- const tooltipTemplate = new yandex_map_default._ymaps.Template(
2628
- TOOLTIP_TWIG_TEMPLATE
2629
- );
2630
- const { properties } = selectedObject;
2631
- const templateData = new yandex_map_default._ymaps.data.Manager({ properties });
2632
- const tooltipMarkup = tooltipTemplate.build(templateData).text;
2633
- this.tooltipContainerRef.current.innerHTML = tooltipMarkup;
2634
- this.setState(this.getPaneSizeOptions());
2635
- }
2636
- });
2637
- } else {
2638
- collection.events.add("click", (event) => {
2639
- const target = event.get("target");
2640
- if (this.tooltipContainerRef && this.tooltipContainerRef.current) {
2641
- const tooltipTemplate = new yandex_map_default._ymaps.Template(
2642
- TOOLTIP_TWIG_TEMPLATE
2643
- );
2644
- const properties = target.properties.getAll();
2645
- const templateData = new yandex_map_default._ymaps.data.Manager({ properties });
2646
- const tooltipMarkup = tooltipTemplate.build(templateData).text;
2647
- this.tooltipContainerRef.current.innerHTML = tooltipMarkup;
2648
- this.setState(this.getPaneSizeOptions());
2649
- }
2650
- });
2651
- }
2652
- };
2653
- renderMapWithSplitPane = () => {
2654
- const { paneSplit, paneSize, paneMinSize, paneMaxSize } = this.state;
2655
- return /* @__PURE__ */ React__default.createElement(
2656
- StyledSplitPane,
2657
- {
2658
- split: paneSplit,
2659
- size: paneSize,
2660
- minSize: paneMinSize,
2661
- maxSize: paneMaxSize,
2662
- allowResize: paneSplit === paneSplits.horizontal,
2663
- resizerStyle: { ...!this.node && { display: "none" } },
2664
- paneOneRender: () => /* @__PURE__ */ React__default.createElement(
2665
- "div",
2666
- {
2667
- className: b({ "with-split-tooltip": Boolean(this.props.splitTooltip) }),
2668
- ref: (node) => {
2669
- this.node = node;
2670
- }
2671
- }
2672
- ),
2673
- paneTwoRender: () => /* @__PURE__ */ React__default.createElement("div", { className: b("tooltip-container"), ref: this.tooltipContainerRef })
2674
- }
2675
- );
2676
- };
2677
- render() {
2678
- return /* @__PURE__ */ React__default.createElement("div", { className: b("wrapper"), ref: this.mapContainerRef }, this.props.splitTooltip ? this.renderMapWithSplitPane() : /* @__PURE__ */ React__default.createElement(
2679
- "div",
2680
- {
2681
- className: b(),
2682
- ref: (node) => {
2683
- this.node = node;
2684
- }
2685
- }
2686
- ));
2687
- }
2688
- }
2689
- const YandexMapWidget = React__default.forwardRef(
2690
- // _ref needs to avoid this React warning:
2691
- // "forwardRef render functions accept exactly two parameters: props and ref"
2692
- function YandexMapWidgetInner(props, _ref) {
2693
- return /* @__PURE__ */ jsx(YandexMapComponent, { ...props });
2694
- }
2695
- );
2696
- export {
2697
- YandexMapWidget as default
2698
- };