@retailcrm/datalens-ui 0.0.1 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/i18n/constants.js +10 -0
- package/i18n/index.js +23 -0
- package/i18n/utils.js +29 -0
- package/index.css +18533 -16857
- package/package.json +1 -1
- package/public/i18n/data.json +3285 -0
- package/public/i18n/en.b7a02f3f.js +3359 -0
- package/public/i18n/manifest.json +4 -0
- package/public/i18n/ru.baa3b15e.js +3359 -0
- package/shared/components/auth/constants/cookie.js +6 -0
- package/shared/components/auth/constants/role.js +11 -0
- package/shared/components/auth/constants/token.js +4 -0
- package/shared/components/auth/constants/url.js +4 -0
- package/shared/constants/api-v2.js +8 -0
- package/shared/constants/chartkit-handlers.js +18 -0
- package/shared/constants/charts.js +10 -0
- package/shared/constants/collections.js +8 -0
- package/shared/constants/colors/common/classic-20.js +30 -0
- package/shared/constants/colors/common/datalens.js +30 -0
- package/shared/constants/colors/common/default-20.js +30 -0
- package/shared/constants/colors/common/emerald-20.js +30 -0
- package/shared/constants/colors/common/golden-20.js +30 -0
- package/shared/constants/colors/common/neutral-20.js +30 -0
- package/shared/constants/colors/common/oceanic-20.js +30 -0
- package/shared/constants/colors/common/traffic-light-9.js +19 -0
- package/shared/constants/colors/index.js +85 -0
- package/shared/constants/colors/types.js +41 -0
- package/shared/constants/common.js +118 -0
- package/shared/constants/connections.js +108 -0
- package/shared/constants/cookie.js +6 -0
- package/shared/constants/dash.js +63 -0
- package/shared/constants/datasets.js +8 -0
- package/shared/constants/datepicker/relative-datepicker.js +14 -0
- package/shared/constants/entry.d.ts +65 -0
- package/shared/constants/entry.js +100 -0
- package/shared/constants/error-codes.js +66 -0
- package/shared/constants/exports.js +10 -0
- package/shared/constants/gradients/default.js +12 -0
- package/shared/constants/gradients/index.js +73 -0
- package/shared/constants/gradients/three-point/blue-gray-red.js +7 -0
- package/shared/constants/gradients/three-point/blue-yellow-red.js +7 -0
- package/shared/constants/gradients/three-point/orange-blue-green.js +7 -0
- package/shared/constants/gradients/three-point/orange-gray-blue.js +7 -0
- package/shared/constants/gradients/three-point/orange-violet-blue.js +7 -0
- package/shared/constants/gradients/three-point/pink-gray-green.js +7 -0
- package/shared/constants/gradients/three-point/red-orange-green.js +7 -0
- package/shared/constants/gradients/three-point/traffic-light.js +7 -0
- package/shared/constants/gradients/three-point/violet-blue-green.js +7 -0
- package/shared/constants/gradients/three-point/yellow-green-blue.js +7 -0
- package/shared/constants/gradients/three-point-gradients.js +38 -0
- package/shared/constants/gradients/two-point/blue.js +7 -0
- package/shared/constants/gradients/two-point/cyan.js +7 -0
- package/shared/constants/gradients/two-point/golden.js +7 -0
- package/shared/constants/gradients/two-point/gray.js +7 -0
- package/shared/constants/gradients/two-point/green-blue.js +7 -0
- package/shared/constants/gradients/two-point/green.js +7 -0
- package/shared/constants/gradients/two-point/oceanic.js +7 -0
- package/shared/constants/gradients/two-point/orange-yellow.js +7 -0
- package/shared/constants/gradients/two-point/red-blue.js +7 -0
- package/shared/constants/gradients/two-point/red.js +7 -0
- package/shared/constants/gradients/two-point/violet-orange.js +7 -0
- package/shared/constants/gradients/two-point/violet.js +7 -0
- package/shared/constants/gradients/two-point/yellow.js +7 -0
- package/shared/constants/gradients/two-point-gradients.js +47 -0
- package/shared/constants/header.js +78 -0
- package/shared/constants/index.js +230 -0
- package/shared/constants/markdown.js +4 -0
- package/shared/constants/markup.js +4 -0
- package/shared/constants/navigation.js +24 -0
- package/shared/constants/old-schema.js +8 -0
- package/shared/constants/placeholder.js +32 -0
- package/shared/constants/print.js +6 -0
- package/shared/constants/qa/action-panel.js +20 -0
- package/shared/constants/qa/chart.js +66 -0
- package/shared/constants/qa/collections.js +17 -0
- package/shared/constants/qa/components.js +240 -0
- package/shared/constants/qa/connections.js +40 -0
- package/shared/constants/qa/control.js +83 -0
- package/shared/constants/qa/dash.js +129 -0
- package/shared/constants/qa/datasets.js +76 -0
- package/shared/constants/qa/dl-navigation.js +13 -0
- package/shared/constants/qa/field-editor.js +7 -0
- package/shared/constants/qa/index.js +134 -0
- package/shared/constants/qa/ql.js +41 -0
- package/shared/constants/qa/settings.js +17 -0
- package/shared/constants/qa/sign-in.js +8 -0
- package/shared/constants/qa/uikit.js +10 -0
- package/shared/constants/qa/visualization.js +22 -0
- package/shared/constants/qa/wizard.js +224 -0
- package/shared/constants/qa/workbooks.js +24 -0
- package/shared/constants/ql.js +34 -0
- package/shared/constants/shapes/index.js +11 -0
- package/shared/constants/shapes/lines/index.js +73 -0
- package/shared/constants/shapes/points/index.js +13 -0
- package/shared/constants/themes.js +33 -0
- package/shared/constants/timeout.js +20 -0
- package/shared/constants/ui-sandbox.js +4 -0
- package/shared/constants/url.js +12 -0
- package/shared/constants/user.js +7 -0
- package/shared/constants/visualization.js +70 -0
- package/shared/constants/widgets.js +103 -0
- package/shared/constants/wizard.js +84 -0
- package/shared/constants/workbooks.js +8 -0
- package/shared/constants/yfm.js +31 -0
- package/shared/index.js +8 -0
- package/shared/modules/bi-api/index.js +1 -0
- package/shared/modules/bi-api/mappers/index.js +9 -0
- package/shared/modules/bi-api/mappers/v2.js +128 -0
- package/shared/modules/charts-shared.js +268 -0
- package/shared/modules/colors/common-helpers.js +33 -0
- package/shared/modules/colors/distincts-helpers.js +13 -0
- package/shared/modules/config/ql/index.js +4 -0
- package/shared/modules/config/ql/mapQlConfigToLatestVersion.js +36 -0
- package/shared/modules/config/ql/v1/mapUndefinedConfigToV1.js +37 -0
- package/shared/modules/config/ql/v2/mapV1ConfigToV2.js +23 -0
- package/shared/modules/config/ql/v3/mapV2ConfigToV3.js +14 -0
- package/shared/modules/config/ql/v4/mapV3ConfigToV4.js +54 -0
- package/shared/modules/config/ql/v5/mapV4ConfigToV5.js +44 -0
- package/shared/modules/config/ql/v6/mapV5ConfigToV6.js +27 -0
- package/shared/modules/config/ql/v7/mapV6ConfigToV7.js +14 -0
- package/shared/modules/config/utils.js +34 -0
- package/shared/modules/config/wizard/index.js +4 -0
- package/shared/modules/config/wizard/mapChartsConfigToLatestVersion.js +69 -0
- package/shared/modules/config/wizard/v1/mapV1ConfigToV2.js +47 -0
- package/shared/modules/config/wizard/v10/mapV10ConfigToV11.js +24 -0
- package/shared/modules/config/wizard/v11/mapV11ConfigToV12.js +24 -0
- package/shared/modules/config/wizard/v12/mapV12ConfigToV13.js +46 -0
- package/shared/modules/config/wizard/v13/mapV13ConfigToV14.js +28 -0
- package/shared/modules/config/wizard/v14/mapV14ConfigToV15.js +17 -0
- package/shared/modules/config/wizard/v2/mapV2ConfigToV3.js +42 -0
- package/shared/modules/config/wizard/v3/mapV3ConfigToV4.js +110 -0
- package/shared/modules/config/wizard/v4/mapV4ConfigToV5.js +91 -0
- package/shared/modules/config/wizard/v5/mapV5ConfigToV6.js +21 -0
- package/shared/modules/config/wizard/v6/mapV6ConfigToV7.js +120 -0
- package/shared/modules/config/wizard/v7/mapV7ConfigToV8.js +55 -0
- package/shared/modules/config/wizard/v8/mapV8ConfigToV9.js +22 -0
- package/shared/modules/config/wizard/v9/mapV9ConfigToV10.js +39 -0
- package/shared/modules/control/typed-query-helpers.js +11 -0
- package/shared/modules/dash-scheme-converter.js +319 -0
- package/shared/modules/entry.js +22 -0
- package/shared/modules/fields.js +47 -0
- package/shared/modules/format-units/formatUnit.js +145 -0
- package/shared/modules/format-units/i18n/en.json.js +6 -0
- package/shared/modules/format-units/i18n/i18n.js +12 -0
- package/shared/modules/format-units/i18n/ru.json.js +6 -0
- package/shared/modules/format-units/index.js +7 -0
- package/shared/modules/helpers.d.ts +38 -0
- package/shared/modules/helpers.js +195 -0
- package/shared/modules/index.js +103 -0
- package/shared/modules/language.js +6 -0
- package/shared/modules/markdown/emoji-defs.js +267 -0
- package/shared/modules/markdown/markdown.js +100 -0
- package/shared/modules/markup.js +17 -0
- package/shared/modules/predicates.d.ts +2 -0
- package/shared/modules/predicates.js +6 -0
- package/shared/modules/qa-helpers.js +6 -0
- package/shared/modules/ql-helpers.js +214 -0
- package/shared/modules/sleep.js +4 -0
- package/shared/modules/slugify.js +24 -0
- package/shared/modules/tenant.js +15 -0
- package/shared/modules/transliterate.js +45 -0
- package/shared/modules/typed-query-api/helpers/parameters.js +7 -0
- package/shared/modules/typed-query-api/index.js +5 -0
- package/shared/modules/typed-query-api/mappers/parameters.js +18 -0
- package/shared/modules/url.js +7 -0
- package/shared/modules/user.js +14 -0
- package/shared/modules/visualization/placeholder.js +13 -0
- package/shared/modules/wizard/axis-mode.js +86 -0
- package/shared/modules/wizard/axis-settings.js +16 -0
- package/shared/modules/wizard/config.js +11 -0
- package/shared/modules/wizard/index.js +9 -0
- package/shared/modules/wizard-helpers.js +179 -0
- package/shared/old-schema/charts.d.ts +131 -0
- package/shared/old-schema/charts.js +101 -0
- package/shared/old-schema/index.d.ts +113 -0
- package/shared/old-schema/index.js +10 -0
- package/shared/schema/api.d.ts +8 -0
- package/shared/schema/auth-schema/index.d.ts +19 -0
- package/shared/schema/index.d.ts +3359 -0
- package/shared/schema/mix/actions/dash/create-dashboard-v1.d.ts +723 -0
- package/shared/schema/mix/actions/dash/get-dashboard-v1.d.ts +515 -0
- package/shared/schema/mix/actions/dash/index.d.ts +1959 -0
- package/shared/schema/mix/actions/dash/update-dashboard-v1.d.ts +722 -0
- package/shared/schema/mix/actions/index.d.ts +2067 -0
- package/shared/schema/mix/helpers/editor/index.js +41 -0
- package/shared/schema/mix/helpers/editor/validation.js +52 -0
- package/shared/schema/mix/helpers/entries.js +194 -0
- package/shared/schema/mix/helpers/index.js +14 -0
- package/shared/schema/mix/helpers/validation.js +10 -0
- package/shared/schema/mix/index.d.ts +2071 -0
- package/shared/schema/us/actions/entries/get-entries.d.ts +100 -0
- package/shared/schema/us/actions/entries/index.d.ts +298 -0
- package/shared/schema/us/actions/entries/list-directory.d.ts +101 -0
- package/shared/schema/us/actions/index.d.ts +1064 -0
- package/shared/schema/us/actions/workbooks/get-workbooks-list.d.ts +75 -0
- package/shared/schema/us/actions/workbooks/index.d.ts +384 -0
- package/shared/schema/us/index.d.ts +1069 -0
- package/shared/schema/us/schemas/entries/get-entries.d.ts +172 -0
- package/shared/schema/us/schemas/entries/list-directory.d.ts +171 -0
- package/shared/schema/utils.js +37 -0
- package/shared/types/bi-api/index.js +1 -0
- package/shared/types/bi-api/v2.js +10 -0
- package/shared/types/chartkit/dl-chartkit.js +1 -0
- package/shared/types/chartkit/table.js +1 -0
- package/shared/types/charts.js +10 -0
- package/shared/types/color-palettes.js +1 -0
- package/shared/types/common-update.js +1 -0
- package/shared/types/common.js +23 -0
- package/shared/types/config/ql/index.js +1 -0
- package/shared/types/config/wizard/index.js +14 -0
- package/shared/types/config/wizard/v10.js +1 -0
- package/shared/types/config/wizard/v11.js +1 -0
- package/shared/types/config/wizard/v12.js +1 -0
- package/shared/types/config/wizard/v13.js +1 -0
- package/shared/types/config/wizard/v14.js +1 -0
- package/shared/types/config/wizard/v15.js +1 -0
- package/shared/types/config/wizard/v2.js +1 -0
- package/shared/types/config/wizard/v3.js +1 -0
- package/shared/types/config/wizard/v4.js +1 -0
- package/shared/types/config/wizard/v5.js +1 -0
- package/shared/types/config/wizard/v6.js +1 -0
- package/shared/types/config/wizard/v7.js +1 -0
- package/shared/types/config/wizard/v8.js +1 -0
- package/shared/types/config/wizard/v9.js +1 -0
- package/shared/types/configs/index.js +1 -0
- package/shared/types/connections.js +1 -0
- package/shared/types/dash.js +65 -0
- package/shared/types/dataset.js +102 -0
- package/shared/types/entry.js +1 -0
- package/shared/types/feature.js +83 -0
- package/shared/types/formatting.js +17 -0
- package/shared/types/index.js +66 -0
- package/shared/types/menu.js +31 -0
- package/shared/types/metrica.js +1 -0
- package/shared/types/notification.js +1 -0
- package/shared/types/permissions.js +1 -0
- package/shared/types/ql/common.js +1 -0
- package/shared/types/ql/versions.js +13 -0
- package/shared/types/typed-query-api/index.js +1 -0
- package/shared/types/typed-query-api/v1.js +1 -0
- package/shared/types/utility-types.js +8 -0
- package/shared/types/widget.js +56 -0
- package/shared/types/wizard/background-settings.js +1 -0
- package/shared/types/wizard/bars.js +1 -0
- package/shared/types/wizard/column.js +1 -0
- package/shared/types/wizard/export.js +1 -0
- package/shared/types/wizard/field.js +56 -0
- package/shared/types/wizard/index.js +59 -0
- package/shared/types/wizard/misc.js +45 -0
- package/shared/types/wizard/placeholder.js +1 -0
- package/shared/types/wizard/sub-totals.js +1 -0
- package/shared/types/wizard/versions.js +21 -0
- package/shared/utils/dash.js +27 -0
- package/shared/utils/dataset.js +30 -0
- package/shared/utils/date-time.js +7 -0
- package/shared/utils/entry.js +12 -0
- package/shared/utils/feature.js +15 -0
- package/shared/utils/functions-registry.js +32 -0
- package/shared/utils/index.js +31 -0
- package/shared/utils/makeFunctionTemplate.js +8 -0
- package/shared/utils/manualError.js +22 -0
- package/shared/utils/markdown.js +8 -0
- package/shared/utils/markup.js +8 -0
- package/shared/utils/palettes.js +17 -0
- package/shared/utils/ui-sandbox.js +17 -0
- package/shared/utils/visualization-check.js +57 -0
- package/shared/utils/wizard.js +30 -0
- package/ui/assets/icons/alert.svg.js +5 -0
- package/ui/assets/icons/arr-reverse.svg.js +5 -0
- package/ui/assets/icons/arr-right.svg.js +5 -0
- package/ui/assets/icons/arrow-left.svg.js +5 -0
- package/ui/assets/icons/arrow-right.svg.js +5 -0
- package/ui/assets/icons/avatar-middle.png.js +4 -0
- package/ui/assets/icons/broken.svg.js +5 -0
- package/ui/assets/icons/charts-visualisations/vis-flat-table.svg.js +5 -0
- package/ui/assets/icons/charts-visualisations/vis-geolayers.svg.js +5 -0
- package/ui/assets/icons/charts-visualisations/vis-metric.svg.js +5 -0
- package/ui/assets/icons/check-folder.svg.js +5 -0
- package/ui/assets/icons/collections/collection-colored-big-dark.svg.js +5 -0
- package/ui/assets/icons/collections/collection-colored-big.svg.js +5 -0
- package/ui/assets/icons/collections/collection-colored-dark.svg.js +5 -0
- package/ui/assets/icons/collections/collection-colored.svg.js +5 -0
- package/ui/assets/icons/collections/collection.svg.js +5 -0
- package/ui/assets/icons/collections/grid.svg.js +5 -0
- package/ui/assets/icons/collections/workbook-colored.svg.js +5 -0
- package/ui/assets/icons/collections/workbook.svg.js +5 -0
- package/ui/assets/icons/connections/choveryt.svg.js +5 -0
- package/ui/assets/icons/connections/undefined.svg.js +5 -0
- package/ui/assets/icons/copy-xmark.svg.js +5 -0
- package/ui/assets/icons/cross.svg.js +5 -0
- package/ui/assets/icons/dl-auth-logo-dark.svg.js +5 -0
- package/ui/assets/icons/dl-auth-logo-light.svg.js +5 -0
- package/ui/assets/icons/error.svg.js +5 -0
- package/ui/assets/icons/filter-tooltip.svg.js +5 -0
- package/ui/assets/icons/folder.svg.js +5 -0
- package/ui/assets/icons/funnel-clear.svg.js +5 -0
- package/ui/assets/icons/gradients/blue-gray-red.svg.js +5 -0
- package/ui/assets/icons/gradients/blue-yellow-red.svg.js +5 -0
- package/ui/assets/icons/gradients/blue.svg.js +5 -0
- package/ui/assets/icons/gradients/cyan.svg.js +5 -0
- package/ui/assets/icons/gradients/golden.svg.js +5 -0
- package/ui/assets/icons/gradients/gray.svg.js +5 -0
- package/ui/assets/icons/gradients/green-blue.svg.js +5 -0
- package/ui/assets/icons/gradients/green.svg.js +5 -0
- package/ui/assets/icons/gradients/oceanic.svg.js +5 -0
- package/ui/assets/icons/gradients/orange-blue-green.svg.js +5 -0
- package/ui/assets/icons/gradients/orange-gray-blue.svg.js +5 -0
- package/ui/assets/icons/gradients/orange-violet-blue.svg.js +5 -0
- package/ui/assets/icons/gradients/orange-yellow.svg.js +5 -0
- package/ui/assets/icons/gradients/pink-gray-green.svg.js +5 -0
- package/ui/assets/icons/gradients/red-blue.svg.js +5 -0
- package/ui/assets/icons/gradients/red-orange-green.svg.js +5 -0
- package/ui/assets/icons/gradients/red.svg.js +5 -0
- package/ui/assets/icons/gradients/traffic-light.svg.js +5 -0
- package/ui/assets/icons/gradients/violet-blue-green.svg.js +5 -0
- package/ui/assets/icons/gradients/violet-orange.svg.js +5 -0
- package/ui/assets/icons/gradients/violet.svg.js +5 -0
- package/ui/assets/icons/gradients/yellow-green-blue.svg.js +5 -0
- package/ui/assets/icons/gradients/yellow.svg.js +5 -0
- package/ui/assets/icons/id-square.svg.js +5 -0
- package/ui/assets/icons/info.svg.js +5 -0
- package/ui/assets/icons/lock.svg.js +5 -0
- package/ui/assets/icons/monitoring.svg.js +5 -0
- package/ui/assets/icons/mono-collection.svg.js +5 -0
- package/ui/assets/icons/okay.svg.js +5 -0
- package/ui/assets/icons/os-logo.svg.js +5 -0
- package/ui/assets/icons/palettes/datalens-classic20.svg.js +5 -0
- package/ui/assets/icons/palettes/datalens-default20.svg.js +5 -0
- package/ui/assets/icons/palettes/datalens-neo20.svg.js +5 -0
- package/ui/assets/icons/palettes/emerald-20.svg.js +5 -0
- package/ui/assets/icons/palettes/golden-20.svg.js +5 -0
- package/ui/assets/icons/palettes/neutral-20.svg.js +5 -0
- package/ui/assets/icons/palettes/oceanic-20.svg.js +5 -0
- package/ui/assets/icons/palettes/traffic-light-9.svg.js +5 -0
- package/ui/assets/icons/parameter-section.svg.js +5 -0
- package/ui/assets/icons/placeholder-tooltip.svg.js +5 -0
- package/ui/assets/icons/plus.svg.js +5 -0
- package/ui/assets/icons/ql-chart.svg.js +5 -0
- package/ui/assets/icons/relations-any.svg.js +5 -0
- package/ui/assets/icons/relations-controls.svg.js +5 -0
- package/ui/assets/icons/relations-no-data.svg.js +5 -0
- package/ui/assets/icons/relations-no-link.svg.js +5 -0
- package/ui/assets/icons/relations.svg.js +5 -0
- package/ui/assets/icons/source-table.svg.js +5 -0
- package/ui/assets/icons/sync.svg.js +5 -0
- package/ui/assets/icons/vis-area-100p.svg.js +5 -0
- package/ui/assets/icons/vis-area.svg.js +5 -0
- package/ui/assets/icons/vis-bar-100p.svg.js +5 -0
- package/ui/assets/icons/vis-bar.svg.js +5 -0
- package/ui/assets/icons/vis-column-100p.svg.js +5 -0
- package/ui/assets/icons/vis-column.svg.js +5 -0
- package/ui/assets/icons/vis-combined.svg.js +5 -0
- package/ui/assets/icons/vis-donut.svg.js +5 -0
- package/ui/assets/icons/vis-flat-table.svg.js +5 -0
- package/ui/assets/icons/vis-geolayers.svg.js +5 -0
- package/ui/assets/icons/vis-heatmap.svg.js +5 -0
- package/ui/assets/icons/vis-lines.svg.js +5 -0
- package/ui/assets/icons/vis-metric.svg.js +5 -0
- package/ui/assets/icons/vis-pie.svg.js +5 -0
- package/ui/assets/icons/vis-pivot.svg.js +5 -0
- package/ui/assets/icons/vis-scatter.svg.js +5 -0
- package/ui/assets/icons/vis-treemap.svg.js +5 -0
- package/ui/assets/icons/visualization.svg.js +5 -0
- package/ui/assets/icons/warning-colored.svg.js +5 -0
- package/ui/assets/images/dl-auth-background-dark.jpg.js +4 -0
- package/ui/assets/images/dl-auth-background-light.jpg.js +4 -0
- package/ui/assets/images/illustration/dark/403.svg.js +13 -0
- package/ui/assets/images/illustration/dark/404.svg.js +13 -0
- package/ui/assets/images/illustration/dark/500.svg.js +13 -0
- package/ui/assets/images/illustration/dark/bad_request.svg.js +13 -0
- package/ui/assets/images/illustration/dark/empty_directory.svg.js +13 -0
- package/ui/assets/images/illustration/dark/empty_state.svg.js +17 -0
- package/ui/assets/images/illustration/dark/no_accounts.svg.js +17 -0
- package/ui/assets/images/illustration/dark/no_permission.svg.js +13 -0
- package/ui/assets/images/illustration/dark/project.svg.js +9 -0
- package/ui/assets/images/illustration/dark/success_operation.svg.js +13 -0
- package/ui/assets/images/illustration/light/403.svg.js +13 -0
- package/ui/assets/images/illustration/light/404.svg.js +13 -0
- package/ui/assets/images/illustration/light/500.svg.js +13 -0
- package/ui/assets/images/illustration/light/bad_request.svg.js +13 -0
- package/ui/assets/images/illustration/light/empty_directory.svg.js +13 -0
- package/ui/assets/images/illustration/light/empty_state.svg.js +17 -0
- package/ui/assets/images/illustration/light/no_accounts.svg.js +17 -0
- package/ui/assets/images/illustration/light/no_permission.svg.js +13 -0
- package/ui/assets/images/illustration/light/project.svg.js +9 -0
- package/ui/assets/images/illustration/light/success_operation.svg.js +13 -0
- package/ui/capabilities/capabilities.js +51 -0
- package/ui/capabilities/index.js +14 -0
- package/ui/components/AccessRights/AccessRightsUrlOpen.js +9 -0
- package/ui/components/ActionPanel/ActionPanel.js +221 -0
- package/ui/components/ActionPanel/ActionPanelHelpers.js +9 -0
- package/ui/components/ActionPanel/components/ChartSaveControls/ChartSaveControl.js +111 -0
- package/ui/components/ActionPanel/components/ChartSaveControls/components/SaveButton/SaveButton.js +44 -0
- package/ui/components/ActionPanel/components/ChartSaveControls/components/SaveDropdown/SaveDropdown.js +37 -0
- package/ui/components/ActionPanel/components/ChartSaveControls/useAdditionalItems.js +48 -0
- package/ui/components/ActionPanel/components/EntryPanel/EntryPanel.js +283 -0
- package/ui/components/ActionPanel/index.js +6 -0
- package/ui/components/ActionPanel/utils.js +6 -0
- package/ui/components/AdaptiveDialog/AdaptiveDialog.js +45 -0
- package/ui/components/AnimateBlock/AnimateBlock.js +39 -0
- package/ui/components/AnimateBlock/index.js +4 -0
- package/ui/components/AsideHeaderAdapter/AsideHeaderAdapter.js +310 -0
- package/ui/components/AsideHeaderAdapter/LogoText/LogoText.js +21 -0
- package/ui/components/AsideHeaderAdapter/Settings/ItemField/ItemField.js +21 -0
- package/ui/components/AsideHeaderAdapter/Settings/LanguageSettings.js +50 -0
- package/ui/components/AsideHeaderAdapter/Settings/Settings.js +102 -0
- package/ui/components/AsideHeaderAdapter/Settings/types.js +8 -0
- package/ui/components/AsideHeaderAdapter/Settings/utils.js +47 -0
- package/ui/components/AsideHeaderAdapter/VersionDialog/VersionDialog.js +23 -0
- package/ui/components/AsideHeaderAdapter/constants.js +4 -0
- package/ui/components/AsideHeaderAdapter/helpers.js +13 -0
- package/ui/components/AsideHeaderAdapter/index.js +9 -0
- package/ui/components/AsyncImage/AsyncImage.js +77 -0
- package/ui/components/AutogeneratedPaletteIcon/AutogeneratedPaletteIcon.js +54 -0
- package/ui/components/BetaMark/BetaMark.js +10 -0
- package/ui/components/Breadcrumbs/CollectionsStructureBreadcrumbs/CollectionsStructureBreadcrumbs.js +19 -0
- package/ui/components/BreadcrumbsItemLink/BreadcrumbsItemLink.js +16 -0
- package/ui/components/ButtonAttach/ButtonAttach.js +33 -0
- package/ui/components/Collapse/Collapse.js +160 -0
- package/ui/components/CollectionFilters/CollectionFilters.js +238 -0
- package/ui/components/CollectionFilters/index.js +7 -0
- package/ui/components/CollectionIcon/CollectionIcon.js +14 -0
- package/ui/components/CollectionsStructure/CollectionDialog/CollectionDialog.js +94 -0
- package/ui/components/CollectionsStructure/CollectionDialog/index.js +4 -0
- package/ui/components/CollectionsStructure/CollectionNoCreatePermissionDialog/CollectionNoCreatePermissionDialog.js +37 -0
- package/ui/components/CollectionsStructure/CollectionNoCreatePermissionDialog/index.js +5 -0
- package/ui/components/CollectionsStructure/CollectionStructureDialog/CollectionStructureDialog.js +319 -0
- package/ui/components/CollectionsStructure/CollectionStructureDialog/CreateEntityDialog/CreateEntityDialog.js +57 -0
- package/ui/components/CollectionsStructure/CollectionStructureDialog/NewTitleDialog/NewTitleDialog.js +42 -0
- package/ui/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/Item/Item.js +64 -0
- package/ui/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/Item/index.js +4 -0
- package/ui/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/StructureItemSelect.js +132 -0
- package/ui/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/index.js +4 -0
- package/ui/components/CollectionsStructure/CollectionStructureDialog/index.js +5 -0
- package/ui/components/CollectionsStructure/CopyEntriesDialog.js +46 -0
- package/ui/components/CollectionsStructure/CopyWorkbookDialog.js +60 -0
- package/ui/components/CollectionsStructure/CreateCollectionDialog.js +73 -0
- package/ui/components/CollectionsStructure/CreateEntryInWorkbookDialog.js +70 -0
- package/ui/components/CollectionsStructure/CreateWorkbookDialog/CreateWorkbookDialog.js +357 -0
- package/ui/components/CollectionsStructure/CreateWorkbookDialog/ImportFileField/ImportFileField.js +81 -0
- package/ui/components/CollectionsStructure/CreateWorkbookDialog/ImportWorkbookView/ImportWorkbookView.js +69 -0
- package/ui/components/CollectionsStructure/CreateWorkbookDialog/utils.js +37 -0
- package/ui/components/CollectionsStructure/DeleteCollectionDialog.js +52 -0
- package/ui/components/CollectionsStructure/DeleteCollectionsWorkbooksContent/DeleteCollectionsWorkbooksContent.js +44 -0
- package/ui/components/CollectionsStructure/DeleteCollectionsWorkbooksContent/index.js +4 -0
- package/ui/components/CollectionsStructure/DeleteCollectionsWorkbooksDialog.js +72 -0
- package/ui/components/CollectionsStructure/DeleteDialog/DeleteDialog.js +36 -0
- package/ui/components/CollectionsStructure/DeleteDialog/index.js +4 -0
- package/ui/components/CollectionsStructure/DeleteWorkbookDialog.js +52 -0
- package/ui/components/CollectionsStructure/EditCollectionDialog.js +77 -0
- package/ui/components/CollectionsStructure/EditSharedEntryDialog.js +55 -0
- package/ui/components/CollectionsStructure/EditWorkbookDialog.js +75 -0
- package/ui/components/CollectionsStructure/ExportWorkbookDialog/ExportInfo/ExportInfo.js +40 -0
- package/ui/components/CollectionsStructure/ExportWorkbookDialog/ExportWorkbookDialog.js +262 -0
- package/ui/components/CollectionsStructure/ExportWorkbookDialog/utils.js +19 -0
- package/ui/components/CollectionsStructure/MigrateEntryToWorkbookDialog.js +44 -0
- package/ui/components/CollectionsStructure/MoveCollectionDialog.js +61 -0
- package/ui/components/CollectionsStructure/MoveCollectionsWorkbooksDialog.js +70 -0
- package/ui/components/CollectionsStructure/MoveSharedEntryDialog.js +63 -0
- package/ui/components/CollectionsStructure/MoveWorkbookDialog.js +61 -0
- package/ui/components/CollectionsStructure/WorkbookDialog/WorkbookDialog.js +120 -0
- package/ui/components/CollectionsStructure/WorkbookDialog/index.js +5 -0
- package/ui/components/CollectionsStructure/WorkbookDialog/types.js +1 -0
- package/ui/components/CollectionsStructure/components/EntriesNotificationCut/EntriesNotificationCut.js +85 -0
- package/ui/components/CollectionsStructure/components/EntriesNotificationCut/helpers.js +70 -0
- package/ui/components/CollectionsStructure/hooks/useCollectionEntityDialogState.js +30 -0
- package/ui/components/CollectionsStructure/hooks/useCollectionStructureDialogState.js +104 -0
- package/ui/components/CollectionsStructure/hooks/useNotificationsAndDetails.js +43 -0
- package/ui/components/CollectionsStructure/index.js +51 -0
- package/ui/components/ColorPaletteEditorContainer/ColorPaletteCharkitPreview/ColorPaletteChartkitPreview.js +18 -0
- package/ui/components/ColorPaletteEditorContainer/ColorPaletteCharkitPreview/utils.js +60 -0
- package/ui/components/ColorPaletteEditorContainer/ColorPaletteEditorContainer.js +127 -0
- package/ui/components/ColorPaletteEditorContainer/ColorPalettesCard/ColorPalettesCard.js +118 -0
- package/ui/components/ColorPaletteEditorContainer/ColorPalettesCard/DefaultPaletteSelect/DefaultPaletteSelect.js +93 -0
- package/ui/components/ColorPaletteEditorContainer/ColorTextInput/ColorTextInput.js +50 -0
- package/ui/components/ColorPaletteEditorContainer/GradientPaletteEditor/GradientPaletteEditor.js +251 -0
- package/ui/components/ColorPaletteEditorContainer/PaletteEditor/PaletteEditor.js +270 -0
- package/ui/components/ColorPaletteSelect/ColorPaletteSelect.js +128 -0
- package/ui/components/ColorPickerInput/ColorPickerInput.js +165 -0
- package/ui/components/ColorPickerInput/utils.js +47 -0
- package/ui/components/ConnectorIcon/ConnectorIcon.js +66 -0
- package/ui/components/ControlComponents/BackButton/BackButton.js +14 -0
- package/ui/components/ControlComponents/Dialog/Dialog.js +51 -0
- package/ui/components/ControlComponents/Sections/AppearanceSection/Rows/ColorAccentRow/ColorAccentRow.js +54 -0
- package/ui/components/ControlComponents/Sections/AppearanceSection/Rows/HintRow/HintRow.js +51 -0
- package/ui/components/ControlComponents/Sections/AppearanceSection/Rows/InnerTitleRow/InnerTitleRow.js +82 -0
- package/ui/components/ControlComponents/Sections/AppearanceSection/Rows/TitlePlacementRow/TitlePlacementRow.js +50 -0
- package/ui/components/ControlComponents/Sections/AppearanceSection/Rows/TitleRow/TitleRow.js +40 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/CommonGroupSettingsSection.js +66 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/ConnectionSettings.js +50 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/ConnectionSelector/ConnectionSelector.js +85 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/ConnectionSelector/helpers.js +19 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/QueryTypeControl.js +75 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/components/EditLabelControl/EditLabelControl.js +32 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/components/EditQueryControl/EditQueryControl.js +31 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/helpers.js +11 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/helpers/get-distincts-by-typed-query.js +34 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/DatasetSelectorSettings/DatasetSelectorSettings.js +174 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/EntrySelector/EntrySelector.js +42 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/ExternalSelectorSettings/ExternalSelectorSettings.js +124 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/CurrentTabOption/CurrentTabOption.js +32 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/ImpactTypeSelect.js +289 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/SelectedTabsOption/SelectedTabsOption.js +14 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/constants.js +18 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/helpers.js +55 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/useTabVisibilityValidation.js +65 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/InputTypeSelector/InputTypeSelector.js +75 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/ParameterNameInput/ParameterNameInput.js +47 -0
- package/ui/components/ControlComponents/Sections/CommonSettingsSection/helpers/input-type-select.js +45 -0
- package/ui/components/ControlComponents/Sections/Date/Default/Default.js +177 -0
- package/ui/components/ControlComponents/Sections/OperationSelector/OperationSelector.js +73 -0
- package/ui/components/ControlComponents/Sections/ParametersSection/ParametersSection.js +92 -0
- package/ui/components/ControlComponents/Sections/Switchers/DatasetField/DatasetField.js +142 -0
- package/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/Acceptable/Acceptable.js +107 -0
- package/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/Acceptable/SelectorValuesDialogBody.js +139 -0
- package/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/ListValueControl.js +40 -0
- package/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/MultiselectableCheckbox.js +40 -0
- package/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/DynamicValueSelect.js +53 -0
- package/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/StaticValueSelect.js +53 -0
- package/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/hooks.js +16 -0
- package/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/utils.js +8 -0
- package/ui/components/ControlComponents/Sections/ValueSelector/RequiredValueCheckbox/RequiredValueCheckbox.js +43 -0
- package/ui/components/ControlComponents/Sections/ValueSelector/ValueSelector.js +251 -0
- package/ui/components/ControlComponents/Sections/ValueSelector/helpers/get-distincts-by-dataset-field.js +64 -0
- package/ui/components/ControlComponents/SelectorPreview/SelectorPreview.js +6 -0
- package/ui/components/ControlComponents/SelectorTypeSelect/SelectorTypeSelect.js +88 -0
- package/ui/components/CopyEntriesToWorkbookDialog/CopyEntriesToWorkbookDialog.js +122 -0
- package/ui/components/CopyEntriesToWorkbookDialog/components/Body/Body.js +92 -0
- package/ui/components/CopyEntriesToWorkbookDialog/components/Body/index.js +4 -0
- package/ui/components/CopyEntriesToWorkbookDialog/components/EntriesGroup/EntriesGroup.js +59 -0
- package/ui/components/CopyEntriesToWorkbookDialog/components/EntriesGroup/index.js +4 -0
- package/ui/components/CopyEntriesToWorkbookDialog/components/EntryRow/EntryRow.js +36 -0
- package/ui/components/CopyEntriesToWorkbookDialog/components/EntryRow/index.js +4 -0
- package/ui/components/CopyEntriesToWorkbookDialog/index.js +5 -0
- package/ui/components/CopyEntriesToWorkbookDialog/utils.js +8 -0
- package/ui/components/DNDPane/DNDItem/DNDItem.js +47 -0
- package/ui/components/DNDPane/DNDPane.js +32 -0
- package/ui/components/DashKit/DashKit.js +83 -0
- package/ui/components/DashKit/constants.js +40 -0
- package/ui/components/DashKit/context/WidgetContext.js +38 -0
- package/ui/components/DashKit/helpers.js +109 -0
- package/ui/components/DashKit/plugins/Control/Control.js +640 -0
- package/ui/components/DashKit/plugins/Control/ControlItems/ControlItemSelect.js +225 -0
- package/ui/components/DashKit/plugins/Control/Error/Error.js +46 -0
- package/ui/components/DashKit/plugins/Control/constants.js +26 -0
- package/ui/components/DashKit/plugins/Control/prerenderMiddleware.js +62 -0
- package/ui/components/DashKit/plugins/Control/utils.js +225 -0
- package/ui/components/DashKit/plugins/DebugInfoTool/DebugInfoTool.js +33 -0
- package/ui/components/DashKit/plugins/GroupControl/Control/Control.js +462 -0
- package/ui/components/DashKit/plugins/GroupControl/Control/store/reducer.js +74 -0
- package/ui/components/DashKit/plugins/GroupControl/Control/store/types.js +65 -0
- package/ui/components/DashKit/plugins/GroupControl/GroupControl.js +733 -0
- package/ui/components/DashKit/plugins/GroupControl/utils.js +56 -0
- package/ui/components/DashKit/plugins/Image/Image.js +71 -0
- package/ui/components/DashKit/plugins/RendererWrapper/RendererWrapper.js +34 -0
- package/ui/components/DashKit/plugins/Text/Text.js +166 -0
- package/ui/components/DashKit/plugins/Title/AnchorLink/AnchorLink.js +20 -0
- package/ui/components/DashKit/plugins/Title/Title.js +204 -0
- package/ui/components/DashKit/plugins/Title/constants.js +6 -0
- package/ui/components/DashKit/plugins/Title/utils.d.ts +12 -0
- package/ui/components/DashKit/plugins/Title/utils.js +60 -0
- package/ui/components/DashKit/plugins/Widget/WidgetPlugin.js +59 -0
- package/ui/components/DashKit/plugins/Widget/components/helpers.d.ts +3 -0
- package/ui/components/DashKit/plugins/Widget/components/helpers.js +14 -0
- package/ui/components/DashKit/utils.js +243 -0
- package/ui/components/DataTypeIcon/DataTypeIcon.js +70 -0
- package/ui/components/DatasetFieldList/DatasetFieldList.js +55 -0
- package/ui/components/DebouncedInput/DebouncedInput.js +47 -0
- package/ui/components/DebouncedInput/index.js +4 -0
- package/ui/components/DialogAddSharedEntryFromLink/DialogAddSharedEntryFromLink.js +150 -0
- package/ui/components/DialogChartWidget/DialogChartWidget.js +797 -0
- package/ui/components/DialogCommon/DialogCommon.js +92 -0
- package/ui/components/DialogConfirm/DialogConfirm.js +71 -0
- package/ui/components/DialogDefault/DialogDefault.js +86 -0
- package/ui/components/DialogEditItem/DialogEditItem.js +188 -0
- package/ui/components/DialogEntryDescription/DialogEntryDescription.js +146 -0
- package/ui/components/DialogEntryDescription/DialogEntryDescriptionWrapper.js +13 -0
- package/ui/components/DialogEntryDescription/EntryDescriptionButton.js +39 -0
- package/ui/components/DialogEntryDescription/index.js +10 -0
- package/ui/components/DialogErrorWithTabs/DebugInfo/DebugInfo.js +55 -0
- package/ui/components/DialogErrorWithTabs/DialogErrorWithTabs.js +276 -0
- package/ui/components/DialogErrorWithTabs/ErrorText/ErrorText.js +19 -0
- package/ui/components/DialogErrorWithTabs/Tabs/DatabaseRequestTab/DatabaseRequestTab.js +11 -0
- package/ui/components/DialogErrorWithTabs/Tabs/DatabaseResponseTab/DatabaseResponseTab.js +11 -0
- package/ui/components/DialogErrorWithTabs/Tabs/DebugTab/DebugTab.js +38 -0
- package/ui/components/DialogErrorWithTabs/Tabs/DebugTab/utils.js +7 -0
- package/ui/components/DialogErrorWithTabs/Tabs/DocumentationTab/DocumentationTab.js +24 -0
- package/ui/components/DialogExternalControl/DialogExternalControl.js +115 -0
- package/ui/components/DialogFieldEditor/DialogFieldEditor.js +47 -0
- package/ui/components/DialogFilter/BooleanFilter/BooleanFilter.js +34 -0
- package/ui/components/DialogFilter/DateFilter/DateFilter.js +29 -0
- package/ui/components/DialogFilter/DialogFilter.js +501 -0
- package/ui/components/DialogFilter/InputFilter/InputFilter.js +71 -0
- package/ui/components/DialogFilter/SelectFilter/SelectFilter.js +177 -0
- package/ui/components/DialogFilter/constants.js +48 -0
- package/ui/components/DialogFilter/typings.js +8 -0
- package/ui/components/DialogFilter/utils.js +64 -0
- package/ui/components/DialogGroupControl/DialogGroupControl.js +124 -0
- package/ui/components/DialogGroupControl/GroupControlBody/GroupControlBody.js +65 -0
- package/ui/components/DialogGroupControl/GroupControlBody/SimilarSelectorsBlock/SimilarSelectorsBlock.js +84 -0
- package/ui/components/DialogGroupControl/GroupControlFooter/GroupControlFooter.js +27 -0
- package/ui/components/DialogGroupControl/GroupControlSidebar/GroupControlSidebar.js +139 -0
- package/ui/components/DialogGroupControl/GroupControlSidebar/TabItemWrapper/TabItemWrapper.js +21 -0
- package/ui/components/DialogGroupControl/GroupExtendedSettings/ControlPlacementRow.js +68 -0
- package/ui/components/DialogGroupControl/GroupExtendedSettings/GroupExtendedSettings.js +321 -0
- package/ui/components/DialogGroupControl/hooks/useSimilarSelectorsActions.js +201 -0
- package/ui/components/DialogImageWidget/DialogImageWidget.js +209 -0
- package/ui/components/DialogImageWidget/index.js +4 -0
- package/ui/components/DialogManager/DialogManager.js +16 -0
- package/ui/components/DialogManager/DialogManagerContainer.js +32 -0
- package/ui/components/DialogNoRights/DialogNoRights.js +20 -0
- package/ui/components/DialogParameter/DefaultValueSection.js +89 -0
- package/ui/components/DialogParameter/DialogParameter.js +230 -0
- package/ui/components/DialogParameter/TemplateSection.js +115 -0
- package/ui/components/DialogParameter/helpers.js +62 -0
- package/ui/components/DialogParameter/useParameterForm.js +39 -0
- package/ui/components/DialogParameter/useParameterTooltipMarkdown.js +25 -0
- package/ui/components/DialogParameter/useValidationErrors.js +43 -0
- package/ui/components/DialogQLParameter/DialogQLParameter.js +76 -0
- package/ui/components/DialogRelatedEntities/DialogRelatedEntities.d.ts +7 -0
- package/ui/components/DialogRelatedEntities/DialogRelatedEntities.js +209 -0
- package/ui/components/DialogRelatedEntities/constants.js +7 -0
- package/ui/components/DialogRelations/DialogRelations.d.ts +22 -0
- package/ui/components/DialogRelations/components/Content/helpers.js +67 -0
- package/ui/components/DialogRelations/components/DialogAliases/DialogAliases.js +315 -0
- package/ui/components/DialogRelations/components/DialogAliases/components/AddAliases/AddAliases.js +230 -0
- package/ui/components/DialogRelations/components/DialogAliases/components/AddAliases/helpers.js +66 -0
- package/ui/components/DialogRelations/components/DialogAliases/components/AliasesDetail/AliasesDetail.js +43 -0
- package/ui/components/DialogRelations/components/DialogAliases/components/AliasesList/AliasesInvalidList.js +82 -0
- package/ui/components/DialogRelations/components/DialogAliases/components/AliasesList/AliasesList.js +178 -0
- package/ui/components/DialogRelations/components/Filters/Filters.js +95 -0
- package/ui/components/DialogRelations/constants.d.ts +27 -0
- package/ui/components/DialogRelations/constants.js +50 -0
- package/ui/components/DialogRelations/helpers.js +331 -0
- package/ui/components/DialogRelations/hooks/helpers.d.ts +109 -0
- package/ui/components/DialogRelations/hooks/helpers.js +421 -0
- package/ui/components/DialogRelations/hooks/helpersChart.js +256 -0
- package/ui/components/DialogRelations/hooks/helpersControls.d.ts +26 -0
- package/ui/components/DialogRelations/hooks/helpersControls.js +179 -0
- package/ui/components/DialogRelations/hooks/helpersDatasets.js +76 -0
- package/ui/components/DialogRelations/hooks/predicates.d.ts +8 -0
- package/ui/components/DialogRelations/hooks/predicates.js +22 -0
- package/ui/components/DialogRelations/hooks/useRelations.js +146 -0
- package/ui/components/DialogSelectSharedEntry/DialogSelectSharedEntry.js +137 -0
- package/ui/components/DialogSharedEntryBindings/DialogSharedEntryBindings.js +114 -0
- package/ui/components/DialogSharedEntryBindings/components/DeleteAlert.js +41 -0
- package/ui/components/DialogSharedEntryBindings/components/DirectionControl.js +24 -0
- package/ui/components/DialogSharedEntryBindings/components/Relations.js +187 -0
- package/ui/components/DialogSharedEntryBindings/components/SharedBindingsFooter.js +39 -0
- package/ui/components/DialogSharedEntryBindings/components/SharedBindingsHeader.js +14 -0
- package/ui/components/DialogSharedEntryBindings/constants.js +16 -0
- package/ui/components/DialogSharedEntryBindings/hooks/useSharedEntryBindings.js +109 -0
- package/ui/components/DialogSharedEntryBindings/utils.js +28 -0
- package/ui/components/DialogSharedEntryPermissions/DialogSharedEntryPermissions.js +109 -0
- package/ui/components/DialogSharedEntryPermissions/components/PermissionButton/PermissionButton.js +49 -0
- package/ui/components/DialogSharedEntryUnbind/DialogSharedEntryUnbind.js +108 -0
- package/ui/components/DialogSharedEntryUnbind/constants.js +29 -0
- package/ui/components/DialogSharedRelatedEntities/DialogSharedRelatedEntities.js +201 -0
- package/ui/components/DialogSuccessWithAction/DialogSuccessWithAction.js +24 -0
- package/ui/components/DialogTextWidget/DialogTextWidget.js +211 -0
- package/ui/components/DialogTextWidget/index.js +9 -0
- package/ui/components/DialogTitleWidget/DialogTitleWidget.js +437 -0
- package/ui/components/DialogTitleWidget/useColorSettings.js +119 -0
- package/ui/components/DialogWarning/DialogWarning.js +61 -0
- package/ui/components/DropdownAction/DropdownAction.js +14 -0
- package/ui/components/DropdownNavigation/DropdownNavigation.js +177 -0
- package/ui/components/EditableText/EditableText.js +56 -0
- package/ui/components/EntitiesList/EntitiesList.js +57 -0
- package/ui/components/EntityIcon/EntityIcon.js +47 -0
- package/ui/components/EntityLink/EntityLink.js +15 -0
- package/ui/components/EntityRow/EntityRow.js +104 -0
- package/ui/components/EntriesList/EntriesList.js +28 -0
- package/ui/components/EntriesList/Item/Item.js +39 -0
- package/ui/components/EntryBreadcrumbs/EntryBreadcrumbs.js +49 -0
- package/ui/components/EntryBreadcrumbs/helpers.js +69 -0
- package/ui/components/EntryContextMenu/EntryContextMenu.js +147 -0
- package/ui/components/EntryContextMenu/EntryContextMenuBase/EntryContextMenuBase.js +99 -0
- package/ui/components/EntryContextMenu/constants.js +234 -0
- package/ui/components/EntryContextMenu/helpers.js +258 -0
- package/ui/components/EntryContextMenu/index.js +12 -0
- package/ui/components/EntryContextMenu/utils.js +6 -0
- package/ui/components/EntryContextMenu/withConfiguredEntryContextMenu/helpers.js +39 -0
- package/ui/components/EntryContextMenu/withConfiguredEntryContextMenu/withConfiguredEntryContextMenu.js +69 -0
- package/ui/components/EntryDialogues/DialogAccess/DialogAccess.js +9 -0
- package/ui/components/EntryDialogues/DialogAccessDescription/DialogAccessDescription.js +35 -0
- package/ui/components/EntryDialogues/DialogCopyEntry/DialogCopyEntry.js +172 -0
- package/ui/components/EntryDialogues/DialogCreateDashboard/DialogCreateDashboard.js +98 -0
- package/ui/components/EntryDialogues/DialogCreateDashboard/index.js +4 -0
- package/ui/components/EntryDialogues/DialogCreateEditorChart/DialogCreateEditorChart.js +100 -0
- package/ui/components/EntryDialogues/DialogCreateEditorChart/index.js +4 -0
- package/ui/components/EntryDialogues/DialogCreateFolder/DialogCreateFolder.js +69 -0
- package/ui/components/EntryDialogues/DialogCreateFolder/index.js +4 -0
- package/ui/components/EntryDialogues/DialogCreateQLChart/DialogCreateQLChart.js +103 -0
- package/ui/components/EntryDialogues/DialogCreateQLChart/index.js +4 -0
- package/ui/components/EntryDialogues/DialogCreateWizardChart/DialogCreateWizardChart.js +104 -0
- package/ui/components/EntryDialogues/DialogCreateWizardChart/index.js +4 -0
- package/ui/components/EntryDialogues/DialogCreateWorkbookEntry/DialogCreateWorkbookEntry.js +136 -0
- package/ui/components/EntryDialogues/DialogDeleteEntry/DialogDeleteEntry.js +87 -0
- package/ui/components/EntryDialogues/DialogDeleteEntry/index.js +4 -0
- package/ui/components/EntryDialogues/DialogEditFavoritesAlias/DialogEditFavoritesAlias.js +99 -0
- package/ui/components/EntryDialogues/DialogEditFavoritesAlias/index.js +4 -0
- package/ui/components/EntryDialogues/DialogEditWarning/DialogEditWarning.js +87 -0
- package/ui/components/EntryDialogues/DialogEntrySaveAsNew/DialogEntrySaveAsNew.js +93 -0
- package/ui/components/EntryDialogues/DialogEntrySaveAsNew/index.js +4 -0
- package/ui/components/EntryDialogues/DialogMakeActualConfirm/DialogMakeActualConfirm.js +66 -0
- package/ui/components/EntryDialogues/DialogMigrateToWorkbook/DialogMigrateToWorkbook.js +25 -0
- package/ui/components/EntryDialogues/DialogMigrateToWorkbook/index.js +4 -0
- package/ui/components/EntryDialogues/DialogMoveEntry/DialogMoveEntry.js +67 -0
- package/ui/components/EntryDialogues/DialogMoveEntry/index.js +4 -0
- package/ui/components/EntryDialogues/DialogRenameEntry/DialogRenameEntry.js +95 -0
- package/ui/components/EntryDialogues/DialogRenameEntry/index.js +4 -0
- package/ui/components/EntryDialogues/DialogShareEntry/DialogShareEntry.js +16 -0
- package/ui/components/EntryDialogues/DialogShareEntry/index.js +4 -0
- package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/AlertTooltip/AlertTooltip.js +14 -0
- package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/AuthorSection/AuthorSection.js +38 -0
- package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/ContentError/ContentError.js +15 -0
- package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/ContentLoader/ContentLoader.js +11 -0
- package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/CurrentEntrySection/CurrentEntrySection.js +71 -0
- package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/DialogAlert/DialogAlert.js +43 -0
- package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/DialogPublic.js +175 -0
- package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/RelationsList/RelationsList.js +85 -0
- package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/SharedLink/SharedLink.js +33 -0
- package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/constants.js +13 -0
- package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/helpers.js +9 -0
- package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/types.js +24 -0
- package/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/useDialogPublicState.js +470 -0
- package/ui/components/EntryDialogues/DialogSwitchPublic/DialogSwitchPublic.js +16 -0
- package/ui/components/EntryDialogues/DialogSwitchPublic/index.js +4 -0
- package/ui/components/EntryDialogues/DialogUnlock/DialogUnlock.js +23 -0
- package/ui/components/EntryDialogues/DialogUnlock/index.js +4 -0
- package/ui/components/EntryDialogues/EntryDialogBase/EntryDialogBase.js +175 -0
- package/ui/components/EntryDialogues/EntryDialogues.d.ts +95 -0
- package/ui/components/EntryDialogues/EntryDialogues.js +196 -0
- package/ui/components/EntryDialogues/constants.js +8 -0
- package/ui/components/EntryDialogues/index.js +12 -0
- package/ui/components/EntryDialogues/types.js +1 -0
- package/ui/components/EntryDialogues/utils.js +6 -0
- package/ui/components/EntryIcon/EntryIcon.js +106 -0
- package/ui/components/EntryRow/EntryRow.js +102 -0
- package/ui/components/EntryTitle/EntryTitle.js +53 -0
- package/ui/components/EntryTitle/index.js +4 -0
- package/ui/components/EntryTitle/utils.js +8 -0
- package/ui/components/ErrorBoundary/ErrorBoundary.js +24 -0
- package/ui/components/ErrorContent/DebugInfo/DebugInfo.js +40 -0
- package/ui/components/ErrorContent/ErrorContent.js +233 -0
- package/ui/components/ErrorPage/ErrorPage.js +9 -0
- package/ui/components/ErrorPage/withErrorPage.js +27 -0
- package/ui/components/ExpandablePanel/ExpandablePanel.js +73 -0
- package/ui/components/FieldEditor/FieldEditor.js +377 -0
- package/ui/components/FieldEditor/components/DocSection.js +266 -0
- package/ui/components/FieldEditor/components/FormulaSection.js +243 -0
- package/ui/components/FieldEditor/components/NameHeader.js +14 -0
- package/ui/components/FieldEditor/components/Settings.js +158 -0
- package/ui/components/FieldEditor/components/SourceSection.js +182 -0
- package/ui/components/FieldEditor/components/helpers.js +15 -0
- package/ui/components/FieldEditor/constants.js +29 -0
- package/ui/components/FieldEditor/index.js +38 -0
- package/ui/components/FieldEditor/utils.js +103 -0
- package/ui/components/FieldWrapper/FieldWrapper.js +16 -0
- package/ui/components/FloatMenu/FloatMenu.js +35 -0
- package/ui/components/FormSection/FormSection.js +17 -0
- package/ui/components/FormattedValue/FormattedValue.js +82 -0
- package/ui/components/IamAccessDialog/IamAccessDialog.js +15 -0
- package/ui/components/IamAccessDialog/index.js +5 -0
- package/ui/components/IconById/IconById.js +14 -0
- package/ui/components/Illustration/Illustration.js +21 -0
- package/ui/components/Illustration/context.js +31 -0
- package/ui/components/Illustration/getIllustrationStore.js +31 -0
- package/ui/components/Illustration/utils.js +24 -0
- package/ui/components/InaccessibleOnMobileInset/InaccessibleOnMobileInset.js +43 -0
- package/ui/components/Interpolate/Interpolate.js +32 -0
- package/ui/components/Interpolate/index.js +6 -0
- package/ui/components/Interpolate/utils.js +10 -0
- package/ui/components/InterpolatedText/InterpolatedText.js +47 -0
- package/ui/components/LandingPage/LandingPage.js +45 -0
- package/ui/components/ListWithMenu/ListWithMenu.js +173 -0
- package/ui/components/ListWithRemove/ListWithRemove.js +44 -0
- package/ui/components/LocationChange/LocationChange.js +23 -0
- package/ui/components/MarkdownControl/MarkdownControl.js +22 -0
- package/ui/components/MarkdownHelpPopover/Content.js +16 -0
- package/ui/components/MarkdownHelpPopover/MarkdownHelpPopover.js +33 -0
- package/ui/components/Markup/Markup.js +167 -0
- package/ui/components/Markup/components/MarkupTooltip/MarkupTooltip.js +13 -0
- package/ui/components/Markup/components/UserInfo/UserInfo.js +13 -0
- package/ui/components/Markup/components/index.js +6 -0
- package/ui/components/Markup/index.js +4 -0
- package/ui/components/Markup/utils.js +30 -0
- package/ui/components/MigrateToWorkbookDialog/MigrateToWorkbookDialog.js +155 -0
- package/ui/components/MigrateToWorkbookDialog/components/Body/Body.js +120 -0
- package/ui/components/MigrateToWorkbookDialog/components/Body/index.js +4 -0
- package/ui/components/MigrateToWorkbookDialog/components/EntriesGroup/EntriesGroup.js +59 -0
- package/ui/components/MigrateToWorkbookDialog/components/EntriesGroup/index.js +4 -0
- package/ui/components/MigrateToWorkbookDialog/components/EntryRow/EntryRow.js +24 -0
- package/ui/components/MigrateToWorkbookDialog/components/EntryRow/index.js +4 -0
- package/ui/components/MobileHeader/MobileHeaderComponent/BurgerMenuFooter/BurgerMenuFooter.js +49 -0
- package/ui/components/MobileHeader/MobileHeaderComponent/MobileHeaderComponent.js +94 -0
- package/ui/components/MobileHeader/MobileHeaderComponent/UserPanel/UserPanel.js +30 -0
- package/ui/components/MobileHeader/constants.js +4 -0
- package/ui/components/MobileTocToggle/MobileTocToggle.js +19 -0
- package/ui/components/Monaco/LazyMonaco.js +49 -0
- package/ui/components/Monaco/Monaco.js +78 -0
- package/ui/components/Navigation/Base/NavigationBase.js +482 -0
- package/ui/components/Navigation/Base/configure.js +166 -0
- package/ui/components/Navigation/Base/utils.js +9 -0
- package/ui/components/Navigation/Core/CreateEntry/CreateEntry.d.ts +11 -0
- package/ui/components/Navigation/Core/CreateEntry/CreateEntry.js +88 -0
- package/ui/components/Navigation/Core/CreateEntry/constants.d.ts +9 -0
- package/ui/components/Navigation/Core/CreateEntry/constants.js +13 -0
- package/ui/components/Navigation/Core/CreateEntry/getCreateEntryItems.js +60 -0
- package/ui/components/Navigation/Core/EntryContextButton/EntryContextButton.js +16 -0
- package/ui/components/Navigation/Core/ErrorView/ErrorView.js +42 -0
- package/ui/components/Navigation/Core/FavoritesNameWithAliasItem/FavoritesNameWithAliasItem.js +59 -0
- package/ui/components/Navigation/Core/NavigationBreadcrumbs/BreadcrumbMenu.js +188 -0
- package/ui/components/Navigation/Core/NavigationBreadcrumbs/NavigationBreadcrumbs.js +116 -0
- package/ui/components/Navigation/Core/NavigationEntries.js +570 -0
- package/ui/components/Navigation/Core/NavigationInline.js +110 -0
- package/ui/components/Navigation/Core/NavigationMinimal.js +163 -0
- package/ui/components/Navigation/Core/NavigationModal.js +188 -0
- package/ui/components/Navigation/Core/OrderSelect/OrderSelect.js +39 -0
- package/ui/components/Navigation/Core/SearchInput/SearchInput.js +35 -0
- package/ui/components/Navigation/Core/Sidebar/Sidebar.js +92 -0
- package/ui/components/Navigation/Core/TableView/BatchDialog/BatchDialog.js +29 -0
- package/ui/components/Navigation/Core/TableView/List/List.js +158 -0
- package/ui/components/Navigation/Core/TableView/Row/Row.js +292 -0
- package/ui/components/Navigation/Core/TableView/Row/RowHeader.js +53 -0
- package/ui/components/Navigation/Core/TableView/TableView.js +66 -0
- package/ui/components/Navigation/Core/TableView/useBatchSelect.js +96 -0
- package/ui/components/Navigation/NavigationMinimal.js +187 -0
- package/ui/components/Navigation/NavigationModal.js +73 -0
- package/ui/components/Navigation/PlaceSelect/PlaceSelect.js +83 -0
- package/ui/components/Navigation/components/BatchPanel/BatchPanel.js +43 -0
- package/ui/components/Navigation/components/EmptyState/EmptyState.js +42 -0
- package/ui/components/Navigation/components/EmptyState/utils.js +44 -0
- package/ui/components/Navigation/constants.js +42 -0
- package/ui/components/Navigation/dialogs/BatchMove/AccessError/AccessError.js +77 -0
- package/ui/components/Navigation/dialogs/BatchMove/BatchMove.js +147 -0
- package/ui/components/Navigation/dialogs/BatchMove/MoveError/MoveError.js +69 -0
- package/ui/components/Navigation/dialogs/BatchMove/SelectDestination/SelectDestination.js +55 -0
- package/ui/components/Navigation/hoc/resolveNavigationPath.js +65 -0
- package/ui/components/Navigation/index.js +12 -0
- package/ui/components/Navigation/settings.js +34 -0
- package/ui/components/Navigation/util.js +34 -0
- package/ui/components/NavigationPrompt/NavigationPrompt.js +18 -0
- package/ui/components/NavigationTabs/NavigationTabs.js +84 -0
- package/ui/components/NumberFormatSettings/NumberFormatSettings.js +157 -0
- package/ui/components/NumberFormatSettings/NumberInput/NumberInput.js +49 -0
- package/ui/components/OpenDialogNeedReset/OpenDialogNeedReset.js +50 -0
- package/ui/components/OrderBySelect/OrderBySelect.js +44 -0
- package/ui/components/OrderBySelect/constants.js +9 -0
- package/ui/components/OrderBySelect/index.js +7 -0
- package/ui/components/OrderBySelect/types.js +1 -0
- package/ui/components/PageTitle/PageTitle.js +8 -0
- package/ui/components/PageTitle/index.js +6 -0
- package/ui/components/PageTitle/usePageTitle.js +41 -0
- package/ui/components/PaletteIcon/PaletteIcon.js +27 -0
- package/ui/components/PaletteItem/PaletteItem.js +45 -0
- package/ui/components/PathSelect/PathSelect.js +123 -0
- package/ui/components/PlaceholderIllustration/PlaceholderIllustration.js +39 -0
- package/ui/components/Progress/DialogCounterProgress.js +48 -0
- package/ui/components/ProgressBar/ProgressBar.js +20 -0
- package/ui/components/RelativeDatesPicker/RelativeDatesPicker.js +534 -0
- package/ui/components/RelativeDatesPicker/constants.js +45 -0
- package/ui/components/RelativeDatesPicker/utils.js +121 -0
- package/ui/components/RevisionStatusPoint/RevisionStatusPoint.js +27 -0
- package/ui/components/Revisions/Revisions.js +163 -0
- package/ui/components/Revisions/RevisionsList/RevisionsList.js +112 -0
- package/ui/components/Revisions/helpers.js +51 -0
- package/ui/components/RevisionsPanel/RevisionsPanel.js +203 -0
- package/ui/components/RevisionsPanel/components/RevisionsControls.js +92 -0
- package/ui/components/RevisionsPanel/utils.js +12 -0
- package/ui/components/SectionWrapper/SectionWrapper.js +53 -0
- package/ui/components/Select/constants/SelectStyles.js +6 -0
- package/ui/components/Select/hooks/useSelectAsyncFetch/useIntersection.js +18 -0
- package/ui/components/Select/hooks/useSelectAsyncFetch/useSelectAsyncFetch.js +78 -0
- package/ui/components/Select/hooks/useSelectInfinityFetch/useSelectInfinityFetch.js +72 -0
- package/ui/components/Select/hooks/useSelectOptionsEnhancer.js +11 -0
- package/ui/components/Select/hooks/useSelectRenderEmptyOptions/useSelectRenderEmptyOptions.js +21 -0
- package/ui/components/Select/hooks/useSelectRenderError.js +26 -0
- package/ui/components/Select/hooks/useSelectRenderFilter/useSelectRenderFilter.js +147 -0
- package/ui/components/Select/wrappers/SelectFeatured.js +42 -0
- package/ui/components/Select/wrappers/SelectFeaturedAsync.js +46 -0
- package/ui/components/SelectComponents/components/SelectOptionWithIcon/SelectOptionWithIcon.js +13 -0
- package/ui/components/SelectComponents/index.js +4 -0
- package/ui/components/SelectMigrationToWorkbookDialog/Body/Body.js +35 -0
- package/ui/components/SelectMigrationToWorkbookDialog/SelectMigrationToWorkbookDialog.js +94 -0
- package/ui/components/SelectMigrationToWorkbookDialog/constants.js +57 -0
- package/ui/components/SharedBindingsList/ListSearch.js +36 -0
- package/ui/components/SharedBindingsList/SharedBindingsList.js +65 -0
- package/ui/components/SharedEntryIcon/SharedEntryIcon.js +23 -0
- package/ui/components/SlugifyUrl/SlugifyUrl.js +26 -0
- package/ui/components/SlugifyUrl/index.js +4 -0
- package/ui/components/SmartLoader/SmartLoader.js +29 -0
- package/ui/components/TabMenu/TabMenu.js +352 -0
- package/ui/components/TabMenu/types.js +12 -0
- package/ui/components/Tabs/Tabs.js +6 -0
- package/ui/components/Tabs/withDatalensSpecific.js +66 -0
- package/ui/components/TagInput/TagInput.js +143 -0
- package/ui/components/TemplateTextPaper/TemplateTextPaper.js +33 -0
- package/ui/components/TextEditor/TextEditor.js +42 -0
- package/ui/components/UserAvatar/UserAvatarById.js +27 -0
- package/ui/components/UserMenu/UserAvatar.js +7 -0
- package/ui/components/UserMenu/UserMenu.js +54 -0
- package/ui/components/ValuesList/ValuesList.js +56 -0
- package/ui/components/Veil/Veil.js +20 -0
- package/ui/components/ViewAsync/ViewAsync.js +46 -0
- package/ui/components/ViewError/ViewError.js +123 -0
- package/ui/components/ViewLoader/ViewLoader.js +19 -0
- package/ui/components/WidgetRoundingsInput/WidgetRoundingsInput.js +48 -0
- package/ui/components/Widgets/Chart/Chart.js +260 -0
- package/ui/components/Widgets/Chart/ChartSelector.js +258 -0
- package/ui/components/Widgets/Chart/ChartWidget.js +485 -0
- package/ui/components/Widgets/Chart/ChartWidgetWithProvider.js +53 -0
- package/ui/components/Widgets/Chart/components/ChartInfoIcon.js +38 -0
- package/ui/components/Widgets/Chart/components/Content.js +224 -0
- package/ui/components/Widgets/Chart/components/Header.js +149 -0
- package/ui/components/Widgets/Chart/components/WidgetFooter.js +27 -0
- package/ui/components/Widgets/Chart/components/WidgetHeader.js +182 -0
- package/ui/components/Widgets/Chart/helpers/helpers.d.ts +139 -0
- package/ui/components/Widgets/Chart/helpers/helpers.js +302 -0
- package/ui/components/Widgets/Chart/helpers/yandex-map.d.ts +12 -0
- package/ui/components/Widgets/Chart/helpers/yandex-map.js +84 -0
- package/ui/components/Widgets/Chart/hooks/useAutoHeightResizeObserver.js +57 -0
- package/ui/components/Widgets/Chart/hooks/useChartActivities.js +144 -0
- package/ui/components/Widgets/Chart/hooks/useIntersectionObserver.js +105 -0
- package/ui/components/Widgets/Chart/hooks/useLoadingChart.js +655 -0
- package/ui/components/Widgets/Chart/hooks/useLoadingChartSelector.js +302 -0
- package/ui/components/Widgets/Chart/hooks/useLoadingChartWidget.d.ts +195 -0
- package/ui/components/Widgets/Chart/hooks/useLoadingChartWidget.js +518 -0
- package/ui/components/Widgets/Chart/hooks/useMemoCallback.js +11 -0
- package/ui/components/Widgets/Chart/store/reducer.js +73 -0
- package/ui/components/Widgets/Chart/store/types.js +18 -0
- package/ui/components/Widgets/Chart/utils.js +14 -0
- package/ui/components/WorkbookIcon/WorkbookIcon.js +64 -0
- package/ui/components/WorkbookNavigationMinimal/WorkbookNavigationMinimal.js +311 -0
- package/ui/components/WorkbookNavigationMinimal/components/ListWithSharedEntries.js +56 -0
- package/ui/components/WorkbookNavigationMinimal/constants.js +4 -0
- package/ui/components/YfmWrapper/YfmWrapper.js +126 -0
- package/ui/components/YfmWrapper/YfmWrapperContent.js +30 -0
- package/ui/components/common/Datepicker/Calendar/Calendar.js +551 -0
- package/ui/components/common/Datepicker/Datepicker.js +511 -0
- package/ui/components/common/Datepicker/Month/Month.js +158 -0
- package/ui/components/common/Datepicker/Months/Months.js +132 -0
- package/ui/components/common/Datepicker/PopupContent/PopupContent.js +74 -0
- package/ui/components/common/Datepicker/Presets/Presets.js +40 -0
- package/ui/components/common/Datepicker/Quarters/Quarters.js +114 -0
- package/ui/components/common/Datepicker/YearSwitcher/YearSwitcher.js +49 -0
- package/ui/components/common/Datepicker/Years/Years.js +89 -0
- package/ui/components/common/Datepicker/constants.js +58 -0
- package/ui/components/common/Datepicker/index.js +9 -0
- package/ui/components/common/Datepicker/utils.js +221 -0
- package/ui/components/common/DatepickerControl/DatepickerControl.js +9 -0
- package/ui/components/common/RangeInputPicker/RangeInputPicker.js +366 -0
- package/ui/components/common/RangeInputPicker/constants.js +17 -0
- package/ui/components/common/RangeInputPicker/index.js +4 -0
- package/ui/components/common/RangeInputPicker/utils.js +83 -0
- package/ui/components/common/YCSelect/Item/Item.js +358 -0
- package/ui/components/common/YCSelect/Items/Items.js +366 -0
- package/ui/components/common/YCSelect/Search/Search.js +70 -0
- package/ui/components/common/YCSelect/YCSelect.js +1339 -0
- package/ui/components/common/YCSelect/constants.js +6 -0
- package/ui/components/common/YCSelect/isBothEmpty.js +12 -0
- package/ui/components/common/YCSelect/utils.js +47 -0
- package/ui/configs/common/icons.js +65 -0
- package/ui/configs/index.js +7 -0
- package/ui/constants/common.js +413 -0
- package/ui/constants/connections.js +15 -0
- package/ui/constants/dialogs.js +29 -0
- package/ui/constants/embedded.js +7 -0
- package/ui/constants/index.js +59 -0
- package/ui/constants/misc.js +147 -0
- package/ui/constants/mobile.js +11 -0
- package/ui/constants/navigation.js +4 -0
- package/ui/constants/operations.js +199 -0
- package/ui/constants/visualizations/combined-chart.js +14 -0
- package/ui/constants/visualizations/donut.js +14 -0
- package/ui/constants/visualizations/flatTable.js +55 -0
- package/ui/constants/visualizations/geolayer.js +18 -0
- package/ui/constants/visualizations/geopoint.js +56 -0
- package/ui/constants/visualizations/geopolygon.js +30 -0
- package/ui/constants/visualizations/heatmap.js +30 -0
- package/ui/constants/visualizations/index.js +217 -0
- package/ui/constants/visualizations/line.js +395 -0
- package/ui/constants/visualizations/metric.js +30 -0
- package/ui/constants/visualizations/pie.js +70 -0
- package/ui/constants/visualizations/pivotTable.js +91 -0
- package/ui/constants/visualizations/polyline.js +62 -0
- package/ui/constants/visualizations/scatter.js +114 -0
- package/ui/constants/visualizations/treemap.js +89 -0
- package/ui/constants/visualizations/utils.js +18 -0
- package/ui/constants/workbooks.js +6 -0
- package/ui/constants/yfm.js +10 -0
- package/ui/datalens/helpers.js +10 -0
- package/ui/datalens/hooks.js +17 -0
- package/ui/datalens/index.js +127 -0
- package/ui/datalens/pages/AuthPage/AuthPage.js +6 -0
- package/ui/datalens/pages/CollectionsNavigationPage/CollectionsNavigationPage.js +14 -0
- package/ui/datalens/pages/ConnectionsPage/ConnectionsPage.js +10 -0
- package/ui/datalens/pages/DashAndWizardQLPages/DashAndWizardQLPages.js +67 -0
- package/ui/datalens/pages/DashPage/DashPage.js +23 -0
- package/ui/datalens/pages/DatasetPage/DatasetPage.js +15 -0
- package/ui/datalens/pages/FallbackPage/FallbackPage.js +9 -0
- package/ui/datalens/pages/LandingPage/LandingPage.js +9 -0
- package/ui/datalens/pages/OwnUserProfilePage/OwnUserProfilePage.js +30 -0
- package/ui/datalens/pages/PreviewPage/PreviewPage.js +6 -0
- package/ui/datalens/pages/QLPage/QLPage.js +20 -0
- package/ui/datalens/pages/ServiceSettingsPage/ServiceSettingsPage.js +6 -0
- package/ui/datalens/pages/WizardPage/WizardPage.js +12 -0
- package/ui/datalens/render.d.ts +7 -0
- package/ui/datalens/render.js +14 -0
- package/ui/entries/main.d.ts +4 -0
- package/ui/entries/main.js +82 -0
- package/ui/hoc/index.js +4 -0
- package/ui/hoc/withHiddenUnmount.js +17 -0
- package/ui/hoc/withHotkeysContext.js +14 -0
- package/ui/hoc/withInaccessibleOnMobile.js +22 -0
- package/ui/hoc/withPromiseOpen.js +33 -0
- package/ui/hooks/index.js +16 -0
- package/ui/hooks/useBeforeLoad.js +13 -0
- package/ui/hooks/useBindHotkey.js +17 -0
- package/ui/hooks/useChangedProp.js +13 -0
- package/ui/hooks/useEffectOnce.js +7 -0
- package/ui/hooks/useEnterClick.js +22 -0
- package/ui/hooks/useHover.js +19 -0
- package/ui/hooks/useLocalStorageFallback.js +59 -0
- package/ui/hooks/useMarkdown.js +42 -0
- package/ui/hooks/useMountedState.js +15 -0
- package/ui/hooks/usePrevious.js +11 -0
- package/ui/hooks/useRefMounted.js +14 -0
- package/ui/hooks/useSetState.js +16 -0
- package/ui/hooks/useShallowEqualSelector.js +7 -0
- package/ui/hooks/useTitle.js +16 -0
- package/ui/index.js +41 -0
- package/ui/libs/DatalensChartkit/ChartKit/ChartKit.js +99 -0
- package/ui/libs/DatalensChartkit/ChartKit/ChartKitAdapter.js +172 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/ChartKitTooltip/ChartKitTooltip.js +143 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Error/Error.js +17 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/IconRenderer.js +58 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/CirclePointIcon.js +15 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DashDotLineIcon.js +23 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DashLineIcon.js +23 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DiamondPointIcon.js +21 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DotLineIcon.js +15 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/LongDashDotDotLineIcon.js +23 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/LongDashDotLineIcon.js +23 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/LongDashLineIcon.js +15 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDashDotDotLineIcon.js +23 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDashDotLineIcon.js +23 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDashLineIcon.js +23 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDotLineIcon.js +23 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/SolidLineIcon.js +15 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/SquarePointIcon.js +16 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/TriangleDownPointIcon.js +16 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/TrianglePointIcon.js +16 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/constants.js +6 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/renderTooltipIcon.js +36 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/DashDotLineIcon.js +23 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/DashLineIcon.js +28 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/DotLineIcon.js +23 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/LongDashDotDotLineIcon.js +21 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/LongDashDotLineIcon.js +21 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/LongDashLineIcon.js +18 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDashDotDotLineIcon.js +21 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDashDotLineIcon.js +21 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDashLineIcon.js +21 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDotLineIcon.js +23 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/SolidLineIcon.js +16 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/index.js +24 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/utils.js +8 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Loader/Loader.js +11 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/Widget.js +67 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/AlertWidget/AlertWidget.js +112 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/AlertWidget/utils.js +317 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Markdown/Markdown.js +49 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Bar/Bar.js +51 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Bar/utils.js +225 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Paginator/Paginator.js +94 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Table.js +340 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/WrappedHTMLNode.js +16 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/action-params.js +272 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/event-handlers.js +73 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/index.js +11 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/misc.js +225 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/render.js +418 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/validation.js +85 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/constants.js +10 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/index.js +8 -0
- package/ui/libs/DatalensChartkit/ChartKit/components/index.js +10 -0
- package/ui/libs/DatalensChartkit/ChartKit/helpers/action-params-handlers.js +241 -0
- package/ui/libs/DatalensChartkit/ChartKit/helpers/apply-hc-handlers.js +144 -0
- package/ui/libs/DatalensChartkit/ChartKit/helpers/chartkit-adapter.d.ts +59 -0
- package/ui/libs/DatalensChartkit/ChartKit/helpers/chartkit-adapter.js +202 -0
- package/ui/libs/DatalensChartkit/ChartKit/helpers/constants.js +10 -0
- package/ui/libs/DatalensChartkit/ChartKit/helpers/getRandomCKId.js +11 -0
- package/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/chart-to-table.js +95 -0
- package/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/chartkit-adapter.js +138 -0
- package/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/comments.js +61 -0
- package/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/event-handlers.js +151 -0
- package/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/holidays.js +38 -0
- package/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/utils.js +65 -0
- package/ui/libs/DatalensChartkit/ChartKit/helpers/tooltip.js +213 -0
- package/ui/libs/DatalensChartkit/ChartKit/helpers/utils.js +81 -0
- package/ui/libs/DatalensChartkit/ChartKit/helpers/wait-for-content.js +29 -0
- package/ui/libs/DatalensChartkit/ChartKit/init.js +73 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/chartkit-custom-error/chartkit-custom-error.js +41 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/comments/drawing.js +570 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/config.d.ts +576 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/config.js +1458 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/handleLegendItemClick.js +62 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/options.js +436 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/predicates.d.ts +1 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/predicates.js +6 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/addShowInNavigatorToSeries.js +49 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/buildNavigatorFallback.js +16 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/calculatePrecision.js +23 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/concatStrings.js +4 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/getChartKitFormattedValue.js +26 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/getFormatOptionsFromLine.js +18 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/getXAxisThresholdValue.js +12 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/index.js +24 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/isSafari.js +14 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/isTooltipShared.js +9 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/localStorage.js +23 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/mergeArrayWithObject.js +13 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/numberFormat.js +29 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/setNavigatorDefaultPeriod.js +31 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/graph.js +83 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/prepare-data.js +144 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/tooltip/helpers.js +8 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/graph/tooltip/tooltip.js +211 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/highcharts/colors.js +20 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/highcharts/helpers/calcucalteClosestPointManually.js +21 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/highcharts/helpers/index.js +4 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/highcharts/highcharts.js +350 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/i18n/i18n.js +14 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/i18n/keysets/en.js +60 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/i18n/keysets/ru.js +61 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/map/map.js +231 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/map/options.js +33 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/map/tooltip/tooltip.js +30 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/perfomance.js +23 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/helpers/fetch-script.js +14 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/helpers/index.js +6 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/helpers/number-format.js +9 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/Canvas.js +157 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/DataConverter.js +84 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/Heatmap.js +105 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/TileUrlsGenerator.js +107 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/Gridmap.js +123 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/utils/hexagonGrid.js +48 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/utils/squareGrid.js +36 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/Polygonmap.js +329 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/colorLegend.js +62 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/colorize.js +80 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultBalloonContent.js +10 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultFilter.js +7 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultMapper.js +25 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultOnClick.js +46 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultOnMouseEnter.js +24 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultOnMouseLeave.js +16 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/inside.js +31 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/normalizeFeature.js +22 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/modules.js +14 -0
- package/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/yandex-map.js +571 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/index.js +8 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/AdvancedChartWidget.js +222 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/components/Tooltip/Tooltip.js +40 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/utils.js +10 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/index.js +8 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/renderer/HighchartsMapComponent.js +102 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/renderer/HighchartsMapWidget.js +13 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Markup/index.js +8 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Markup/renderer/MarkupWidget.js +37 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Metric/index.js +8 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Metric/renderer/MetricTile.js +157 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Metric/renderer/MetricWidget.js +37 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Metric/renderer/metricHelpers.js +192 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/index.js +8 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/TableWidget.js +93 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/BarCell/BarCell.js +40 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/DiffCell/DiffCell.js +29 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/HtmlCell/HtmlCell.js +45 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/MarkupCell/MarkupCell.js +24 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/SortIcon/SortIcon.js +27 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/BackgroundTable.js +73 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/Table.js +275 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/TableBody.js +74 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/TableFooter.js +35 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/TableHead.js +57 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/cell-width.js +21 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/usePreparedTableData.js +406 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/utils.js +271 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/TableTitleView/TableTitleView.js +13 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/TreeCell/TreeCell.js +36 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/action-params.js +49 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/drill-down.js +13 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/index.js +20 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/math.js +29 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/migrate-to-old-format.js +68 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/renderer.js +148 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/tree.js +105 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/index.js +8 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Icons/EyeSlashIcon.js +11 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Icons/SizeIcon.js +15 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Layer/Layer.js +170 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Legend.js +32 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/YandexMapComponent.js +495 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/YandexMapWidget.js +13 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/events.js +187 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/utils.js +17 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/chart-storage.js +4 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/components/StyledSplitPane/StyledSplitPane.js +42 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/components/index.js +6 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/components/withSplitPane/withSplitPane.js +228 -0
- package/ui/libs/DatalensChartkit/ChartKit/plugins/index.js +28 -0
- package/ui/libs/DatalensChartkit/DatalensChartKitOld.js +68 -0
- package/ui/libs/DatalensChartkit/Error/Error.js +244 -0
- package/ui/libs/DatalensChartkit/Error/getAdditionalChartkitErrorContent.js +6 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/ChartKitBase.js +540 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Chart/Chart.js +52 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/ChartkitError/ChartkitError.js +29 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/Header.js +43 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/ChartsInsights.js +98 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/components/ChartsInsightsIcon/ChartsInsightsIcon.js +24 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/components/ChartsInsightsIcon/getIconData.js +12 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/components/TooltipContent/TooltipContent.js +34 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/helpers/getIconLevel.js +28 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/DownloadCsv/DownloadCsv.js +142 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/CsvExport/CsvExport.js +29 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/Export.js +161 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/ToastContent/ToastContent.js +59 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/content.d.ts +2 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/content.js +42 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/utils.d.ts +10 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/utils.js +114 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Inspector.js +124 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/SourceMeta/Datalens.js +30 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/Source/Source.js +83 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/SourceError/SourceError.js +66 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/SourceSuccess/SourceSuccess.js +108 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/Sources.js +57 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Timings/Timings.js +265 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/constants.js +11 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Menu.js +264 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/MenuWithErrorBoundary/MenuWithErrorBoundary.js +6 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/index.js +6 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/components/Loader/Loader.js +32 -0
- package/ui/libs/DatalensChartkit/components/ChartKitBase/helpers.js +42 -0
- package/ui/libs/DatalensChartkit/components/ChartKitIcon/ChartKitIcon.js +58 -0
- package/ui/libs/DatalensChartkit/components/Control/Control.js +291 -0
- package/ui/libs/DatalensChartkit/components/Control/Items/Items.js +513 -0
- package/ui/libs/DatalensChartkit/components/Control/Items/withWrapForControls.js +74 -0
- package/ui/libs/DatalensChartkit/components/DeferredInitializer/DeferredInitializer.js +88 -0
- package/ui/libs/DatalensChartkit/components/Drill/Drill.js +135 -0
- package/ui/libs/DatalensChartkit/components/Error/Error.js +51 -0
- package/ui/libs/DatalensChartkit/components/Error/More/More.js +64 -0
- package/ui/libs/DatalensChartkit/components/ErrorBoundary/ErrorBoundary.js +27 -0
- package/ui/libs/DatalensChartkit/components/ErrorBoundary/withErrorBoundary.js +13 -0
- package/ui/libs/DatalensChartkit/components/Palette/Attach/Attach.js +28 -0
- package/ui/libs/DatalensChartkit/components/Palette/ColorItem/ColorItem.js +44 -0
- package/ui/libs/DatalensChartkit/components/Palette/DraggableModalHOC/DraggableModalHOC.js +35 -0
- package/ui/libs/DatalensChartkit/components/Palette/PaletteEditor/PaletteEditor.js +98 -0
- package/ui/libs/DatalensChartkit/components/Palette/PaletteSettings/PaletteSettings.js +38 -0
- package/ui/libs/DatalensChartkit/components/SideMarkdown/SideMarkdown.js +35 -0
- package/ui/libs/DatalensChartkit/extensions/control.js +8 -0
- package/ui/libs/DatalensChartkit/extensions/markdown.js +9 -0
- package/ui/libs/DatalensChartkit/extensions/table.js +9 -0
- package/ui/libs/DatalensChartkit/helpers/convert-data-to-table.js +61 -0
- package/ui/libs/DatalensChartkit/helpers/helpers.js +53 -0
- package/ui/libs/DatalensChartkit/index.js +11 -0
- package/ui/libs/DatalensChartkit/menu/Menu.js +45 -0
- package/ui/libs/DatalensChartkit/menu/MenuItems.d.ts +56 -0
- package/ui/libs/DatalensChartkit/menu/MenuItems.js +234 -0
- package/ui/libs/DatalensChartkit/menu/constants.d.ts +10 -0
- package/ui/libs/DatalensChartkit/menu/constants.js +16 -0
- package/ui/libs/DatalensChartkit/menu/helpers.js +85 -0
- package/ui/libs/DatalensChartkit/modules/axios/axios.js +67 -0
- package/ui/libs/DatalensChartkit/modules/axios/axiosConcurrency.js +69 -0
- package/ui/libs/DatalensChartkit/modules/constants/constants.js +42 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/chartkit-handlers.js +139 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/constants.d.ts +14 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/constants.js +17 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/get-graph/get-graph.js +13 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/get-graph/prepare-config.js +202 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/get-graph/prepare-data.js +144 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/helpers/getChartsInsightsData.js +68 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/helpers/index.js +4 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/index.d.ts +113 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/index.js +755 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/node.js +350 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/types.js +1 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/ui-sandbox-runtime.js +189 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/ui-sandbox.js +523 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/utils.js +41 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/charts/wizard.js +335 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/helpers.js +15 -0
- package/ui/libs/DatalensChartkit/modules/data-provider/withDataProvider.js +29 -0
- package/ui/libs/DatalensChartkit/modules/datalens-chartkit-custom-error/datalens-chartkit-custom-error.js +157 -0
- package/ui/libs/DatalensChartkit/modules/export/export.js +420 -0
- package/ui/libs/DatalensChartkit/modules/extensions-manager/extensions-manager.js +42 -0
- package/ui/libs/DatalensChartkit/modules/html-generator/constants.js +205 -0
- package/ui/libs/DatalensChartkit/modules/html-generator/index.js +89 -0
- package/ui/libs/DatalensChartkit/modules/html-generator/utils.js +146 -0
- package/ui/libs/DatalensChartkit/modules/localStorage.js +23 -0
- package/ui/libs/DatalensChartkit/modules/menu/menu.js +70 -0
- package/ui/libs/DatalensChartkit/modules/perfomance.js +23 -0
- package/ui/libs/DatalensChartkit/modules/settings/settings.js +83 -0
- package/ui/libs/DatalensChartkit/modules/table.js +14 -0
- package/ui/libs/auth/refreshToken.js +27 -0
- package/ui/libs/axios/axios.js +41 -0
- package/ui/libs/axios/interceptors.js +13 -0
- package/ui/libs/datasetHelper/index.js +40 -0
- package/ui/libs/datasetSdk/index.js +118 -0
- package/ui/libs/index.js +12 -0
- package/ui/libs/logger/index.js +18 -0
- package/ui/libs/metrica/index.js +45 -0
- package/ui/libs/monaco/constants.js +6 -0
- package/ui/libs/monaco/dl-lang/constants.js +49 -0
- package/ui/libs/monaco/dl-lang/index.js +184 -0
- package/ui/libs/monaco/index.js +19 -0
- package/ui/libs/monaco/load-monaco-core.js +7 -0
- package/ui/libs/monaco/ql-lang/constants.js +487 -0
- package/ui/libs/monaco/ql-lang/index.js +142 -0
- package/ui/libs/monaco/theme-mappers.js +67 -0
- package/ui/libs/monaco/types.js +1 -0
- package/ui/libs/monaco/utils.js +41 -0
- package/ui/libs/navigateHelper/index.js +74 -0
- package/ui/libs/schematic-sdk/decorator.js +59 -0
- package/ui/libs/schematic-sdk/index.js +94 -0
- package/ui/libs/schematic-sdk/parse-error.js +92 -0
- package/ui/libs/sdk/index.js +118 -0
- package/ui/libs/userSettings/index.js +24 -0
- package/ui/modules/index.js +4 -0
- package/ui/modules/markdownProvider.js +65 -0
- package/ui/navigation/history.js +15 -0
- package/ui/navigation/index.js +33 -0
- package/ui/navigation/router.js +77 -0
- package/ui/registry/components/DefaultEmpty.js +10 -0
- package/ui/registry/functions/example-function.js +6 -0
- package/ui/registry/index.js +39 -0
- package/ui/registry/libs/index.js +7 -0
- package/ui/registry/libs/registryLibsPlugins.js +11 -0
- package/ui/registry/libs/schematic-sdk/index.js +18 -0
- package/ui/registry/units/auth/components-map.js +9 -0
- package/ui/registry/units/auth/functions-map.js +10 -0
- package/ui/registry/units/auth/index.js +13 -0
- package/ui/registry/units/auth/register.js +14 -0
- package/ui/registry/units/chart/components-map.js +8 -0
- package/ui/registry/units/chart/functions-map.js +19 -0
- package/ui/registry/units/chart/index.js +13 -0
- package/ui/registry/units/chart/register.js +21 -0
- package/ui/registry/units/collections/components-map.js +8 -0
- package/ui/registry/units/collections/functionts-map.js +11 -0
- package/ui/registry/units/collections/index.js +11 -0
- package/ui/registry/units/collections/register.js +15 -0
- package/ui/registry/units/common/components/Example/Example.js +16 -0
- package/ui/registry/units/common/components-map.js +44 -0
- package/ui/registry/units/common/constants/components.js +4 -0
- package/ui/registry/units/common/constants/functions.js +4 -0
- package/ui/registry/units/common/functions-map.js +73 -0
- package/ui/registry/units/common/index.js +13 -0
- package/ui/registry/units/common/register.js +109 -0
- package/ui/registry/units/common/types/components/IamAccessDialog.js +9 -0
- package/ui/registry/units/connections/components-map.js +8 -0
- package/ui/registry/units/connections/functions-map.js +16 -0
- package/ui/registry/units/connections/index.js +13 -0
- package/ui/registry/units/connections/register.js +23 -0
- package/ui/registry/units/dash/components-map.js +12 -0
- package/ui/registry/units/dash/functions-map.js +22 -0
- package/ui/registry/units/dash/index.js +13 -0
- package/ui/registry/units/dash/register.js +26 -0
- package/ui/registry/units/datasets/functions-map.js +8 -0
- package/ui/registry/units/datasets/index.js +9 -0
- package/ui/registry/units/datasets/register.js +10 -0
- package/ui/registry/units/docs/functions-map.js +7 -0
- package/ui/registry/units/docs/index.js +12 -0
- package/ui/registry/units/docs/register.js +8 -0
- package/ui/registry/units/editor/components-map.js +8 -0
- package/ui/registry/units/editor/constants/components.js +4 -0
- package/ui/registry/units/editor/constants/functions.js +4 -0
- package/ui/registry/units/editor/functions-map.js +9 -0
- package/ui/registry/units/editor/index.js +13 -0
- package/ui/registry/units/fieldEditor/components-map.js +10 -0
- package/ui/registry/units/fieldEditor/index.js +9 -0
- package/ui/registry/units/main/components-map.js +7 -0
- package/ui/registry/units/main/index.js +12 -0
- package/ui/registry/units/main/register.js +7 -0
- package/ui/registry/units/preview/components-map.js +7 -0
- package/ui/registry/units/preview/index.js +12 -0
- package/ui/registry/units/public/components-map.js +7 -0
- package/ui/registry/units/public/index.js +12 -0
- package/ui/registry/units/public/register.js +5 -0
- package/ui/registry/units/ql/components-map.js +8 -0
- package/ui/registry/units/ql/functions-map.js +8 -0
- package/ui/registry/units/ql/index.js +13 -0
- package/ui/registry/units/ql/register.js +14 -0
- package/ui/registry/units/wizard/components-map.js +7 -0
- package/ui/registry/units/wizard/index.js +12 -0
- package/ui/registry/units/wizard/register.js +5 -0
- package/ui/registry/units/workbooks/components-map.js +8 -0
- package/ui/registry/units/workbooks/functions-map.js +15 -0
- package/ui/registry/units/workbooks/index.js +13 -0
- package/ui/registry/units/workbooks/register.js +25 -0
- package/ui/registry/utils/components-registry.js +47 -0
- package/ui/registry/utils/register-app-plugins.js +33 -0
- package/ui/store/actions/asideHeader/index.js +83 -0
- package/ui/store/actions/asideHeader/navigation.js +23 -0
- package/ui/store/actions/chartWidget.js +92 -0
- package/ui/store/actions/collectionsStructure/common.js +715 -0
- package/ui/store/actions/collectionsStructure/export.js +267 -0
- package/ui/store/actions/collectionsStructure/index.js +35 -0
- package/ui/store/actions/collectionsStructure/showCollectionEntityErrorToast.js +30 -0
- package/ui/store/actions/collectionsStructure/templates.js +47 -0
- package/ui/store/actions/colorPaletteEditor.js +122 -0
- package/ui/store/actions/controlDialog/controlDialog.js +441 -0
- package/ui/store/actions/controlDialog/helpers.js +29 -0
- package/ui/store/actions/copyEntriesToWorkbook.js +105 -0
- package/ui/store/actions/dialog.js +218 -0
- package/ui/store/actions/editHistory.js +173 -0
- package/ui/store/actions/entryContent.js +240 -0
- package/ui/store/actions/landing.js +11 -0
- package/ui/store/actions/localStorageFallback.js +11 -0
- package/ui/store/actions/migrationToWorkbook.js +167 -0
- package/ui/store/actions/toaster.js +42 -0
- package/ui/store/actions/user.js +33 -0
- package/ui/store/actions/usersByIds.js +8 -0
- package/ui/store/configure.js +39 -0
- package/ui/store/constants/collectionsStructure.js +180 -0
- package/ui/store/constants/controlDialog.js +62 -0
- package/ui/store/constants/copyEntriesToWorkbook.js +28 -0
- package/ui/store/constants/editHistory.js +7 -0
- package/ui/store/constants/migrationToWorkbook.js +38 -0
- package/ui/store/index.js +8 -0
- package/ui/store/reducer-registry.js +55 -0
- package/ui/store/reducers/asideHeader.js +102 -0
- package/ui/store/reducers/collectionsStructure.js +960 -0
- package/ui/store/reducers/colorPaletteEditor.js +26 -0
- package/ui/store/reducers/controlDialog/controlDialog.d.ts +59 -0
- package/ui/store/reducers/controlDialog/controlDialog.js +455 -0
- package/ui/store/reducers/controlDialog/helpers.js +41 -0
- package/ui/store/reducers/copyEntriesToWorkbook.js +121 -0
- package/ui/store/reducers/dialog.js +63 -0
- package/ui/store/reducers/editHistory.js +127 -0
- package/ui/store/reducers/entryContent.js +87 -0
- package/ui/store/reducers/index.js +31 -0
- package/ui/store/reducers/landing.js +21 -0
- package/ui/store/reducers/localStorageFallback.js +19 -0
- package/ui/store/reducers/migrationToWorkbook.js +156 -0
- package/ui/store/reducers/user.js +41 -0
- package/ui/store/selectors/asideHeader.js +18 -0
- package/ui/store/selectors/collectionsStructure.js +205 -0
- package/ui/store/selectors/colorPaletteEditor.js +15 -0
- package/ui/store/selectors/controlDialog/controlDialog.d.ts +2 -0
- package/ui/store/selectors/controlDialog/controlDialog.js +16 -0
- package/ui/store/selectors/controlDialog.js +181 -0
- package/ui/store/selectors/copyEntriesToWorkbook.js +41 -0
- package/ui/store/selectors/editHistory.js +19 -0
- package/ui/store/selectors/entryContent.js +41 -0
- package/ui/store/selectors/landing.js +4 -0
- package/ui/store/selectors/localStorageFallback.js +4 -0
- package/ui/store/selectors/migrationToWorkbook.js +58 -0
- package/ui/store/selectors/user.js +51 -0
- package/ui/store/toolkit/chartkit/api.js +20 -0
- package/ui/store/toolkit/index.js +5 -0
- package/ui/store/typings/entryContent.js +14 -0
- package/ui/store/utils/asideHeader.js +16 -0
- package/ui/store/utils/collectionStructure.js +39 -0
- package/ui/store/utils/controlDialog.js +293 -0
- package/ui/store/utils/jdp.js +38 -0
- package/ui/store/utils/user.js +22 -0
- package/ui/typings/common.js +1 -0
- package/ui/typings/components.js +1 -0
- package/ui/typings/error.js +7 -0
- package/ui/typings/index.js +6 -0
- package/ui/units/auth/components/AuthPage/AuthPage.js +64 -0
- package/ui/units/auth/components/AuthPage/useAuthPageInit.js +48 -0
- package/ui/units/auth/components/ChangePasswordDialog/ChangePasswordDialog.js +198 -0
- package/ui/units/auth/components/ChangeUserRoleDialog/ChangeUserRoleDialog.js +109 -0
- package/ui/units/auth/components/DeleteUserDialog/DeleteUserDialog.js +42 -0
- package/ui/units/auth/components/EditUserProfileDialog/EditUserProfileDialog.js +128 -0
- package/ui/units/auth/components/LoginById/LoginById.js +24 -0
- package/ui/units/auth/components/LoginById/utils.js +5 -0
- package/ui/units/auth/components/Logout/Logout.js +42 -0
- package/ui/units/auth/components/Reload/Reload.js +51 -0
- package/ui/units/auth/components/Signin/Signin.js +78 -0
- package/ui/units/auth/components/Signin/components/Login.js +27 -0
- package/ui/units/auth/components/Signin/components/Password.js +27 -0
- package/ui/units/auth/components/Signup/Signup.js +75 -0
- package/ui/units/auth/components/Signup/components/Back.js +24 -0
- package/ui/units/auth/components/UserProfile/UserProfile.js +143 -0
- package/ui/units/auth/components/UserRoleLabel/UserRoleLabel.js +17 -0
- package/ui/units/auth/components/formControls/CustomRow.js +11 -0
- package/ui/units/auth/components/formControls/Email.js +30 -0
- package/ui/units/auth/components/formControls/FirstName.js +30 -0
- package/ui/units/auth/components/formControls/GeneratePasswordButton.js +20 -0
- package/ui/units/auth/components/formControls/LastName.js +30 -0
- package/ui/units/auth/components/formControls/Login.js +30 -0
- package/ui/units/auth/components/formControls/Password.js +34 -0
- package/ui/units/auth/components/formControls/RepeatPassword.js +31 -0
- package/ui/units/auth/components/formControls/Roles.js +39 -0
- package/ui/units/auth/components/formControls/RowButton.js +12 -0
- package/ui/units/auth/components/formControls/utils.js +36 -0
- package/ui/units/auth/constants/errors.js +6 -0
- package/ui/units/auth/constants/routes.js +11 -0
- package/ui/units/auth/containers/UserProfile/UserProfile.js +49 -0
- package/ui/units/auth/hooks/useClearReloadedQuery.js +26 -0
- package/ui/units/auth/hooks/useUserById.js +63 -0
- package/ui/units/auth/store/actions/common.js +12 -0
- package/ui/units/auth/store/actions/logout.js +21 -0
- package/ui/units/auth/store/actions/signin.js +44 -0
- package/ui/units/auth/store/actions/userInfoForm.js +100 -0
- package/ui/units/auth/store/actions/userProfile.js +203 -0
- package/ui/units/auth/store/actions/usersByIds.js +94 -0
- package/ui/units/auth/store/constants/common.js +6 -0
- package/ui/units/auth/store/constants/signin.js +4 -0
- package/ui/units/auth/store/constants/userInfoForm.js +10 -0
- package/ui/units/auth/store/constants/userProfile.js +38 -0
- package/ui/units/auth/store/constants/usersByIds.js +6 -0
- package/ui/units/auth/store/reducers/common.js +21 -0
- package/ui/units/auth/store/reducers/index.js +23 -0
- package/ui/units/auth/store/reducers/signin.js +21 -0
- package/ui/units/auth/store/reducers/userInfoForm.js +63 -0
- package/ui/units/auth/store/reducers/userProfile.js +198 -0
- package/ui/units/auth/store/reducers/usersByIds.js +41 -0
- package/ui/units/auth/store/selectors/common.js +6 -0
- package/ui/units/auth/store/selectors/signin.js +8 -0
- package/ui/units/auth/store/selectors/userInfoForm.js +30 -0
- package/ui/units/auth/store/selectors/userProfile.js +16 -0
- package/ui/units/auth/store/selectors/usersByIds.js +39 -0
- package/ui/units/auth/utils/fields.js +12 -0
- package/ui/units/auth/utils/getUsersRoles.js +7 -0
- package/ui/units/auth/utils/userProfile.js +12 -0
- package/ui/units/auth/utils/validation.js +42 -0
- package/ui/units/collections/components/CollectionActions/components/SharedEntryNotice/SharedEntryNotice.js +11 -0
- package/ui/units/collections/components/CollectionActions/utils.js +39 -0
- package/ui/units/collections/components/CollectionContent/utils.js +20 -0
- package/ui/units/collections/components/CollectionPage/hooks/useCreateWorkbookDialogHandlers.js +66 -0
- package/ui/units/collections/components/constants.js +118 -0
- package/ui/units/collections/components/helpers.js +58 -0
- package/ui/units/collections/store/actions/index.js +173 -0
- package/ui/units/collections/store/constants/index.js +40 -0
- package/ui/units/collections/store/reducers/index.js +191 -0
- package/ui/units/collections-navigation/components/CollectionBreadcrumbs/CollectionBreadcrumbs.js +64 -0
- package/ui/units/collections-navigation/components/CollectionBreadcrumbs/index.js +6 -0
- package/ui/units/collections-navigation/components/CollectionBreadcrumbs/utils.js +16 -0
- package/ui/units/collections-navigation/components/CollectionsNavigationApp/CollectionsNavigationApp.js +84 -0
- package/ui/units/collections-navigation/components/CollectionsNavigationApp/index.js +4 -0
- package/ui/units/collections-navigation/components/CollectionsNavigationLayout/CollectionsNavigationLayout.js +103 -0
- package/ui/units/collections-navigation/components/CollectionsNavigationLayout/index.js +4 -0
- package/ui/units/collections-navigation/constants/index.js +6 -0
- package/ui/units/collections-navigation/contexts/LayoutContext.js +10 -0
- package/ui/units/collections-navigation/store/actions/index.js +49 -0
- package/ui/units/collections-navigation/store/constants/index.js +18 -0
- package/ui/units/collections-navigation/store/reducers/index.js +63 -0
- package/ui/units/collections-navigation/store/selectors/index.js +19 -0
- package/ui/units/collections-navigation/utils/index.js +8 -0
- package/ui/units/connections/assets/icons/file-item.svg.js +5 -0
- package/ui/units/connections/assets/icons/gauth-btn-dark-en.svg.js +5 -0
- package/ui/units/connections/assets/icons/gauth-btn-dark-ru.svg.js +5 -0
- package/ui/units/connections/assets/icons/gauth-btn-light-en.svg.js +5 -0
- package/ui/units/connections/assets/icons/gauth-btn-light-ru.svg.js +5 -0
- package/ui/units/connections/components/ConnectorForm/ConnectorForm.js +52 -0
- package/ui/units/connections/components/ConnectorForm/FormActions/CheckParamsButton/CheckParamsButton.js +48 -0
- package/ui/units/connections/components/ConnectorForm/FormActions/FormActions.js +193 -0
- package/ui/units/connections/components/ConnectorForm/FormActions/SubmitButton/SubmitButton.js +22 -0
- package/ui/units/connections/components/ConnectorForm/FormActions/selectors.js +35 -0
- package/ui/units/connections/components/ConnectorForm/FormActions/utils.js +14 -0
- package/ui/units/connections/components/ConnectorForm/FormRow/FormItem.js +79 -0
- package/ui/units/connections/components/ConnectorForm/FormRow/FormRow.js +56 -0
- package/ui/units/connections/components/ConnectorForm/FormRow/PreparedRowItem.js +29 -0
- package/ui/units/connections/components/ConnectorForm/components/Checkbox/Checkbox.js +53 -0
- package/ui/units/connections/components/ConnectorForm/components/Datepicker/Datepicker.js +67 -0
- package/ui/units/connections/components/ConnectorForm/components/Description/Description.js +12 -0
- package/ui/units/connections/components/ConnectorForm/components/FileInput/FileInput.js +98 -0
- package/ui/units/connections/components/ConnectorForm/components/FileInput/utils.js +22 -0
- package/ui/units/connections/components/ConnectorForm/components/Input/Input.js +98 -0
- package/ui/units/connections/components/ConnectorForm/components/KeyValue/KeyValue.js +100 -0
- package/ui/units/connections/components/ConnectorForm/components/KeyValue/hooks.js +110 -0
- package/ui/units/connections/components/ConnectorForm/components/Label/Label.js +58 -0
- package/ui/units/connections/components/ConnectorForm/components/MarkdownItem/MarkdownItem.js +60 -0
- package/ui/units/connections/components/ConnectorForm/components/PlainText/PlainText.js +14 -0
- package/ui/units/connections/components/ConnectorForm/components/RadioButton/RadioButton.js +68 -0
- package/ui/units/connections/components/ConnectorForm/components/RadioGroup/RadioGroup.js +97 -0
- package/ui/units/connections/components/ConnectorForm/components/Select/Select.js +119 -0
- package/ui/units/connections/components/ConnectorForm/components/index.js +30 -0
- package/ui/units/connections/components/ConnectorForm/components/withControlWrap/withControlWrap.js +35 -0
- package/ui/units/connections/components/ConnectorForm/preparedRows/CacheTtlRow/CacheTtlRow.js +101 -0
- package/ui/units/connections/components/ConnectorForm/preparedRows/CollapseRow/CollapseRow.js +49 -0
- package/ui/units/connections/components/ConnectorForm/preparedRows/RawSQLLevelRow/RawSQLLevelRow.js +43 -0
- package/ui/units/connections/components/ConnectorForm/preparedRows/index.js +8 -0
- package/ui/units/connections/components/ConnectorForm/utils/index.js +25 -0
- package/ui/units/connections/components/ConnectorsList/ConnectorsList.js +126 -0
- package/ui/units/connections/components/ConnectorsList/ListItem.js +54 -0
- package/ui/units/connections/components/ConnectorsList/utils/index.js +36 -0
- package/ui/units/connections/components/ConnectorsList/utils/listItemRender.js +12 -0
- package/ui/units/connections/components/ErrorView/ErrorView.js +98 -0
- package/ui/units/connections/components/FormTitle/FormTitle.js +44 -0
- package/ui/units/connections/components/Page/ConnPanelActions.js +39 -0
- package/ui/units/connections/components/Page/Page.js +317 -0
- package/ui/units/connections/components/Page/components/ConnSettings.js +62 -0
- package/ui/units/connections/components/Page/components/CreateDatasetButton.js +58 -0
- package/ui/units/connections/components/Page/components/CreateQlChartButton.js +49 -0
- package/ui/units/connections/components/Page/components/DescriptionButton.js +75 -0
- package/ui/units/connections/components/Page/components/S3BasedConnButton.js +122 -0
- package/ui/units/connections/components/Page/components/UnloadConfirmation.js +34 -0
- package/ui/units/connections/components/Page/components/index.js +12 -0
- package/ui/units/connections/components/Page/constants.js +17 -0
- package/ui/units/connections/components/Page/filterContextMenuItems.js +25 -0
- package/ui/units/connections/components/Page/useAdditionalContextMenuItems.js +186 -0
- package/ui/units/connections/components/Page/useApiErrors.js +30 -0
- package/ui/units/connections/components/Page/utils.js +19 -0
- package/ui/units/connections/components/Router/Router.js +167 -0
- package/ui/units/connections/components/WrappedLoader/WrappedLoader.js +18 -0
- package/ui/units/connections/components/custom-forms/ChOverYT/ChOverYT.js +41 -0
- package/ui/units/connections/components/custom-forms/ChOverYT/ChoicePage.js +56 -0
- package/ui/units/connections/components/custom-forms/ChOverYT/ConnectorCard.js +43 -0
- package/ui/units/connections/components/custom-forms/ChOverYT/Notification.js +14 -0
- package/ui/units/connections/components/custom-forms/ChOverYT/constants.js +10 -0
- package/ui/units/connections/components/custom-forms/File/File.js +78 -0
- package/ui/units/connections/components/custom-forms/File/components/AddFileButton.js +31 -0
- package/ui/units/connections/components/custom-forms/File/components/FilesList.js +83 -0
- package/ui/units/connections/components/custom-forms/File/components/ListItem/FileItem.js +67 -0
- package/ui/units/connections/components/custom-forms/File/components/ListItem/ListItem.js +12 -0
- package/ui/units/connections/components/custom-forms/File/components/ListItem/SourceItem.js +99 -0
- package/ui/units/connections/components/custom-forms/File/components/ReplaceSourceButton.js +32 -0
- package/ui/units/connections/components/custom-forms/File/components/Workspace/ColumnFilter.js +20 -0
- package/ui/units/connections/components/custom-forms/File/components/Workspace/FileSettings.js +143 -0
- package/ui/units/connections/components/custom-forms/File/components/Workspace/TypeSelect.js +73 -0
- package/ui/units/connections/components/custom-forms/File/components/Workspace/Workspace.js +145 -0
- package/ui/units/connections/components/custom-forms/File/components/index.js +8 -0
- package/ui/units/connections/components/custom-forms/File/context.js +24 -0
- package/ui/units/connections/components/custom-forms/File/useHandlers.js +176 -0
- package/ui/units/connections/components/custom-forms/File/utils.js +197 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/GSheetsV2.js +28 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/components/AddSection.js +78 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/components/AdditionalTitleContent/GAuthButton.js +36 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/components/AdditionalTitleContent/index.js +77 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/GSheetSourceInfoView.js +37 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/GSheetSourceView.js +48 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/UploadedGSheetView.js +50 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/index.js +48 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/components/SheetsList.js +64 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/EmptyWorkspace.js +16 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/GSheetSourceInfoWorkspace.js +13 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/GSheetSourceWorkspace.js +51 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/GSheetWorkspace.js +13 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/Workspace.js +100 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/utils.js +28 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/components/index.js +8 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/containers/ActionBarContainer.js +88 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/containers/SheetsListContainer.js +232 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/containers/WorkspaceContainer.js +53 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/containers/index.js +8 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/containers/useGSheetDialogs.js +176 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/containers/useGoogleAuth.js +35 -0
- package/ui/units/connections/components/custom-forms/GSheetsV2/containers/utils.js +53 -0
- package/ui/units/connections/components/custom-forms/Yadocs/Yadocs.js +28 -0
- package/ui/units/connections/components/custom-forms/Yadocs/components/AdditionalTitleContent.js +54 -0
- package/ui/units/connections/components/custom-forms/Yadocs/components/DialogAddDocument/DialogAddDocument.js +189 -0
- package/ui/units/connections/components/custom-forms/Yadocs/components/DocsList.js +70 -0
- package/ui/units/connections/components/custom-forms/Yadocs/components/Workspace.js +158 -0
- package/ui/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/UploadedYadocView.js +50 -0
- package/ui/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/YadocSourceInfoView.js +35 -0
- package/ui/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/YadocSourceView.js +48 -0
- package/ui/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/index.js +43 -0
- package/ui/units/connections/components/custom-forms/Yadocs/components/index.js +10 -0
- package/ui/units/connections/components/custom-forms/Yadocs/containers/ActionBarContainer.js +103 -0
- package/ui/units/connections/components/custom-forms/Yadocs/containers/DocsListContainer.js +247 -0
- package/ui/units/connections/components/custom-forms/Yadocs/containers/WorkspaceContainer.js +42 -0
- package/ui/units/connections/components/custom-forms/Yadocs/containers/index.js +8 -0
- package/ui/units/connections/components/custom-forms/Yadocs/containers/useYadocsDialogs.js +220 -0
- package/ui/units/connections/components/custom-forms/components/ButtonLogout/ButtonLogout.js +18 -0
- package/ui/units/connections/components/custom-forms/components/ColumnFilter/ColumnFilter.js +21 -0
- package/ui/units/connections/components/custom-forms/components/ColumnsHeaderSwitcher/ColumnsHeaderSwitcher.js +44 -0
- package/ui/units/connections/components/custom-forms/components/DialogWithInput/DialogWithInput.js +74 -0
- package/ui/units/connections/components/custom-forms/components/DialogWithInput/index.js +7 -0
- package/ui/units/connections/components/custom-forms/components/ListItem/ActionDeleteView.js +19 -0
- package/ui/units/connections/components/custom-forms/components/ListItem/ActionErrorView.js +44 -0
- package/ui/units/connections/components/custom-forms/components/ListItem/ActionMoreView.js +67 -0
- package/ui/units/connections/components/custom-forms/components/ListItem/ListItem.js +24 -0
- package/ui/units/connections/components/custom-forms/components/ListItem/ListItemActions.js +53 -0
- package/ui/units/connections/components/custom-forms/components/index.js +12 -0
- package/ui/units/connections/components/custom-forms/hooks/useFileSourceTableWidgetData.js +40 -0
- package/ui/units/connections/components/custom-forms/index.js +10 -0
- package/ui/units/connections/components/custom-forms/utils/render.js +69 -0
- package/ui/units/connections/components/dialogs/Confirm/Confirm.js +20 -0
- package/ui/units/connections/components/dialogs/Confirm/index.js +7 -0
- package/ui/units/connections/components/dialogs/CreateConnection/CreateConnection.js +40 -0
- package/ui/units/connections/components/dialogs/CreateConnectionInWbOrCollection/CreateConnectionInWbOrCollection.js +40 -0
- package/ui/units/connections/components/dialogs/S3Source/DialogS3Source.js +102 -0
- package/ui/units/connections/components/dialogs/S3Source/ListHeader.js +28 -0
- package/ui/units/connections/components/dialogs/S3Source/ListItem.js +16 -0
- package/ui/units/connections/components/dialogs/S3Source/index.js +7 -0
- package/ui/units/connections/components/dialogs/S3Source/utils.js +47 -0
- package/ui/units/connections/components/dialogs/index.js +10 -0
- package/ui/units/connections/components/hooks/index.js +4 -0
- package/ui/units/connections/components/hooks/useCreationHandler/index.js +75 -0
- package/ui/units/connections/components/index.js +18 -0
- package/ui/units/connections/constants/form.js +50 -0
- package/ui/units/connections/constants/index.js +18 -0
- package/ui/units/connections/constants/validation.js +10 -0
- package/ui/units/connections/index.js +35 -0
- package/ui/units/connections/store/actions/api.js +347 -0
- package/ui/units/connections/store/actions/base.js +359 -0
- package/ui/units/connections/store/actions/connection.d.ts +12 -0
- package/ui/units/connections/store/actions/connection.js +27 -0
- package/ui/units/connections/store/actions/data.d.ts +8 -0
- package/ui/units/connections/store/actions/data.js +82 -0
- package/ui/units/connections/store/actions/file.js +464 -0
- package/ui/units/connections/store/actions/gsheet/index.js +257 -0
- package/ui/units/connections/store/actions/gsheet/misc-actions.js +178 -0
- package/ui/units/connections/store/actions/gsheet/utils.js +171 -0
- package/ui/units/connections/store/actions/index.d.ts +28 -0
- package/ui/units/connections/store/actions/index.js +466 -0
- package/ui/units/connections/store/actions/s3-based.js +100 -0
- package/ui/units/connections/store/actions/yadoc/index.js +211 -0
- package/ui/units/connections/store/actions/yadoc/misc-actions.js +183 -0
- package/ui/units/connections/store/actions/yadoc/utils.js +165 -0
- package/ui/units/connections/store/constants.js +64 -0
- package/ui/units/connections/store/index.js +26 -0
- package/ui/units/connections/store/reducers/index.js +370 -0
- package/ui/units/connections/store/selectors/connection-data.js +24 -0
- package/ui/units/connections/store/selectors/form.js +32 -0
- package/ui/units/connections/store/selectors/gsheet.js +27 -0
- package/ui/units/connections/store/selectors/index.js +76 -0
- package/ui/units/connections/store/selectors/initial-form.js +6 -0
- package/ui/units/connections/store/selectors/inner-form.js +13 -0
- package/ui/units/connections/store/selectors/yadocs.js +23 -0
- package/ui/units/connections/store/typings/file.js +1 -0
- package/ui/units/connections/store/typings/gsheet.js +1 -0
- package/ui/units/connections/store/typings/index.js +4 -0
- package/ui/units/connections/store/typings/s3-based.js +1 -0
- package/ui/units/connections/store/typings/yadocs.js +1 -0
- package/ui/units/connections/store/utils/connectors.js +43 -0
- package/ui/units/connections/store/utils/entry.js +15 -0
- package/ui/units/connections/store/utils/file.js +78 -0
- package/ui/units/connections/store/utils/forms.js +110 -0
- package/ui/units/connections/store/utils/index.js +22 -0
- package/ui/units/connections/store/utils/validation.js +97 -0
- package/ui/units/connections/utils/common.js +36 -0
- package/ui/units/connections/utils/connectors.js +35 -0
- package/ui/units/connections/utils/entry.js +16 -0
- package/ui/units/connections/utils/gsheet.js +59 -0
- package/ui/units/connections/utils/i18n.js +15 -0
- package/ui/units/connections/utils/index.js +23 -0
- package/ui/units/connections/utils/validation.js +28 -0
- package/ui/units/connections/utils/yadocs.js +60 -0
- package/ui/units/dash/components/DashActionPanel/DashActionPanel.js +306 -0
- package/ui/units/dash/components/DashActionPanel/DashActionPanelMobile.js +40 -0
- package/ui/units/dash/components/DashActionPanel/Description/Description.js +94 -0
- package/ui/units/dash/components/DashActionPanel/EditControls/EditControls.js +135 -0
- package/ui/units/dash/components/DashActionPanel/SaveDropDown/SaveDropDown.js +54 -0
- package/ui/units/dash/components/DashActionPanel/ViewControls/ViewControls.js +52 -0
- package/ui/units/dash/components/DashActionPanel/helpers.js +34 -0
- package/ui/units/dash/components/EmptyState/EmptyState.js +56 -0
- package/ui/units/dash/components/GlobalSelectorIcon/GlobalSelectorIcon.js +32 -0
- package/ui/units/dash/components/Loader/Loader.js +14 -0
- package/ui/units/dash/components/NavigationInput/InputLink/InputLink.js +165 -0
- package/ui/units/dash/components/NavigationInput/NavigationInput.js +120 -0
- package/ui/units/dash/components/ParamsSettings/ParamsRow.js +191 -0
- package/ui/units/dash/components/ParamsSettings/ParamsSettings.js +142 -0
- package/ui/units/dash/components/ParamsSettings/helpers.js +80 -0
- package/ui/units/dash/containers/App/App.js +96 -0
- package/ui/units/dash/containers/Body/Body.js +549 -0
- package/ui/units/dash/containers/Body/LazyBody.js +5 -0
- package/ui/units/dash/containers/Body/components/Content/Content.js +187 -0
- package/ui/units/dash/containers/Body/components/Content/hooks/useCopiedData.js +28 -0
- package/ui/units/dash/containers/Body/components/DashkitWrapper/DashkitWrapper.js +279 -0
- package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useConfig.js +37 -0
- package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useDashKitContext.js +23 -0
- package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useDashkitRef.js +14 -0
- package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useDataProviderContext.js +22 -0
- package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useHashStates.js +93 -0
- package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useOverlay/getGearGlobalIcon.js +41 -0
- package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useOverlay/helpers.js +31 -0
- package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useOverlay/useOverlay.js +213 -0
- package/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/usePreparedCopyItemOptions.js +26 -0
- package/ui/units/dash/containers/Body/context.js +49 -0
- package/ui/units/dash/containers/Dash/Dash.js +384 -0
- package/ui/units/dash/containers/DashError/DashError.js +16 -0
- package/ui/units/dash/containers/DashHotkes/DashHotkeys.js +58 -0
- package/ui/units/dash/containers/Dialogs/DialogEditQuery/DialogEditQuery.js +93 -0
- package/ui/units/dash/containers/Dialogs/DialogEditQuery/QueryEditor/QueryEditor.js +26 -0
- package/ui/units/dash/containers/Dialogs/DialogEditQuery/QueryError/QueryError.js +15 -0
- package/ui/units/dash/containers/Dialogs/DialogEditQuery/helpers/validate-query.js +7 -0
- package/ui/units/dash/containers/Dialogs/Dialogs.js +99 -0
- package/ui/units/dash/containers/Dialogs/Settings/Settings.js +273 -0
- package/ui/units/dash/containers/Dialogs/Settings/components/AutoRefresh.js +66 -0
- package/ui/units/dash/containers/Dialogs/Settings/components/Display.js +104 -0
- package/ui/units/dash/containers/Dialogs/Settings/components/LoadPriority.js +39 -0
- package/ui/units/dash/containers/Dialogs/Settings/components/MaxConnection.js +50 -0
- package/ui/units/dash/containers/Dialogs/Settings/components/OtherSettings.js +88 -0
- package/ui/units/dash/containers/Dialogs/Settings/components/Params.js +73 -0
- package/ui/units/dash/containers/Dialogs/Settings/components/Row.js +10 -0
- package/ui/units/dash/containers/Dialogs/Settings/components/Title.js +13 -0
- package/ui/units/dash/containers/Dialogs/Settings/utils.js +6 -0
- package/ui/units/dash/containers/Dialogs/Tabs/EditedTabItem.js +30 -0
- package/ui/units/dash/containers/Dialogs/Tabs/PopupWidgetsOrder/PopupWidgetsOrder.js +163 -0
- package/ui/units/dash/containers/Dialogs/Tabs/PopupWidgetsOrder/helpers.js +132 -0
- package/ui/units/dash/containers/Dialogs/Tabs/TabItem.js +171 -0
- package/ui/units/dash/containers/Dialogs/Tabs/Tabs.js +254 -0
- package/ui/units/dash/containers/Dialogs/components/ColorInputsGroup/ColorInputsGroup.js +71 -0
- package/ui/units/dash/containers/Dialogs/components/ColorPalette/ColorItem/ColorItem.js +38 -0
- package/ui/units/dash/containers/Dialogs/components/ColorPalette/ColorPalette.js +188 -0
- package/ui/units/dash/containers/Dialogs/components/ColorPicker/ColorPicker.js +81 -0
- package/ui/units/dash/containers/Dialogs/components/ColorPickerInputWithPreset/ColorPickerInputWithPreset.js +86 -0
- package/ui/units/dash/containers/Dialogs/components/PaletteBackground/PaletteBackground.js +77 -0
- package/ui/units/dash/containers/Dialogs/components/PaletteText/PaletteText.js +54 -0
- package/ui/units/dash/containers/Dialogs/utils.js +26 -0
- package/ui/units/dash/containers/FixedHeader/FixedHeader.js +213 -0
- package/ui/units/dash/containers/FixedHeader/FixedHeaderMobile.js +62 -0
- package/ui/units/dash/containers/Header/Header.js +71 -0
- package/ui/units/dash/containers/MobileFloatMenu/MobileFloatMenu.js +63 -0
- package/ui/units/dash/containers/TableOfContent/TableOfContent.js +218 -0
- package/ui/units/dash/containers/TableOfContent/helpers.js +25 -0
- package/ui/units/dash/containers/Tabs/Tabs.js +58 -0
- package/ui/units/dash/hooks/useIframeFeatures.js +57 -0
- package/ui/units/dash/modules/constants.js +87 -0
- package/ui/units/dash/modules/helpers.js +375 -0
- package/ui/units/dash/modules/postMessage.js +28 -0
- package/ui/units/dash/modules/pushStats.js +26 -0
- package/ui/units/dash/store/actions/base/actions.d.ts +21 -0
- package/ui/units/dash/store/actions/base/actions.js +287 -0
- package/ui/units/dash/store/actions/base/helpers.js +104 -0
- package/ui/units/dash/store/actions/base/save.d.ts +14 -0
- package/ui/units/dash/store/actions/base/save.js +64 -0
- package/ui/units/dash/store/actions/dash.js +13 -0
- package/ui/units/dash/store/actions/dashTyped.js +855 -0
- package/ui/units/dash/store/actions/dialogs/actions.js +50 -0
- package/ui/units/dash/store/actions/dialogs/dialog-edit-query.js +10 -0
- package/ui/units/dash/store/actions/helpers.js +303 -0
- package/ui/units/dash/store/actions/relations/actions.js +90 -0
- package/ui/units/dash/store/constants/dashActionTypes.js +12 -0
- package/ui/units/dash/store/constants/index.js +6 -0
- package/ui/units/dash/store/reducers/dash.js +353 -0
- package/ui/units/dash/store/reducers/dashHelpers.js +333 -0
- package/ui/units/dash/store/reducers/dashTypedReducer.js +315 -0
- package/ui/units/dash/store/selectors/dashTypedSelectors.js +189 -0
- package/ui/units/dash/store/utils.js +82 -0
- package/ui/units/dash/typings/dash.js +9 -0
- package/ui/units/dash/utils/context.js +5 -0
- package/ui/units/dash/utils/customEvents.js +11 -0
- package/ui/units/dash/utils/dashkitProps.js +16 -0
- package/ui/units/dash/utils/getTabId.js +6 -0
- package/ui/units/dash/utils/scrollUtils.js +38 -0
- package/ui/units/dash/utils/selectors.js +104 -0
- package/ui/units/dash/utils/url.js +24 -0
- package/ui/units/datasets/components/Avatar/Avatar.js +114 -0
- package/ui/units/datasets/components/ColorsDialog/ColorsDialog.js +232 -0
- package/ui/units/datasets/components/ContainerLoader/ContainerLoader.js +47 -0
- package/ui/units/datasets/components/DatasetPanel/DatasetPanel.js +145 -0
- package/ui/units/datasets/components/DatasetPanel/helpers.js +28 -0
- package/ui/units/datasets/components/DatasetRouter/DatasetRouter.js +129 -0
- package/ui/units/datasets/components/DatasetRouter/UnloadConfirmation.js +43 -0
- package/ui/units/datasets/components/DatasetTabFieldList/DatasetTabFieldList.js +54 -0
- package/ui/units/datasets/components/DatasetTabFieldList/components/FieldRow/FieldRow.js +97 -0
- package/ui/units/datasets/components/DatasetTabFieldList/components/TitleColumn/TitleColumn.js +16 -0
- package/ui/units/datasets/components/DatasetTabFieldList/components/TypeColumn/TypeColumn.js +21 -0
- package/ui/units/datasets/components/DatasetTabFieldList/components/ValidationColumn/ValidationColumn.js +17 -0
- package/ui/units/datasets/components/DatasetTabFieldList/components/ValueColumn/ValueColumn.js +11 -0
- package/ui/units/datasets/components/DatasetTabFieldList/constants.js +12 -0
- package/ui/units/datasets/components/DatasetTabFieldList/helpers.js +59 -0
- package/ui/units/datasets/components/DatasetTabSection/DatasetTabSection.js +69 -0
- package/ui/units/datasets/components/DatasetTable/DatasetTable.js +446 -0
- package/ui/units/datasets/components/DatasetTable/columns/Aggregation.js +37 -0
- package/ui/units/datasets/components/DatasetTable/columns/Cast.js +37 -0
- package/ui/units/datasets/components/DatasetTable/columns/Description.js +40 -0
- package/ui/units/datasets/components/DatasetTable/columns/FieldSettings.js +60 -0
- package/ui/units/datasets/components/DatasetTable/columns/Hidden.js +46 -0
- package/ui/units/datasets/components/DatasetTable/columns/Id.js +41 -0
- package/ui/units/datasets/components/DatasetTable/columns/IndexColumn.js +60 -0
- package/ui/units/datasets/components/DatasetTable/columns/More.js +32 -0
- package/ui/units/datasets/components/DatasetTable/columns/Rls.js +40 -0
- package/ui/units/datasets/components/DatasetTable/columns/Source.js +44 -0
- package/ui/units/datasets/components/DatasetTable/columns/Title.js +45 -0
- package/ui/units/datasets/components/DatasetTable/columns/index.js +22 -0
- package/ui/units/datasets/components/DatasetTable/components/AggregationSelect/AggregationSelect.js +114 -0
- package/ui/units/datasets/components/DatasetTable/components/BatchActionPanel/BatchActionPanel.js +131 -0
- package/ui/units/datasets/components/DatasetTable/components/BatchActionPanel/components/DialogChangeDatasetFields/DialogChangeDatasetFields.js +103 -0
- package/ui/units/datasets/components/DatasetTable/components/DisplaySettings.js +32 -0
- package/ui/units/datasets/components/DatasetTable/components/FieldActionsPopup.js +64 -0
- package/ui/units/datasets/components/DatasetTable/components/ObservedDataTable.js +31 -0
- package/ui/units/datasets/components/DatasetTable/components/TableTextInput.js +45 -0
- package/ui/units/datasets/components/DatasetTable/components/TypeSelect/TypeSelect.js +87 -0
- package/ui/units/datasets/components/DatasetTable/components/index.js +12 -0
- package/ui/units/datasets/components/DatasetTable/constants.js +50 -0
- package/ui/units/datasets/components/DatasetTable/fields.d.ts +2 -0
- package/ui/units/datasets/components/DatasetTable/fields.js +15 -0
- package/ui/units/datasets/components/DatasetTable/predicates.d.ts +2 -0
- package/ui/units/datasets/components/DatasetTable/predicates.js +8 -0
- package/ui/units/datasets/components/DatasetTable/sort.d.ts +8 -0
- package/ui/units/datasets/components/DatasetTable/sort.js +58 -0
- package/ui/units/datasets/components/DatasetTable/utils.d.ts +36 -0
- package/ui/units/datasets/components/DatasetTable/utils.js +113 -0
- package/ui/units/datasets/components/DescriptionButton/DescriptionButton.js +64 -0
- package/ui/units/datasets/components/DialogCreateDataset/DialogCreateDataset.js +51 -0
- package/ui/units/datasets/components/DragAndDrop/DragAndDrop.js +19 -0
- package/ui/units/datasets/components/FieldSettingsDialog/FieldSettingsDialog.js +192 -0
- package/ui/units/datasets/components/FilterSection/FilterSection.js +72 -0
- package/ui/units/datasets/components/FilterSection/helpers.js +81 -0
- package/ui/units/datasets/components/FilterSection/types.js +7 -0
- package/ui/units/datasets/components/FilterSection/useFilterSection.js +85 -0
- package/ui/units/datasets/components/ParametersSection/ParametersSection.js +57 -0
- package/ui/units/datasets/components/ParametersSection/components/CopyToClipboard/CopyToClipboardMenuItem.js +14 -0
- package/ui/units/datasets/components/ParametersSection/components/HeaderWithTooltip/HeaderWithTooltip.js +37 -0
- package/ui/units/datasets/components/ParametersSection/helpers.js +116 -0
- package/ui/units/datasets/components/ParametersSection/useParametersSection.js +38 -0
- package/ui/units/datasets/components/PreviewHeader/PreviewHeader.js +128 -0
- package/ui/units/datasets/components/PreviewHeader/constants.js +4 -0
- package/ui/units/datasets/components/PreviewHeader/utils.js +8 -0
- package/ui/units/datasets/components/PreviewTable/PreviewTable.js +197 -0
- package/ui/units/datasets/components/RLSDialog/RLSDialog.js +95 -0
- package/ui/units/datasets/components/RelationDialog/RelationDialog.js +490 -0
- package/ui/units/datasets/components/RelationsMap/RelationsMap.js +340 -0
- package/ui/units/datasets/components/SelectSourcePrototypes/SelectSourcePrototypes.js +471 -0
- package/ui/units/datasets/components/SelectSourcePrototypes/SourcesTable.js +194 -0
- package/ui/units/datasets/components/SelectSourcePrototypes/constants.js +8 -0
- package/ui/units/datasets/components/SelectSourcePrototypes/utils.js +11 -0
- package/ui/units/datasets/components/Source/Source.js +132 -0
- package/ui/units/datasets/components/SourceEditorDialog/SourceEditorDialog.js +239 -0
- package/ui/units/datasets/components/SourceEditorDialog/components/EditorFormItem.js +122 -0
- package/ui/units/datasets/components/SourceEditorDialog/components/Form.js +86 -0
- package/ui/units/datasets/components/SourceEditorDialog/components/InputFormItem.js +86 -0
- package/ui/units/datasets/components/SourceEditorDialog/components/ParamSelector.js +165 -0
- package/ui/units/datasets/components/SourceEditorDialog/components/SelectFormItem.js +46 -0
- package/ui/units/datasets/components/SourceEditorDialog/components/SourceError.js +37 -0
- package/ui/units/datasets/components/SourceEditorDialog/components/SourceHelpTooltip.js +160 -0
- package/ui/units/datasets/components/SourceEditorDialog/components/SourceSwitcher.js +30 -0
- package/ui/units/datasets/components/SourceEditorDialog/components/index.js +12 -0
- package/ui/units/datasets/components/SourceEditorDialog/utils/helpers.js +198 -0
- package/ui/units/datasets/components/SourceEditorDialog/utils/index.js +19 -0
- package/ui/units/datasets/components/SourceEditorDialog/utils/validation.js +59 -0
- package/ui/units/datasets/components/Veil/Veil.js +27 -0
- package/ui/units/datasets/components/dialogs/DatasetFieldInspector/DatasetFieldInspector.js +32 -0
- package/ui/units/datasets/components/dialogs/index.js +4 -0
- package/ui/units/datasets/components/hoc/AvatarDnD.js +85 -0
- package/ui/units/datasets/constants/datasets.js +55 -0
- package/ui/units/datasets/constants/index.js +260 -0
- package/ui/units/datasets/containers/Dataset/ActionPanelRightItems.js +190 -0
- package/ui/units/datasets/containers/Dataset/Dataset.js +692 -0
- package/ui/units/datasets/containers/Dataset/constants.js +4 -0
- package/ui/units/datasets/containers/Dataset/getAdditionalContextMenuItems.js +144 -0
- package/ui/units/datasets/containers/Dataset/useHistoryActions.js +71 -0
- package/ui/units/datasets/containers/DatasetEditor/DatasetEditor.js +398 -0
- package/ui/units/datasets/containers/DatasetEditor/utils.js +19 -0
- package/ui/units/datasets/containers/DatasetError/DatasetError.js +100 -0
- package/ui/units/datasets/containers/DatasetFilters/DatasetFilters.js +64 -0
- package/ui/units/datasets/containers/DatasetPage/DatasetPage.d.ts +24 -0
- package/ui/units/datasets/containers/DatasetPage/DatasetPage.js +73 -0
- package/ui/units/datasets/containers/DatasetPage/DatasetPageContext.d.ts +10 -0
- package/ui/units/datasets/containers/DatasetPage/DatasetPageContext.js +7 -0
- package/ui/units/datasets/containers/DatasetParameters/DatasetParameters.js +29 -0
- package/ui/units/datasets/containers/DatasetPreview/DatasetPreview.js +76 -0
- package/ui/units/datasets/containers/DatasetSources/DatasetSources.js +706 -0
- package/ui/units/datasets/containers/DatasetTabViewer/DatasetTabViewer.js +46 -0
- package/ui/units/datasets/helpers/dataset-error-helpers.js +89 -0
- package/ui/units/datasets/helpers/datasets.js +32 -0
- package/ui/units/datasets/helpers/utils.js +140 -0
- package/ui/units/datasets/helpers/validation.js +11 -0
- package/ui/units/datasets/icons/join-full-outer.svg.js +5 -0
- package/ui/units/datasets/icons/join-inner.svg.js +5 -0
- package/ui/units/datasets/icons/join-left.svg.js +5 -0
- package/ui/units/datasets/icons/join-right.svg.js +5 -0
- package/ui/units/datasets/store/actions/creators/datasetTyped.js +1962 -0
- package/ui/units/datasets/store/actions/creators/dialogs.js +50 -0
- package/ui/units/datasets/store/actions/creators/index.js +89 -0
- package/ui/units/datasets/store/actions/creators/utils.js +48 -0
- package/ui/units/datasets/store/actions/types/dataset.js +178 -0
- package/ui/units/datasets/store/constants.js +124 -0
- package/ui/units/datasets/store/edit-history-middleware.js +32 -0
- package/ui/units/datasets/store/reducers/dataset.js +1318 -0
- package/ui/units/datasets/store/reducers/index.js +25 -0
- package/ui/units/datasets/store/reducers/utils/index.js +34 -0
- package/ui/units/datasets/store/selectors/dataset.js +235 -0
- package/ui/units/datasets/store/selectors/datasetTyped.js +4 -0
- package/ui/units/datasets/store/selectors/index.js +67 -0
- package/ui/units/preview/components/App/App.js +80 -0
- package/ui/units/preview/components/IndexPage/IndexPage.js +15 -0
- package/ui/units/preview/components/Preview/Preview.js +190 -0
- package/ui/units/preview/hooks/useChartAutoupdate.js +33 -0
- package/ui/units/preview/modules/constants/constants.js +6 -0
- package/ui/units/preview/modules/helpers.js +17 -0
- package/ui/units/ql/components/Dialogs/Settings/Settings.js +88 -0
- package/ui/units/ql/components/Grid/Grid.js +120 -0
- package/ui/units/ql/components/Grid/GridPane/GridPane.js +15 -0
- package/ui/units/ql/components/Grid/GridPane/GridPaneView/GridPaneView.js +54 -0
- package/ui/units/ql/components/Grid/GridPane/GridPaneView/GridPaneViewContent.js +31 -0
- package/ui/units/ql/configs/chart-types.js +15 -0
- package/ui/units/ql/constants/index.js +93 -0
- package/ui/units/ql/containers/App/App.js +65 -0
- package/ui/units/ql/containers/PaneMain/PaneMain.js +33 -0
- package/ui/units/ql/containers/PaneMain/ScreenEditor/ScreenEditor.js +265 -0
- package/ui/units/ql/containers/PaneMain/ScreenEditor/TabParams/DefaultValue.js +171 -0
- package/ui/units/ql/containers/PaneMain/ScreenEditor/TabParams/OverridenValue.js +24 -0
- package/ui/units/ql/containers/PaneMain/ScreenEditor/TabParams/TabParams.js +348 -0
- package/ui/units/ql/containers/PaneMain/ScreenEditor/TabParams/utils.js +18 -0
- package/ui/units/ql/containers/PaneMain/ScreenEditor/TabQuery/ScreenPromQL/ScreenPromQL.js +482 -0
- package/ui/units/ql/containers/PaneMain/ScreenEditor/TabQuery/ScreenSQL/ScreenSQL.js +210 -0
- package/ui/units/ql/containers/PaneMain/ScreenEditor/TabQuery/TabQuery.js +56 -0
- package/ui/units/ql/containers/PanePreview/PanePreview.js +198 -0
- package/ui/units/ql/containers/PaneTablePreview/PaneTablePreview.js +48 -0
- package/ui/units/ql/containers/PaneVisualization/PaneVisualization.js +45 -0
- package/ui/units/ql/containers/QL/QL.js +187 -0
- package/ui/units/ql/containers/QL/QLActionPanel/QLActionPanel.js +294 -0
- package/ui/units/ql/containers/QL/QLActionPanel/useQLActionPanel.js +153 -0
- package/ui/units/ql/containers/QL/ViewSetup/ViewSetup.js +308 -0
- package/ui/units/ql/modules/helpers.js +28 -0
- package/ui/units/ql/store/actions/dialog.js +30 -0
- package/ui/units/ql/store/actions/ql.js +990 -0
- package/ui/units/ql/store/reducers/index.js +14 -0
- package/ui/units/ql/store/reducers/ql.d.ts +483 -0
- package/ui/units/ql/store/reducers/ql.js +581 -0
- package/ui/units/ql/store/selectors/ql.d.ts +433 -0
- package/ui/units/ql/store/selectors/ql.js +196 -0
- package/ui/units/ql/store/utils/grid.js +133 -0
- package/ui/units/ql/store/utils/monitoring.js +179 -0
- package/ui/units/ql/utils/chart-settings.js +20 -0
- package/ui/units/ql/utils/connectionts.js +7 -0
- package/ui/units/ql/utils/query.js +14 -0
- package/ui/units/ql/utils/visualization/getAvailableQlVisualizations.js +43 -0
- package/ui/units/ql/utils/visualization/getDefaultQlVisualization.js +11 -0
- package/ui/units/ql/utils/visualization/getQlVisualization.js +28 -0
- package/ui/units/ql/utils/visualization/index.js +8 -0
- package/ui/units/service-settings/components/AppearanceSettings/AppearanceSettings.js +41 -0
- package/ui/units/service-settings/components/CreateUserForm/CreateUserForm.js +96 -0
- package/ui/units/service-settings/components/SectionGroup/SectionGroup.js +16 -0
- package/ui/units/service-settings/components/UsersList/LabelsList/LabelsList.js +66 -0
- package/ui/units/service-settings/components/UsersList/UsersFilters/UsersFilters.js +75 -0
- package/ui/units/service-settings/components/UsersList/UsersList.js +255 -0
- package/ui/units/service-settings/components/UsersList/constants.js +4 -0
- package/ui/units/service-settings/components/UsersList/utils.js +79 -0
- package/ui/units/service-settings/containers/AccessErrorPage/AccessErrorPage.js +20 -0
- package/ui/units/service-settings/containers/App/App.js +31 -0
- package/ui/units/service-settings/containers/CreateProfilePage/CreateProfilePage.js +35 -0
- package/ui/units/service-settings/containers/MainPage/MainPage.js +127 -0
- package/ui/units/service-settings/containers/UserProfilePage/UserProfilePage.js +51 -0
- package/ui/units/service-settings/store/actions/serviceSettings.js +109 -0
- package/ui/units/service-settings/store/constants/serviceSettings.js +24 -0
- package/ui/units/service-settings/store/reducers/serviceSettings.js +129 -0
- package/ui/units/service-settings/store/selectors/serviceSettings.js +18 -0
- package/ui/units/wizard/actions/dataset.js +171 -0
- package/ui/units/wizard/actions/dialog.js +423 -0
- package/ui/units/wizard/actions/dialogColor.js +101 -0
- package/ui/units/wizard/actions/dndItems.d.ts +64 -0
- package/ui/units/wizard/actions/dndItems.js +334 -0
- package/ui/units/wizard/actions/dndItemsEnums.d.ts +5 -0
- package/ui/units/wizard/actions/dndItemsEnums.js +9 -0
- package/ui/units/wizard/actions/hierarchyEditor.js +19 -0
- package/ui/units/wizard/actions/index.d.ts +699 -0
- package/ui/units/wizard/actions/index.js +1623 -0
- package/ui/units/wizard/actions/placeholder.d.ts +31 -0
- package/ui/units/wizard/actions/placeholder.js +431 -0
- package/ui/units/wizard/actions/preview.js +170 -0
- package/ui/units/wizard/actions/settings.js +46 -0
- package/ui/units/wizard/actions/tooltip.js +31 -0
- package/ui/units/wizard/actions/utils/getDatasetUpdates.js +240 -0
- package/ui/units/wizard/actions/utils/index.js +8 -0
- package/ui/units/wizard/actions/utils/mutateAndValidateItem.js +57 -0
- package/ui/units/wizard/actions/utils/placeholders.js +9 -0
- package/ui/units/wizard/actions/visualization/colors.d.ts +20 -0
- package/ui/units/wizard/actions/visualization/colors.js +20 -0
- package/ui/units/wizard/actions/visualization/contents.d.ts +46 -0
- package/ui/units/wizard/actions/visualization/contents.js +59 -0
- package/ui/units/wizard/actions/visualization/dashboard.d.ts +9 -0
- package/ui/units/wizard/actions/visualization/dashboard.js +13 -0
- package/ui/units/wizard/actions/visualization/filters.d.ts +9 -0
- package/ui/units/wizard/actions/visualization/filters.js +11 -0
- package/ui/units/wizard/actions/visualization/geometry.d.ts +9 -0
- package/ui/units/wizard/actions/visualization/geometry.js +13 -0
- package/ui/units/wizard/actions/visualization/index.d.ts +99 -0
- package/ui/units/wizard/actions/visualization/index.js +216 -0
- package/ui/units/wizard/actions/visualization/layers.d.ts +25 -0
- package/ui/units/wizard/actions/visualization/layers.js +31 -0
- package/ui/units/wizard/actions/visualization/shapes.d.ts +17 -0
- package/ui/units/wizard/actions/visualization/shapes.js +22 -0
- package/ui/units/wizard/actions/visualization/sort.d.ts +9 -0
- package/ui/units/wizard/actions/visualization/sort.js +11 -0
- package/ui/units/wizard/actions/widget.js +156 -0
- package/ui/units/wizard/components/AddField/AddField.js +86 -0
- package/ui/units/wizard/components/DND/DNDContainer.js +172 -0
- package/ui/units/wizard/components/DND/DNDItem.js +188 -0
- package/ui/units/wizard/components/DND/DragAndDrop.js +19 -0
- package/ui/units/wizard/components/DatasetSelect/DatasetSelect.js +159 -0
- package/ui/units/wizard/components/DatasetSelect/DatasetSelectItem.js +118 -0
- package/ui/units/wizard/components/Dialogs/DialogColor/ColorSettingsContainer/ColorSettingsContainer.js +159 -0
- package/ui/units/wizard/components/Dialogs/DialogColor/DialogColor.js +214 -0
- package/ui/units/wizard/components/Dialogs/DialogColor/DialogColorGradient/DialogColorGradient.js +282 -0
- package/ui/units/wizard/components/Dialogs/DialogColor/DialogColorPalette/DialogColorPalette.js +129 -0
- package/ui/units/wizard/components/Dialogs/DialogColumnSettings/DialogColumnSettings.js +153 -0
- package/ui/units/wizard/components/Dialogs/DialogColumnSettings/components/ColumnWidthSetting/ColumnWidthSetting.js +69 -0
- package/ui/units/wizard/components/Dialogs/DialogColumnSettings/components/ColumnWidthSettingsSection/ColumnWidthSettingsSection.js +56 -0
- package/ui/units/wizard/components/Dialogs/DialogColumnSettings/components/FieldInfo/FieldInfo.js +26 -0
- package/ui/units/wizard/components/Dialogs/DialogColumnSettings/components/Subheader/Subheader.js +15 -0
- package/ui/units/wizard/components/Dialogs/DialogColumnSettings/hooks/useDialogColumnSettingsState.js +68 -0
- package/ui/units/wizard/components/Dialogs/DialogColumnSettings/utils/index.js +59 -0
- package/ui/units/wizard/components/Dialogs/DialogField/DialogField.js +523 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/BackgroundSettings.js +142 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/helpers.js +120 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgrounColorFieldSelect.js +87 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundColorModeRadioButtons.js +85 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundNullModeSettings.js +28 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundSettings.js +43 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundSettingsButtonColorDialog.js +29 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundSettingsSwitch.js +15 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/BarsSettings.js +224 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/ColorControls/ColorsControl.js +113 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/GradientColorControl/GradientColorControl.js +54 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/MinMaxInputs/MinMaxInputs.js +75 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/PaletteColorControl/PaletteColorControl.js +113 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/useBarsSettings/helpers.js +42 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/useBarsSettings/useBarsSettings.js +109 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/ButtonColorDialog/ButtonColorDialog.js +100 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/DialogFieldInput/DialogFieldInput.js +22 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/DialogFieldMainSection/DialogFieldMainSection.js +338 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/DialogFieldRow/DialogFieldRow.js +18 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/DialogFieldSelect/DialogFieldSelect.js +35 -0
- package/ui/units/wizard/components/Dialogs/DialogField/components/SubTotalsSettings/SubTotalsSettings.js +33 -0
- package/ui/units/wizard/components/Dialogs/DialogField/utils/backgroundSettings.js +80 -0
- package/ui/units/wizard/components/Dialogs/DialogField/utils/barsSettings.js +24 -0
- package/ui/units/wizard/components/Dialogs/DialogField/utils/misc.js +97 -0
- package/ui/units/wizard/components/Dialogs/DialogField/utils/subTotals.js +22 -0
- package/ui/units/wizard/components/Dialogs/DialogFieldInspector/DialogFieldInspector.js +129 -0
- package/ui/units/wizard/components/Dialogs/DialogGeolayer/DialogGeolayer.js +70 -0
- package/ui/units/wizard/components/Dialogs/DialogLabelSettings/DialogLabelSettings.js +108 -0
- package/ui/units/wizard/components/Dialogs/DialogLink.js +118 -0
- package/ui/units/wizard/components/Dialogs/DialogMetricSettings/DialogMetricSettings.js +166 -0
- package/ui/units/wizard/components/Dialogs/DialogMultidataset.js +312 -0
- package/ui/units/wizard/components/Dialogs/DialogNoRights.js +20 -0
- package/ui/units/wizard/components/Dialogs/DialogPlaceholder/DialogPlaceholder.js +883 -0
- package/ui/units/wizard/components/Dialogs/DialogPlaceholder/components/DialogPlaceholderRow/DialogPlaceholderRow.js +26 -0
- package/ui/units/wizard/components/Dialogs/DialogPlaceholder/constants/radio-buttons.js +172 -0
- package/ui/units/wizard/components/Dialogs/DialogPlaceholder/utils.js +17 -0
- package/ui/units/wizard/components/Dialogs/DialogPointsSize.js +163 -0
- package/ui/units/wizard/components/Dialogs/DialogShapes/DialogShapes.js +117 -0
- package/ui/units/wizard/components/Dialogs/DialogShapes/DialogShapesPalette/DialogShapesPalette.js +121 -0
- package/ui/units/wizard/components/Dialogs/DialogTooltipSettings/DialogTooltipSettings.js +98 -0
- package/ui/units/wizard/components/Dialogs/Settings/CenterSetting/CenterSetting.js +51 -0
- package/ui/units/wizard/components/Dialogs/Settings/IndicatorTitleSetting/IndicatorTitleSetting.js +64 -0
- package/ui/units/wizard/components/Dialogs/Settings/LimitInput/LimitInput.js +56 -0
- package/ui/units/wizard/components/Dialogs/Settings/SettingFeed/SettingFeed.js +27 -0
- package/ui/units/wizard/components/Dialogs/Settings/SettingNavigator/NavigatorSubSettings/NavigatorSubSettings.js +141 -0
- package/ui/units/wizard/components/Dialogs/Settings/SettingNavigator/SettingNavigator.js +39 -0
- package/ui/units/wizard/components/Dialogs/Settings/SettingPagination/SettingPagination.js +58 -0
- package/ui/units/wizard/components/Dialogs/Settings/SettingSwitcher/SettingSwitcher.js +58 -0
- package/ui/units/wizard/components/Dialogs/Settings/SettingTitleMode/SettingTitleMode.js +41 -0
- package/ui/units/wizard/components/Dialogs/Settings/Settings.js +833 -0
- package/ui/units/wizard/components/Dialogs/Settings/ZoomSetting/ZoomSetting.js +47 -0
- package/ui/units/wizard/components/Dialogs/components/DialogRadioButtons/DialogRadioButtons.js +38 -0
- package/ui/units/wizard/components/Dialogs/components/DialogRow/DialogRow.js +30 -0
- package/ui/units/wizard/components/Dialogs/components/TitleWithTooltip/TitleWithTooltip.js +25 -0
- package/ui/units/wizard/components/GeolayersSelect/GeolayersSelect.js +264 -0
- package/ui/units/wizard/components/GradientPalettePreview/GradientPalettePreview.js +13 -0
- package/ui/units/wizard/components/HierarchyEditor/HierarchyEditor.js +147 -0
- package/ui/units/wizard/components/MinifiedPalette/MinifiedPalette.js +101 -0
- package/ui/units/wizard/components/Palette/Palette.js +76 -0
- package/ui/units/wizard/components/PlaceholderActionIcon/PlaceholderActionIcon.js +39 -0
- package/ui/units/wizard/components/SearchInput/SearchInput.js +27 -0
- package/ui/units/wizard/components/ValuesList/ValuesList.js +288 -0
- package/ui/units/wizard/components/VisualizationItemTitleWithAggregation/VisualizationItemTitleWithAggregation.js +24 -0
- package/ui/units/wizard/constants/aggregations.js +14 -0
- package/ui/units/wizard/constants/dialogColor.js +46 -0
- package/ui/units/wizard/constants/formats.js +49 -0
- package/ui/units/wizard/constants/grouping.js +12 -0
- package/ui/units/wizard/constants/index.js +35 -0
- package/ui/units/wizard/constants/paletteTypes.js +9 -0
- package/ui/units/wizard/constants/placeholders.js +6 -0
- package/ui/units/wizard/containers/App.js +56 -0
- package/ui/units/wizard/containers/Wizard/SectionDataset/DatasetItem/DatasetItem.js +337 -0
- package/ui/units/wizard/containers/Wizard/SectionDataset/FieldsContainer/FieldsContainer.js +9 -0
- package/ui/units/wizard/containers/Wizard/SectionDataset/FieldsContainer/ParametersContainer/ParametersContainer.js +27 -0
- package/ui/units/wizard/containers/Wizard/SectionDataset/FieldsContainer/components/SectionContainer/SectionContainer.js +29 -0
- package/ui/units/wizard/containers/Wizard/SectionDataset/HierarchyEditor/HierarchyEditor.js +194 -0
- package/ui/units/wizard/containers/Wizard/SectionDataset/SectionDataset.js +927 -0
- package/ui/units/wizard/containers/Wizard/SectionPreview/SectionPreview.js +172 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/AddField/AddField.js +90 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/AvailablePlaceholder/AvailablePlaceholder.js +65 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/ColorsPlaceholder/ColorsPlaceholder.js +148 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/DashboardFiltersPlaceholder/DashboardFiltersPlaceholder.js +137 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/DashboardParametersPlaceholder/DashboardParametersPlaceholder.js +95 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/FiltersPlaceholder/FiltersPlaceholder.js +106 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/LabelsPlaceholder/LabelsPlaceholder.js +102 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/LayerFiltersPlaceholder/LayerFiltersPlaceholder.js +116 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/Placeholder/Placeholder.js +220 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/PlaceholdersContainer.js +245 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/SegmentsPlaceholder/SegmentsPlaceholder.js +78 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/ShapesPlaceholder/ShapesPlaceholder.js +110 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/SortPlaceholder/SortPlaceholder.js +133 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/TooltipsPlaceholder/TooltipsPlaceholder.js +85 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/VisualizationPlaceholder/VisualizationPlaceholder.d.ts +462 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/VisualizationPlaceholder/VisualizationPlaceholder.js +343 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/VisualizationPlaceholder/constants.js +13 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/utils.js +10 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/SectionVisualization.js +115 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/VisualizationItem/VisualizationItem.js +732 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/VisualizationLayersControl/CombinedChartLayerTypeSwitcher.js +55 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/VisualizationLayersControl/VisualizationLayersControl.js +254 -0
- package/ui/units/wizard/containers/Wizard/SectionVisualization/VisualizationSelector/VisualizationSelector.js +212 -0
- package/ui/units/wizard/containers/Wizard/Wizard.js +513 -0
- package/ui/units/wizard/containers/Wizard/WizardActionPanel/WizardActionPanel.js +115 -0
- package/ui/units/wizard/containers/Wizard/WizardActionPanel/useWizardActionPanel.js +178 -0
- package/ui/units/wizard/reducers/dataset.js +156 -0
- package/ui/units/wizard/reducers/dialogColor.js +32 -0
- package/ui/units/wizard/reducers/hierarchyEditor.js +28 -0
- package/ui/units/wizard/reducers/index.js +30 -0
- package/ui/units/wizard/reducers/preview.js +377 -0
- package/ui/units/wizard/reducers/revisions/reducers.js +59 -0
- package/ui/units/wizard/reducers/settings.js +49 -0
- package/ui/units/wizard/reducers/utils/checkTableColor.js +7 -0
- package/ui/units/wizard/reducers/utils/clearUnusedVisualizationItems.js +184 -0
- package/ui/units/wizard/reducers/utils/getConfigData.js +43 -0
- package/ui/units/wizard/reducers/utils/getPlaceholdersWithMergedSettings.js +77 -0
- package/ui/units/wizard/reducers/utils/index.js +6 -0
- package/ui/units/wizard/reducers/utils/updateColorHierarchies.js +34 -0
- package/ui/units/wizard/reducers/visualization.js +915 -0
- package/ui/units/wizard/reducers/widget.js +80 -0
- package/ui/units/wizard/selectors/dataset.js +101 -0
- package/ui/units/wizard/selectors/dialogColor.js +52 -0
- package/ui/units/wizard/selectors/gradient.js +24 -0
- package/ui/units/wizard/selectors/index.js +17 -0
- package/ui/units/wizard/selectors/preview.js +83 -0
- package/ui/units/wizard/selectors/settings.js +42 -0
- package/ui/units/wizard/selectors/visualization.js +73 -0
- package/ui/units/wizard/selectors/widget.js +37 -0
- package/ui/units/wizard/utils/colors.js +16 -0
- package/ui/units/wizard/utils/filters.js +25 -0
- package/ui/units/wizard/utils/helpers.js +528 -0
- package/ui/units/wizard/utils/mappers/mapChartsToClientConfig.js +168 -0
- package/ui/units/wizard/utils/mappers/mapClientToChartsConfig.js +49 -0
- package/ui/units/wizard/utils/palette.js +48 -0
- package/ui/units/wizard/utils/placeholder.js +90 -0
- package/ui/units/wizard/utils/predicates.d.ts +2 -0
- package/ui/units/wizard/utils/predicates.js +4 -0
- package/ui/units/wizard/utils/shapes.js +11 -0
- package/ui/units/wizard/utils/table.js +22 -0
- package/ui/units/wizard/utils/visualization.d.ts +232 -0
- package/ui/units/wizard/utils/visualization.js +74 -0
- package/ui/units/wizard/utils/wizard.d.ts +149 -0
- package/ui/units/wizard/utils/wizard.js +473 -0
- package/ui/units/workbooks/components/CreateEntry/CreateEntry.js +149 -0
- package/ui/units/workbooks/components/CreateEntry/utils.js +87 -0
- package/ui/units/workbooks/components/CreateEntryDialog/CreateEntryDialog.js +63 -0
- package/ui/units/workbooks/components/CreateEntryDialog/utils.js +10 -0
- package/ui/units/workbooks/components/DeleteEntryDialog/DeleteEntryDialog.js +48 -0
- package/ui/units/workbooks/components/DuplicateEntryDialog/DuplicateEntryDialog.js +61 -0
- package/ui/units/workbooks/components/EmptyWorkbook/EmptyWorkbook.js +65 -0
- package/ui/units/workbooks/components/EmptyWorkbook/EmptyWorkbookContainer.js +27 -0
- package/ui/units/workbooks/components/EmptyWorkbook/utils.js +34 -0
- package/ui/units/workbooks/components/EntryActions/EntryActions.js +122 -0
- package/ui/units/workbooks/components/EntryActions/utils.js +6 -0
- package/ui/units/workbooks/components/RenameEntryDialog/RenameEntryDialog.js +75 -0
- package/ui/units/workbooks/components/Table/WorkbookEntriesTable/ChunkGroup/ChunkGroup.js +52 -0
- package/ui/units/workbooks/components/Table/WorkbookEntriesTable/MainTabContent/MainTabContent.js +135 -0
- package/ui/units/workbooks/components/Table/WorkbookEntriesTable/Row/Row.js +150 -0
- package/ui/units/workbooks/components/Table/WorkbookEntriesTable/WorkbookEntriesTable.js +273 -0
- package/ui/units/workbooks/components/Table/WorkbookEntriesTable/WorkbookEntriesTableTabs.js +142 -0
- package/ui/units/workbooks/components/Table/WorkbookEntriesTable/constants.js +19 -0
- package/ui/units/workbooks/components/Table/WorkbookEntriesTable/utils.js +12 -0
- package/ui/units/workbooks/components/WorkbookActions/WorkbookActions.js +202 -0
- package/ui/units/workbooks/components/WorkbookActions/utils.js +6 -0
- package/ui/units/workbooks/components/WorkbookFilters/WorkbookFilters.js +88 -0
- package/ui/units/workbooks/components/WorkbookMainTabContent/WorkbookMainTabContent.js +247 -0
- package/ui/units/workbooks/components/WorkbookMainTabContent/useChunkedEntries.js +41 -0
- package/ui/units/workbooks/components/WorkbookPage/WorkbookPage.js +140 -0
- package/ui/units/workbooks/components/WorkbookPage/hooks/useLayout.js +190 -0
- package/ui/units/workbooks/components/WorkbookTabContent/WorkbookTabContent.js +166 -0
- package/ui/units/workbooks/components/WorkbookTabContent/useChunkedEntries.js +40 -0
- package/ui/units/workbooks/components/WorkbookTabs/WorkbookTabs.js +27 -0
- package/ui/units/workbooks/components/WorkbookTabs/constants.js +4 -0
- package/ui/units/workbooks/components/WorkbookTabs/utils.js +28 -0
- package/ui/units/workbooks/constants/index.js +15 -0
- package/ui/units/workbooks/store/actions/index.js +543 -0
- package/ui/units/workbooks/store/constants/index.js +100 -0
- package/ui/units/workbooks/store/reducers/index.js +11 -0
- package/ui/units/workbooks/store/reducers/workbook-page.js +477 -0
- package/ui/units/workbooks/store/selectors/index.js +112 -0
- package/ui/units/workbooks/utils/entry.js +8 -0
- package/ui/utils/absurd.js +7 -0
- package/ui/utils/collectionFiltersStorage.js +17 -0
- package/ui/utils/colors.js +37 -0
- package/ui/utils/connections/icons.js +29 -0
- package/ui/utils/connections/index.js +5 -0
- package/ui/utils/cookies.d.ts +1 -0
- package/ui/utils/cookies.js +7 -0
- package/ui/utils/copyItems.js +161 -0
- package/ui/utils/copyText.js +28 -0
- package/ui/utils/csrf.d.ts +1 -0
- package/ui/utils/csrf.js +5 -0
- package/ui/utils/custom-export-menu-item.js +27 -0
- package/ui/utils/date.js +7 -0
- package/ui/utils/docs/helpers.js +8 -0
- package/ui/utils/docs/index.js +39 -0
- package/ui/utils/embedded.js +28 -0
- package/ui/utils/errorContentTypes.js +76 -0
- package/ui/utils/errors/errorByCode.js +21 -0
- package/ui/utils/errors/manual.js +5 -0
- package/ui/utils/errors/parse.js +109 -0
- package/ui/utils/getActionPanelItems.js +72 -0
- package/ui/utils/getAllEntryScopes.js +8 -0
- package/ui/utils/getBasicActionPanelItems.js +84 -0
- package/ui/utils/getCurrentUserRights.js +14 -0
- package/ui/utils/getOverridedTheme.js +12 -0
- package/ui/utils/getRestrictedParamNames.js +6 -0
- package/ui/utils/getRevisionsPanelEntryScopesTexts.js +28 -0
- package/ui/utils/getScopeTypeIcon.js +25 -0
- package/ui/utils/getTopLevelEntryScopes.js +8 -0
- package/ui/utils/getTypeSelectOptions.js +21 -0
- package/ui/utils/helpers.js +45 -0
- package/ui/utils/icons.js +8 -0
- package/ui/utils/index.js +39 -0
- package/ui/utils/isEnabledFeature.js +10 -0
- package/ui/utils/markdown/get-render-markdown-fn.js +22 -0
- package/ui/utils/markdown/get-render-yfm-fn.js +19 -0
- package/ui/utils/markdown/index.js +6 -0
- package/ui/utils/markup.js +21 -0
- package/ui/utils/migrateItemDataOnPaste.js +26 -0
- package/ui/utils/mobile.js +13 -0
- package/ui/utils/os.js +10 -0
- package/ui/utils/palettes.js +22 -0
- package/ui/utils/readOnly.js +13 -0
- package/ui/utils/revisions.js +28 -0
- package/ui/utils/scrollableContainerContext.js +21 -0
- package/ui/utils/sdkRequests.js +33 -0
- package/ui/utils/setEntryKey.js +44 -0
- package/ui/utils/shared-entries/get-is-shared-entry.js +6 -0
- package/ui/utils/shared-entries/index.js +4 -0
- package/ui/utils/stringUtils.js +11 -0
- package/ui/utils/urlUtils.js +50 -0
- package/ui/utils/utils.js +221 -0
- package/ui/utils/validation.js +63 -0
- package/ui/utils/visualizations/line.js +98 -0
- package/ui/utils/visualizations/placeholders/colors.js +58 -0
- package/ui/utils/visualizations/placeholders/common-measures.js +84 -0
- package/ui/utils/waitOperation.js +72 -0
- package/ui/utils/widgetColors.js +61 -0
- package/ui/utils/workbooks.js +14 -0
- package/AccessErrorPage.js +0 -18
- package/AdvancedChartWidget.js +0 -253
- package/AppearanceSettings.js +0 -45
- package/Body.js +0 -2328
- package/CreateProfilePage.js +0 -142
- package/HighchartsMapWidget.js +0 -602
- package/MainPage.js +0 -121
- package/MarkupWidget.js +0 -33
- package/MetricWidget.js +0 -579
- package/StyledSplitPane.js +0 -41
- package/UserProfilePage.js +0 -44
- package/UsersList.js +0 -306
- package/YandexMapWidget.js +0 -2698
- package/assets/images/dark/403.js +0 -4
- package/assets/images/dark/404.js +0 -4
- package/assets/images/dark/500.js +0 -4
- package/assets/images/dark/bad_request.js +0 -4
- package/assets/images/dark/empty_directory.js +0 -4
- package/assets/images/dark/empty_state.js +0 -4
- package/assets/images/dark/no_accounts.js +0 -4
- package/assets/images/dark/no_permission.js +0 -4
- package/assets/images/dark/project.js +0 -4
- package/assets/images/dark/success_operation.js +0 -4
- package/assets/images/light/403.js +0 -4
- package/assets/images/light/404.js +0 -4
- package/assets/images/light/500.js +0 -4
- package/assets/images/light/bad_request.js +0 -4
- package/assets/images/light/empty_directory.js +0 -4
- package/assets/images/light/empty_state.js +0 -4
- package/assets/images/light/no_accounts.js +0 -4
- package/assets/images/light/no_permission.js +0 -4
- package/assets/images/light/project.js +0 -4
- package/assets/images/light/success_operation.js +0 -4
- package/components/AccessRights.js +0 -5908
- package/components/ActionPanel.js +0 -3507
- package/components/AdaptiveDialog.js +0 -45
- package/components/AnimateBlock.js +0 -38
- package/components/AsideHeaderAdapter.js +0 -632
- package/components/AsyncImage.js +0 -77
- package/components/AutogeneratedPaletteIcon.js +0 -53
- package/components/BetaMark.js +0 -9
- package/components/Breadcrumbs.js +0 -70
- package/components/BreadcrumbsItemLink.js +0 -16
- package/components/ButtonAttach.js +0 -32
- package/components/Collapse.js +0 -159
- package/components/CollectionFilters.js +0 -340
- package/components/CollectionIcon.js +0 -14
- package/components/CollectionsStructure.js +0 -3262
- package/components/ColorPaletteEditorContainer.js +0 -1091
- package/components/ColorPaletteSelect.js +0 -120
- package/components/ColorPickerInput.js +0 -199
- package/components/ConnectorIcon.js +0 -65
- package/components/ControlComponents.js +0 -24341
- package/components/CopyEntriesToWorkbookDialog.js +0 -414
- package/components/DashKit.js +0 -4026
- package/components/DataTypeIcon.js +0 -68
- package/components/DatasetFieldList.js +0 -51
- package/components/DebouncedInput.js +0 -47
- package/components/DialogAddSharedEntryFromLink.js +0 -146
- package/components/DialogChartWidget.js +0 -1265
- package/components/DialogCommon.js +0 -91
- package/components/DialogConfirm.js +0 -69
- package/components/DialogDefault.js +0 -78
- package/components/DialogEditItem.js +0 -183
- package/components/DialogEntryDescription.js +0 -175
- package/components/DialogErrorWithTabs.js +0 -373
- package/components/DialogExternalControl.js +0 -108
- package/components/DialogFieldEditor.js +0 -45
- package/components/DialogFilter.js +0 -3735
- package/components/DialogGroupControl.js +0 -926
- package/components/DialogImageWidget.js +0 -203
- package/components/DialogManager.js +0 -42
- package/components/DialogNoRights.js +0 -19
- package/components/DialogParameter.js +0 -560
- package/components/DialogQLParameter.js +0 -71
- package/components/DialogRelatedEntities.js +0 -230
- package/components/DialogRelations.js +0 -3389
- package/components/DialogSelectSharedEntry.js +0 -129
- package/components/DialogSharedEntryBindings.js +0 -496
- package/components/DialogSharedEntryPermissions.js +0 -147
- package/components/DialogSharedEntryUnbind.js +0 -124
- package/components/DialogSharedRelatedEntities.js +0 -196
- package/components/DialogSuccessWithAction.js +0 -23
- package/components/DialogTextWidget.js +0 -211
- package/components/DialogTitleWidget.js +0 -580
- package/components/DialogWarning.js +0 -51
- package/components/DropdownAction.js +0 -13
- package/components/DropdownNavigation.js +0 -173
- package/components/EditableText.js +0 -56
- package/components/EntitiesList.js +0 -54
- package/components/EntityIcon.js +0 -47
- package/components/EntityLink.js +0 -14
- package/components/EntityRow.js +0 -99
- package/components/EntriesList.js +0 -55
- package/components/EntryBreadcrumbs.js +0 -111
- package/components/EntryContextMenu.js +0 -792
- package/components/EntryDialogues.js +0 -2515
- package/components/EntryIcon.js +0 -102
- package/components/EntryRow.js +0 -99
- package/components/EntryTitle.js +0 -57
- package/components/ErrorBoundary.js +0 -24
- package/components/ErrorContent.js +0 -249
- package/components/ErrorPage.js +0 -30
- package/components/ExpandablePanel.js +0 -67
- package/components/FieldEditor.js +0 -2240
- package/components/FieldWrapper.js +0 -15
- package/components/FloatMenu.js +0 -41
- package/components/FormSection.js +0 -16
- package/components/IamAccessDialog.js +0 -15
- package/components/IconById.js +0 -14
- package/components/Illustration.js +0 -94
- package/components/InaccessibleOnMobileInset.js +0 -39
- package/components/Interpolate.js +0 -32
- package/components/InterpolatedText.js +0 -47
- package/components/LandingPage.js +0 -50
- package/components/ListWithMenu.js +0 -191
- package/components/ListWithRemove.js +0 -42
- package/components/LocationChange.js +0 -23
- package/components/MarkdownControl.js +0 -21
- package/components/MarkdownHelpPopover.js +0 -77
- package/components/Markup.js +0 -200
- package/components/MigrateToWorkbookDialog.js +0 -498
- package/components/MobileHeader.js +0 -142
- package/components/MobileTocToggle.js +0 -16
- package/components/Monaco.js +0 -112
- package/components/Navigation.js +0 -2675
- package/components/NavigationPrompt.js +0 -18
- package/components/NavigationTabs.js +0 -84
- package/components/NumberFormatSettings.js +0 -193
- package/components/OpenDialogNeedReset.js +0 -49
- package/components/OrderBySelect.js +0 -51
- package/components/PageTitle.js +0 -53
- package/components/PaletteIcon.js +0 -25
- package/components/PaletteItem.js +0 -44
- package/components/PathSelect.js +0 -113
- package/components/PlaceholderIllustration.js +0 -37
- package/components/Progress.js +0 -47
- package/components/ProgressBar.js +0 -19
- package/components/RelativeDatesPicker.js +0 -675
- package/components/RevisionStatusPoint.js +0 -25
- package/components/Revisions.js +0 -314
- package/components/RevisionsPanel.js +0 -278
- package/components/SectionWrapper.js +0 -52
- package/components/Select.js +0 -404
- package/components/SelectComponents.js +0 -12
- package/components/SelectMigrationToWorkbookDialog.js +0 -162
- package/components/SharedBindingsList.js +0 -93
- package/components/SharedEntryIcon.js +0 -22
- package/components/SlugifyUrl.js +0 -22
- package/components/SmartLoader.js +0 -28
- package/components/TabMenu.js +0 -356
- package/components/Tabs.js +0 -66
- package/components/TagInput.js +0 -142
- package/components/TemplateTextPaper.js +0 -32
- package/components/TextEditor.js +0 -41
- package/components/UserAvatar.js +0 -233
- package/components/UserMenu.js +0 -54
- package/components/ValuesList.js +0 -55
- package/components/Veil.js +0 -19
- package/components/ViewAsync.js +0 -45
- package/components/ViewError.js +0 -115
- package/components/ViewLoader.js +0 -17
- package/components/WidgetRoundingsInput.js +0 -47
- package/components/Widgets.js +0 -3964
- package/components/WorkbookIcon.js +0 -63
- package/components/WorkbookNavigationMinimal.js +0 -345
- package/components/YfmWrapper.js +0 -144
- package/components/common.js +0 -4451
- package/highcharts.js +0 -380
- package/index.js +0 -24
- package/main.js +0 -5018
- package/markdown.js +0 -362
- package/pages/AuthPage.js +0 -604
- package/pages/CollectionsNavigationPage.js +0 -2579
- package/pages/ConnectionsPage.js +0 -11918
- package/pages/DashAndWizardQLPages.js +0 -67
- package/pages/DashPage.js +0 -16470
- package/pages/DatasetPage.js +0 -9986
- package/pages/FallbackPage.js +0 -8
- package/pages/LandingPage.js +0 -8
- package/pages/OwnUserProfilePage.js +0 -878
- package/pages/PreviewPage.js +0 -284
- package/pages/QLPage.js +0 -9628
- package/pages/ServiceSettingsPage.js +0 -180
- package/pages/WizardPage.js +0 -2774
- package/perfomance.js +0 -23
- package/serviceSettings.js +0 -117
- package/types/shared/constants/entry.d.ts +0 -65
- package/types/shared/modules/helpers.d.ts +0 -38
- package/types/shared/old-schema/charts.d.ts +0 -131
- package/types/shared/old-schema/index.d.ts +0 -113
- package/types/shared/schema/auth-schema/index.d.ts +0 -18
- package/types/shared/schema/index.d.ts +0 -3363
- package/types/shared/schema/mix/actions/dash/create-dashboard-v1.d.ts +0 -723
- package/types/shared/schema/mix/actions/dash/get-dashboard-v1.d.ts +0 -515
- package/types/shared/schema/mix/actions/dash/index.d.ts +0 -1959
- package/types/shared/schema/mix/actions/dash/update-dashboard-v1.d.ts +0 -722
- package/types/shared/schema/mix/actions/index.d.ts +0 -2067
- package/types/shared/schema/mix/index.d.ts +0 -2071
- package/types/shared/schema/us/actions/entries/get-entries.d.ts +0 -100
- package/types/shared/schema/us/actions/entries/index.d.ts +0 -298
- package/types/shared/schema/us/actions/entries/list-directory.d.ts +0 -101
- package/types/shared/schema/us/actions/index.d.ts +0 -1064
- package/types/shared/schema/us/actions/workbooks/get-workbooks-list.d.ts +0 -75
- package/types/shared/schema/us/actions/workbooks/index.d.ts +0 -384
- package/types/shared/schema/us/index.d.ts +0 -1069
- package/types/shared/schema/us/schemas/entries/get-entries.d.ts +0 -172
- package/types/shared/schema/us/schemas/entries/list-directory.d.ts +0 -171
- package/types/ui/components/DashKit/plugins/Title/utils.d.ts +0 -12
- package/types/ui/components/DashKit/plugins/Widget/components/helpers.d.ts +0 -3
- package/types/ui/components/DialogRelatedEntities/DialogRelatedEntities.d.ts +0 -7
- package/types/ui/components/DialogRelations/DialogRelations.d.ts +0 -21
- package/types/ui/components/DialogRelations/constants.d.ts +0 -26
- package/types/ui/components/DialogRelations/hooks/helpers.d.ts +0 -109
- package/types/ui/components/DialogRelations/hooks/helpersControls.d.ts +0 -25
- package/types/ui/components/EntryDialogues/EntryDialogues.d.ts +0 -95
- package/types/ui/components/Navigation/Core/CreateEntry/CreateEntry.d.ts +0 -18
- package/types/ui/components/Widgets/Chart/helpers/helpers.d.ts +0 -139
- package/types/ui/components/Widgets/Chart/helpers/yandex-map.d.ts +0 -12
- package/types/ui/components/Widgets/Chart/hooks/useLoadingChartWidget.d.ts +0 -195
- package/types/ui/datalens/render.d.ts +0 -8
- package/types/ui/entries/main.d.ts +0 -3
- package/types/ui/libs/DatalensChartkit/ChartKit/helpers/chartkit-adapter.d.ts +0 -59
- package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/config.d.ts +0 -576
- package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/utils.d.ts +0 -12
- package/types/ui/libs/DatalensChartkit/menu/MenuItems.d.ts +0 -55
- package/types/ui/libs/DatalensChartkit/menu/constants.d.ts +0 -9
- package/types/ui/libs/DatalensChartkit/modules/data-provider/charts/index.d.ts +0 -125
- package/types/ui/store/reducers/controlDialog/controlDialog.d.ts +0 -58
- package/types/ui/units/connections/store/actions/index.d.ts +0 -34
- package/types/ui/units/dash/store/actions/base/actions.d.ts +0 -28
- package/types/ui/units/datasets/components/DatasetTable/utils.d.ts +0 -44
- package/types/ui/units/datasets/containers/DatasetPage/DatasetPage.d.ts +0 -27
- package/types/ui/units/datasets/containers/DatasetPage/createDatasetPageContext.d.ts +0 -7
- package/types/ui/units/ql/store/reducers/ql.d.ts +0 -873
- package/types/ui/units/wizard/actions/dndItems.d.ts +0 -68
- package/types/ui/units/wizard/actions/index.d.ts +0 -714
- package/types/ui/units/wizard/actions/placeholder.d.ts +0 -31
- package/types/ui/units/wizard/actions/visualization.d.ts +0 -199
- package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/VisualizationPlaceholder/VisualizationPlaceholder.d.ts +0 -462
- package/types/ui/units/wizard/utils/visualization.d.ts +0 -232
- package/types/ui/units/wizard/utils/wizard.d.ts +0 -150
- /package/{types/i18n → i18n}/constants.d.ts +0 -0
- /package/{types/i18n → i18n}/index.d.ts +0 -0
- /package/{types/i18n → i18n}/prepare-keysets/constants.d.ts +0 -0
- /package/{types/i18n → i18n}/prepare-keysets/index.d.ts +0 -0
- /package/{types/i18n → i18n}/prepare-keysets/prepare-keysets.d.ts +0 -0
- /package/{types/i18n → i18n}/prepare-keysets/utils.d.ts +0 -0
- /package/{types/i18n → i18n}/read-keysets.d.ts +0 -0
- /package/{types/i18n → i18n}/types.d.ts +0 -0
- /package/{types/i18n → i18n}/utils.d.ts +0 -0
- /package/{types/index.d.ts → index.d.ts} +0 -0
- /package/{types/server → server}/app-env.d.ts +0 -0
- /package/{types/server → server}/callbacks/index.d.ts +0 -0
- /package/{types/server → server}/callbacks/page-error.d.ts +0 -0
- /package/{types/server → server}/components/api-docs/constants.d.ts +0 -0
- /package/{types/server → server}/components/api-docs/index.d.ts +0 -0
- /package/{types/server → server}/components/api-docs/types.d.ts +0 -0
- /package/{types/server → server}/components/app-layout/app-layout-settings.d.ts +0 -0
- /package/{types/server → server}/components/app-layout/plugins/layout/index.d.ts +0 -0
- /package/{types/server → server}/components/auth/callbacks/auth-layout.d.ts +0 -0
- /package/{types/server → server}/components/auth/callbacks/index.d.ts +0 -0
- /package/{types/server → server}/components/auth/middlewares/auth/api-auth.d.ts +0 -0
- /package/{types/server → server}/components/auth/middlewares/auth/constants.d.ts +0 -0
- /package/{types/server → server}/components/auth/middlewares/auth/index.d.ts +0 -0
- /package/{types/server → server}/components/auth/middlewares/auth/ui-auth.d.ts +0 -0
- /package/{types/server → server}/components/auth/routes.d.ts +0 -0
- /package/{types/server → server}/components/auth/types/token.d.ts +0 -0
- /package/{types/server → server}/components/auth/types/user.d.ts +0 -0
- /package/{types/server → server}/components/axios.d.ts +0 -0
- /package/{types/server → server}/components/cache-client.d.ts +0 -0
- /package/{types/server → server}/components/chart-editor-developer-mode-access-check.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/chart-generator.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/chart-validator.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/error-handler.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/markdown.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/processor/chart-api-context.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/processor/comments-fetcher.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/processor/console.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/processor/control-builder.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/processor/data-fetcher.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/processor/hooks.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/processor/index.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/processor/paramsUtils.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/processor/sources.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/processor/stack-trace-prepaper.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/processor/types.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/processor/utils.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/processor/worker-chart-builder.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/request/axios.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/request/index.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/storage/base.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/storage/index.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/storage/types.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/storage/united-storage/index.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/storage/united-storage/provider.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/utils.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/wizard-worker/index.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/wizard-worker/types.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/components/wizard-worker/utils.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/constants/index.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/controllers/charts.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/controllers/config.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/controllers/csvConverter.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/controllers/embedded-entry.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/controllers/embeds.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/controllers/export.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/controllers/markdown.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/controllers/run.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/controllers/utils.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/index.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/runners/common.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/runners/control.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/runners/index.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/runners/utils.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/runners/wizard.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/runners/worker.d.ts +0 -0
- /package/{types/server → server}/components/charts-engine/types.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/AsideHeaderEnabled.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/AuthUpdateWithTimeout.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/ChartEditorDeveloperModeCheck.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/ChartkitAlerts.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/CollectionsAccessEnabled.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/CollectionsEnabled.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/Comments.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/ConnectionBasedControl.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/CopyEntriesToWorkbook.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/DashBoardSupportDescription.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/DashBoardWidgetParamsStrictValidation.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/DashServerMigrationEnable.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/DashServerValidationEnabled.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/DatasetsRLS.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/DisableFnAndHtml.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableAutocreateDataset.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableChartEditorDocs.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableCommonChartDashSettings.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableCustomDashMargins.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableCustomMonitoring.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableDLRebranding.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableDashAutoFocus.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableDashChartStat.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableDashColorPickersByTheme.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableDatasetSourcesPagination.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableEmbedsInDialogShare.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableEntryMenuItemShare.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableExportSettings.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableExportWorkbookFile.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableFileUploadingByPresignedUrl.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableFooter.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableGlobalSelectors.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableMobileFixedHeader.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableMobileHeader.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableNewDashSettings.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableNewServiceSettings.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnablePublishEntry.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableRLSV2.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableSaveAsEditorScript.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableSecureParamsV2.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableServerlessEditor.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableSharedEntries.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EnableUpdatingDsSettingsByAction.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EntryMenuItemCopy.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/EntryMenuItemMove.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/ExternalSelectors.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/FetchDocumentation.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/FieldEditorDocSection.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/GravityChartsForBarYAndScatter.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/GravityChartsForLineAreaAndBarX.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/GravityChartsForPieAndTreemap.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/HideMultitenant.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/HolidaysOnChart.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/MassRemoveCollectionsWorkbooks.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/MenuItemsFlatView.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/MultiDatasets.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/MultipleColorsInVisualization.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/NewTableWidgetForCE.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/NoJsonFn.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/QLMonitoring.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/QLPrometheus.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/QlAutoExecuteMonitoringChart.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/ReadOnlyMode.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/RevisionsListNoLimit.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/ShouldCheckEditorAccess.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/ShowChartsEngineDebugInfo.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/ShowCreateEntryWithMenu.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/ShowInspectorDetails.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/UseAxiosRequest.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/UseChartsEngineLogin.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/UseChartsEngineResponseConfig.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/UseComponentHeader.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/UseConfigurableChartkit.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/UsePublicDistincts.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/UseYqlFolderKey.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/XlsxChartExportEnabled.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/XlsxFilesEnabled.d.ts +0 -0
- /package/{types/server → server}/components/features/features-list/index.d.ts +0 -0
- /package/{types/server → server}/components/features/index.d.ts +0 -0
- /package/{types/server → server}/components/features/utils.d.ts +0 -0
- /package/{types/server → server}/components/gateway-auth-helpers/bi-auth-helpers.d.ts +0 -0
- /package/{types/server → server}/components/gateway-auth-helpers/index.d.ts +0 -0
- /package/{types/server → server}/components/gateway-auth-helpers/us-auth-helpers.d.ts +0 -0
- /package/{types/server → server}/components/index.d.ts +0 -0
- /package/{types/server → server}/components/layout/index.d.ts +0 -0
- /package/{types/server → server}/components/layout/landing-layout.d.ts +0 -0
- /package/{types/server → server}/components/layout/opensource-layout-config.d.ts +0 -0
- /package/{types/server → server}/components/layout/utils.d.ts +0 -0
- /package/{types/server → server}/components/metrika-data-formatter.d.ts +0 -0
- /package/{types/server → server}/components/public-api/config/index.d.ts +0 -0
- /package/{types/server → server}/components/public-api/config/v1.d.ts +0 -0
- /package/{types/server → server}/components/public-api/constants/common.d.ts +0 -0
- /package/{types/server → server}/components/public-api/constants/index.d.ts +0 -0
- /package/{types/server → server}/components/public-api/index.d.ts +0 -0
- /package/{types/server → server}/components/public-api/types.d.ts +0 -0
- /package/{types/server → server}/components/public-api/utils/index.d.ts +0 -0
- /package/{types/server → server}/components/public-api/utils/init-public-api-swagger.d.ts +0 -0
- /package/{types/server → server}/components/public-api/utils/prepare-public-api-base-config.d.ts +0 -0
- /package/{types/server → server}/components/public-api/utils/register-action-to-open-api.d.ts +0 -0
- /package/{types/server → server}/components/resolve-entry-by-link.d.ts +0 -0
- /package/{types/server → server}/components/sdk/dash.d.ts +0 -0
- /package/{types/server → server}/components/sdk/index.d.ts +0 -0
- /package/{types/server → server}/components/sdk/us.d.ts +0 -0
- /package/{types/server → server}/components/workbook-transfer/charts.d.ts +0 -0
- /package/{types/server → server}/components/workbook-transfer/create-transfer-notifications.d.ts +0 -0
- /package/{types/server → server}/components/workbook-transfer/dash.d.ts +0 -0
- /package/{types/server → server}/components/zitadel/init-zitadel.d.ts +0 -0
- /package/{types/server → server}/components/zitadel/routes.d.ts +0 -0
- /package/{types/server → server}/components/zitadel/utils.d.ts +0 -0
- /package/{types/server → server}/configs/common.d.ts +0 -0
- /package/{types/server → server}/configs/opensource/common.d.ts +0 -0
- /package/{types/server → server}/configs/opensource/development.d.ts +0 -0
- /package/{types/server → server}/configs/secrets.d.ts +0 -0
- /package/{types/server → server}/configs/shared/control-dash-chart-template.d.ts +0 -0
- /package/{types/server → server}/configs/shared/datalens-chart-template.d.ts +0 -0
- /package/{types/server → server}/configs/shared/ql-chart-template.d.ts +0 -0
- /package/{types/server → server}/constants/axios.d.ts +0 -0
- /package/{types/server → server}/constants/index.d.ts +0 -0
- /package/{types/server → server}/constants/public-api.d.ts +0 -0
- /package/{types/server → server}/controllers/api.d.ts +0 -0
- /package/{types/server → server}/controllers/dl-main.d.ts +0 -0
- /package/{types/server → server}/controllers/index.d.ts +0 -0
- /package/{types/server → server}/controllers/navigate.d.ts +0 -0
- /package/{types/server → server}/controllers/navigation.d.ts +0 -0
- /package/{types/server → server}/controllers/ping.d.ts +0 -0
- /package/{types/server → server}/controllers/public-api/constants.d.ts +0 -0
- /package/{types/server → server}/controllers/public-api/index.d.ts +0 -0
- /package/{types/server → server}/controllers/public-api/utils.d.ts +0 -0
- /package/{types/server → server}/controllers/stats.d.ts +0 -0
- /package/{types/server → server}/controllers/utils/handle-entry-redirect.d.ts +0 -0
- /package/{types/server → server}/controllers/workbook-transfer.d.ts +0 -0
- /package/{types/server → server}/controllers/xlsx-converter.d.ts +0 -0
- /package/{types/server → server}/controllers/zitadel.d.ts +0 -0
- /package/{types/server → server}/expresskit.d.ts +0 -0
- /package/{types/server → server}/index.d.ts +0 -0
- /package/{types/server → server}/lib/validation/index.d.ts +0 -0
- /package/{types/server → server}/lib/validation/types.d.ts +0 -0
- /package/{types/server → server}/local-dev.d.ts +0 -0
- /package/{types/server → server}/middlewares/app-layout.d.ts +0 -0
- /package/{types/server → server}/middlewares/auth-zitadel.d.ts +0 -0
- /package/{types/server → server}/middlewares/before-auth-defaults.d.ts +0 -0
- /package/{types/server → server}/middlewares/connector-icons.d.ts +0 -0
- /package/{types/server → server}/middlewares/ctx.d.ts +0 -0
- /package/{types/server → server}/middlewares/index.d.ts +0 -0
- /package/{types/server → server}/middlewares/patch-logger.d.ts +0 -0
- /package/{types/server → server}/middlewares/scr-requests.d.ts +0 -0
- /package/{types/server → server}/middlewares/server-feature-with-bounded-context.d.ts +0 -0
- /package/{types/server → server}/middlewares/tenant-settings.d.ts +0 -0
- /package/{types/server → server}/middlewares/x-dl-context.d.ts +0 -0
- /package/{types/server → server}/modes/charts/init-charts-engine.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/constants/middleware-urls.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/constants/misc.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/constants/misc.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/controls/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/helpers/misc.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/js/helpers/dataset/process-dataset-content.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/js/helpers/dataset/process-fields.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/js/helpers/process-content.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/js/helpers/typed-query/process-typed-query-content.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/js/helpers/typed-query/process-typed-query-parameters.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/js/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/js/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/url/constants.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/url/distincts/build-distincts-body.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/url/distincts/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/url/fields/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/url/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/url/typed-query/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/control/url/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/dash-api.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/data-api-json-schema.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/chart-editor-module.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/config/constants.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/config/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/config/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/gravity-charts/utils/dataLabels.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/gravity-charts/utils/format.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/gravity-charts/utils/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/gravity-charts/utils/range-slider.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/highcharts.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/js/constants/errors.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/colors/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/errors/oversize-error/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/errors/oversize-error/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/errors/oversize-error/utils.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/layer-chart/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/layer-chart/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/misc/prepare-single-result.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/notifications/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/totals/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/js/helpers/totals/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/js/js-v1.5-private.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/js/js.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/area/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/constants/misc.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/backgroundColor.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/color.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/misc.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/sort.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/totals.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/table-head-generator.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/table-rows-generator.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/backend-pivot-table/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/bar-x/gravity-charts.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/bar-x/highcharts.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/bar-x/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/bar-x/prepare-bar-x.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/bar-y/gravity-charts.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/bar-y/highcharts.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/bar-y/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/bar-y/prepare-bar-y-data.d.ts +0 -0
- /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
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/flat-table/helpers/background-settings/get-flat-table-background-styles.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/flat-table/helpers/background-settings/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/flat-table/helpers/background-settings/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/flat-table/helpers/footer/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/flat-table/helpers/footer/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/flat-table/helpers/misc.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/flat-table/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/geopoint/constants.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/geopoint/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/geopoint/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/geopoint-with-cluster.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/geopolygon.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/heatmap.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/action-params.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/axis/addAxisFormatter.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/axis/addAxisFormatting.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/axis/get-axis-formatting.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/axis/getAxisType.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/axis/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/axis/isAxisLabelDateFormat.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/backgroundSettings/misc.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/barsSettings/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/barsSettings/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/colors.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/columnSettings.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/get-formatted-value.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/highcharts.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/layers.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/legend.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/segments.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/helpers/visualizations.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/gravity-charts.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/axis/getLayerPlaceholderWithItems.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/axis/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/color-helpers/colorizeByGradient.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/color-helpers/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/getSortedCategories.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/getSortedLineKeys.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/getXAxisValue.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/getColoredLineLegendTitle.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/helpers.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/mapDataToDimensionColoredLines.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/mapDataToLines.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/mapDataToMeasureColoredLines.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/prepareLines.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/segments/getSegmentName.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/segments/getSegmentsIndexInOrder.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/segments/getSegmentsList.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/segments/getSegmentsMap.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/segments/getSegmentsYAxis.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/segments/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/helpers/utils.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/highcharts.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/prepare-line-data.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/line-time/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/metric/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/metric/utils.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/metric/variants/basic.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/metric/variants/markup.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/old-pivot-table/old-pivot-table.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/pie/gravity-charts.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/pie/highcharts.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/pie/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/pie/prepare-pie-data.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/pie/utils.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/polyline.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/scatter/gravity-charts.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/scatter/helpers/shape.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/scatter/helpers/tooltip.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/scatter/highcharts.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/scatter/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/scatter/prepare-scatter.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/scatter/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/treemap/gravity-charts.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/treemap/highcharts.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/treemap/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/preparers/utils.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/private-module.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/url/build-request-body/constants.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/url/build-request-body/default-request.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/url/build-request-body/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/url/build-request-body/pivot-request/helpers/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/url/build-request-body/pivot-request/helpers/totals.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/url/build-request-body/pivot-request/helpers/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/url/build-request-body/pivot-request/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/url/build-sources.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/url/helpers/fields.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/url/helpers/filters.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/url/helpers/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/url/helpers/misc.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/url/helpers/parameters.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/url/helpers/table-settings.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/url/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/utils/axis-helpers.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/utils/color-helpers.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/utils/config-helpers.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/utils/constants.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/utils/export-helpers.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/utils/geo-helpers.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/utils/get-gradient-stops.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/utils/hierarchy-helpers.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/utils/markup-helpers.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/utils/misc-helpers.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/utils/pivot-table/totals.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/datalens/utils/shape-helpers.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/dataset/v2.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/helpers/color-palettes.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/helpers/misc.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/logins-blacklist.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/module/chart-editor-module.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/module/config/build-chart-config.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/module/config/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/module/highcharts.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/module/js/build-graph.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/module/library-config/build-library-config.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/module/library-config/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/module/private-module.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/module/url/build-sources.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/module/url/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/module/url/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/preparers/line-time.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/preparers/line.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/preparers/metric.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/preparers/pie.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/preparers/preview-table.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/preparers/table.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/ql-chart-runner.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/utils/autofill-helpers.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/utils/colors.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/utils/connection.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/utils/constants.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/utils/identify-params.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/utils/migrate-helpers.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/utils/misc-helpers.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/utils/value-helpers.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/utils/visualization-utils.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/worker.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/ql/yagr.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/request-with-dataset/index.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/request-with-dataset/middlewareAdapters/charts-with-dataset.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/request-with-dataset/middlewareAdapters/controls-with-dataset.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/request-with-dataset/request-dataset.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/runner-key-adapter.d.ts +0 -0
- /package/{types/server → server}/modes/charts/plugins/types.d.ts +0 -0
- /package/{types/server → server}/modes/charts/telemetry.d.ts +0 -0
- /package/{types/server → server}/modes/opensource/app.d.ts +0 -0
- /package/{types/server → server}/modes/opensource/middlewares/index.d.ts +0 -0
- /package/{types/server → server}/modes/opensource/middlewares/subrequest-headers.d.ts +0 -0
- /package/{types/server → server}/modes/opensource/routes.d.ts +0 -0
- /package/{types/server → server}/nodekit.d.ts +0 -0
- /package/{types/server → server}/registry/index.d.ts +0 -0
- /package/{types/server → server}/registry/units/common/auth-functions-map.d.ts +0 -0
- /package/{types/server → server}/registry/units/common/functions-map.d.ts +0 -0
- /package/{types/server → server}/registry/units/common/index.d.ts +0 -0
- /package/{types/server → server}/registry/units/common/register.d.ts +0 -0
- /package/{types/server → server}/registry/utils/register-app-plugins.d.ts +0 -0
- /package/{types/server → server}/types/app-layout.d.ts +0 -0
- /package/{types/server → server}/types/connections.d.ts +0 -0
- /package/{types/server → server}/types/controllers.d.ts +0 -0
- /package/{types/server → server}/types/gateway.d.ts +0 -0
- /package/{types/server → server}/types/xlsxConverter.d.ts +0 -0
- /package/{types/server → server}/utils/axios.d.ts +0 -0
- /package/{types/server → server}/utils/env-utils.d.ts +0 -0
- /package/{types/server → server}/utils/gateway.d.ts +0 -0
- /package/{types/server → server}/utils/index.d.ts +0 -0
- /package/{types/server → server}/utils/language.d.ts +0 -0
- /package/{types/server → server}/utils/redis.d.ts +0 -0
- /package/{types/server → server}/utils/routes.d.ts +0 -0
- /package/{types/server → server}/utils/schema-validate.d.ts +0 -0
- /package/{types/shared → shared}/components/auth/constants/cookie.d.ts +0 -0
- /package/{types/shared → shared}/components/auth/constants/role.d.ts +0 -0
- /package/{types/shared → shared}/components/auth/constants/token.d.ts +0 -0
- /package/{types/shared → shared}/components/auth/constants/url.d.ts +0 -0
- /package/{types/shared → shared}/components/auth/types/layout.d.ts +0 -0
- /package/{types/shared → shared}/components/public-api/utils/index.d.ts +0 -0
- /package/{types/shared → shared}/constants/api-v2.d.ts +0 -0
- /package/{types/shared → shared}/constants/chartkit-handlers.d.ts +0 -0
- /package/{types/shared → shared}/constants/charts.d.ts +0 -0
- /package/{types/shared → shared}/constants/collections.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/common/classic-20.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/common/datalens.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/common/default-20.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/common/emerald-20.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/common/golden-20.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/common/neutral-20.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/common/oceanic-20.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/common/traffic-light-9.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/index.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/tableau/blue-red-12.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/tableau/blue-red-6.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/tableau/color-blind-10.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/tableau/gray-5.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/tableau/green-orange-12.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/tableau/green-orange-6.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/tableau/purpure-gray-12.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/tableau/purpure-gray-6.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/tableau/tableau-10-light.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/tableau/tableau-10-medium.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/tableau/tableau-10.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/tableau/tableau-20.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/tableau/traffic-light.d.ts +0 -0
- /package/{types/shared → shared}/constants/colors/types.d.ts +0 -0
- /package/{types/shared → shared}/constants/common.d.ts +0 -0
- /package/{types/shared → shared}/constants/connections.d.ts +0 -0
- /package/{types/shared → shared}/constants/cookie.d.ts +0 -0
- /package/{types/shared → shared}/constants/dash.d.ts +0 -0
- /package/{types/shared → shared}/constants/datasets.d.ts +0 -0
- /package/{types/shared → shared}/constants/datepicker/relative-datepicker.d.ts +0 -0
- /package/{types/shared → shared}/constants/error/index.d.ts +0 -0
- /package/{types/shared → shared}/constants/error-codes.d.ts +0 -0
- /package/{types/shared → shared}/constants/exports.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/default.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/index.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/three-point/blue-gray-red.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/three-point/blue-yellow-red.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/three-point/orange-blue-green.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/three-point/orange-gray-blue.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/three-point/orange-violet-blue.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/three-point/pink-gray-green.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/three-point/red-orange-green.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/three-point/traffic-light.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/three-point/violet-blue-green.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/three-point/yellow-green-blue.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/three-point-gradients.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/two-point/blue.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/two-point/cyan.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/two-point/golden.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/two-point/gray.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/two-point/green-blue.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/two-point/green.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/two-point/oceanic.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/two-point/orange-yellow.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/two-point/red-blue.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/two-point/red.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/two-point/violet-orange.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/two-point/violet.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/two-point/yellow.d.ts +0 -0
- /package/{types/shared → shared}/constants/gradients/two-point-gradients.d.ts +0 -0
- /package/{types/shared → shared}/constants/header.d.ts +0 -0
- /package/{types/shared → shared}/constants/index.d.ts +0 -0
- /package/{types/shared → shared}/constants/markdown.d.ts +0 -0
- /package/{types/shared → shared}/constants/markup.d.ts +0 -0
- /package/{types/shared → shared}/constants/navigation.d.ts +0 -0
- /package/{types/shared → shared}/constants/old-schema.d.ts +0 -0
- /package/{types/shared → shared}/constants/placeholder.d.ts +0 -0
- /package/{types/shared → shared}/constants/print.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/action-panel.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/chart.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/collections.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/components.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/connections.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/control.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/dash.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/datasets.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/dl-navigation.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/field-editor.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/index.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/ql.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/settings.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/sign-in.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/uikit.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/visualization.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/wizard.d.ts +0 -0
- /package/{types/shared → shared}/constants/qa/workbooks.d.ts +0 -0
- /package/{types/shared → shared}/constants/ql.d.ts +0 -0
- /package/{types/shared → shared}/constants/shapes/index.d.ts +0 -0
- /package/{types/shared → shared}/constants/shapes/lines/index.d.ts +0 -0
- /package/{types/shared → shared}/constants/shapes/points/index.d.ts +0 -0
- /package/{types/shared → shared}/constants/themes.d.ts +0 -0
- /package/{types/shared → shared}/constants/timeout.d.ts +0 -0
- /package/{types/shared → shared}/constants/ui-sandbox.d.ts +0 -0
- /package/{types/shared → shared}/constants/url.d.ts +0 -0
- /package/{types/shared → shared}/constants/user.d.ts +0 -0
- /package/{types/shared → shared}/constants/visualization.d.ts +0 -0
- /package/{types/shared → shared}/constants/widgets.d.ts +0 -0
- /package/{types/shared → shared}/constants/wizard.d.ts +0 -0
- /package/{types/shared → shared}/constants/workbook-transfer.d.ts +0 -0
- /package/{types/shared → shared}/constants/workbooks.d.ts +0 -0
- /package/{types/shared → shared}/constants/yfm.d.ts +0 -0
- /package/{types/shared → shared}/endpoints/constants/index.d.ts +0 -0
- /package/{types/shared → shared}/endpoints/constants/opensource.d.ts +0 -0
- /package/{types/shared → shared}/endpoints/index.d.ts +0 -0
- /package/{types/shared → shared}/endpoints/schema/index.d.ts +0 -0
- /package/{types/shared → shared}/endpoints/schema/opensource.d.ts +0 -0
- /package/{types/shared → shared}/endpoints/sources/index.d.ts +0 -0
- /package/{types/shared → shared}/endpoints/sources/opensource.d.ts +0 -0
- /package/{types/shared → shared}/endpoints/sources/types.d.ts +0 -0
- /package/{types/shared → shared}/endpoints/types.d.ts +0 -0
- /package/{types/shared → shared}/endpoints/utils.d.ts +0 -0
- /package/{types/shared → shared}/index.d.ts +0 -0
- /package/{types/shared → shared}/modules/bi-api/index.d.ts +0 -0
- /package/{types/shared → shared}/modules/bi-api/mappers/index.d.ts +0 -0
- /package/{types/shared → shared}/modules/bi-api/mappers/v2.d.ts +0 -0
- /package/{types/shared → shared}/modules/charts-shared.d.ts +0 -0
- /package/{types/shared → shared}/modules/colors/common-helpers.d.ts +0 -0
- /package/{types/shared → shared}/modules/colors/distincts-helpers.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/ql/index.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/ql/mapQlConfigToLatestVersion.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/ql/v1/mapUndefinedConfigToV1.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/ql/v2/mapV1ConfigToV2.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/ql/v3/mapV2ConfigToV3.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/ql/v4/mapV3ConfigToV4.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/ql/v5/mapV4ConfigToV5.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/ql/v6/mapV5ConfigToV6.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/ql/v7/mapV6ConfigToV7.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/utils.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/index.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/mapChartsConfigToLatestVersion.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/mocks/v4.mock.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/v1/mapV1ConfigToV2.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/v10/mapV10ConfigToV11.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/v11/mapV11ConfigToV12.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/v12/mapV12ConfigToV13.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/v13/mapV13ConfigToV14.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/v14/mapV14ConfigToV15.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/v2/mapV2ConfigToV3.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/v3/mapV3ConfigToV4.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/v4/mapV4ConfigToV5.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/v5/mapV5ConfigToV6.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/v6/mapV6ConfigToV7.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/v7/mapV7ConfigToV8.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/v8/mapV8ConfigToV9.d.ts +0 -0
- /package/{types/shared → shared}/modules/config/wizard/v9/mapV9ConfigToV10.d.ts +0 -0
- /package/{types/shared → shared}/modules/control/typed-query-helpers.d.ts +0 -0
- /package/{types/shared → shared}/modules/dash-scheme-converter.d.ts +0 -0
- /package/{types/shared → shared}/modules/entry.d.ts +0 -0
- /package/{types/shared → shared}/modules/fields.d.ts +0 -0
- /package/{types/shared → shared}/modules/format-units/formatUnit.d.ts +0 -0
- /package/{types/shared → shared}/modules/format-units/i18n/en.json.d.ts +0 -0
- /package/{types/shared → shared}/modules/format-units/i18n/i18n.d.ts +0 -0
- /package/{types/shared → shared}/modules/format-units/i18n/ru.json.d.ts +0 -0
- /package/{types/shared → shared}/modules/format-units/index.d.ts +0 -0
- /package/{types/shared → shared}/modules/format-units/types.d.ts +0 -0
- /package/{types/shared → shared}/modules/index.d.ts +0 -0
- /package/{types/shared → shared}/modules/language.d.ts +0 -0
- /package/{types/shared → shared}/modules/markdown/emoji-defs.d.ts +0 -0
- /package/{types/shared → shared}/modules/markdown/markdown-plugins/unify-terms.d.ts +0 -0
- /package/{types/shared → shared}/modules/markdown/markdown.d.ts +0 -0
- /package/{types/shared → shared}/modules/markup.d.ts +0 -0
- /package/{types/shared → shared}/modules/qa-helpers.d.ts +0 -0
- /package/{types/shared → shared}/modules/ql-helpers.d.ts +0 -0
- /package/{types/shared → shared}/modules/sleep.d.ts +0 -0
- /package/{types/shared → shared}/modules/slugify.d.ts +0 -0
- /package/{types/shared → shared}/modules/tenant.d.ts +0 -0
- /package/{types/shared → shared}/modules/transliterate.d.ts +0 -0
- /package/{types/shared → shared}/modules/typed-query-api/helpers/parameters.d.ts +0 -0
- /package/{types/shared → shared}/modules/typed-query-api/index.d.ts +0 -0
- /package/{types/shared → shared}/modules/typed-query-api/mappers/parameters.d.ts +0 -0
- /package/{types/shared → shared}/modules/url.d.ts +0 -0
- /package/{types/shared → shared}/modules/user.d.ts +0 -0
- /package/{types/shared → shared}/modules/visualization/placeholder.d.ts +0 -0
- /package/{types/shared → shared}/modules/wizard/axis-mode.d.ts +0 -0
- /package/{types/shared → shared}/modules/wizard/axis-settings.d.ts +0 -0
- /package/{types/shared → shared}/modules/wizard/config.d.ts +0 -0
- /package/{types/shared → shared}/modules/wizard/index.d.ts +0 -0
- /package/{types/shared → shared}/modules/wizard-helpers.d.ts +0 -0
- /package/{types/shared → shared}/schema/auth/actions.d.ts +0 -0
- /package/{types/shared → shared}/schema/auth/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/auth/types/common.d.ts +0 -0
- /package/{types/shared → shared}/schema/auth/types/users.d.ts +0 -0
- /package/{types/shared → shared}/schema/auth-schema/auth/actions.d.ts +0 -0
- /package/{types/shared → shared}/schema/auth-schema/auth/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/auth-schema/auth/types.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi/actions/connections.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi/actions/datasets.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi/actions/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi/actions/oauth.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi/helpers/datasets.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi/helpers/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi/schemas/connections.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi/schemas/datasets.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi/schemas/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi/types/common.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi/types/connections.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi/types/datasets.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi/types/forms.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi/types/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi/types/oauth.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi-converter/actions/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi-converter/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/bi-converter/types/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/extensions/actions/iam-access-dialog.d.ts +0 -0
- /package/{types/shared → shared}/schema/extensions/actions/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/extensions/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/extensions/types/iam-access-dialog.d.ts +0 -0
- /package/{types/shared → shared}/schema/extensions/types/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/gateway-utils.d.ts +0 -0
- /package/{types/shared → shared}/schema/googleapis/actions.d.ts +0 -0
- /package/{types/shared → shared}/schema/meta-manager/actions/export.d.ts +0 -0
- /package/{types/shared → shared}/schema/meta-manager/actions/import.d.ts +0 -0
- /package/{types/shared → shared}/schema/meta-manager/actions/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/meta-manager/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/meta-manager/types/export.d.ts +0 -0
- /package/{types/shared → shared}/schema/meta-manager/types/import.d.ts +0 -0
- /package/{types/shared → shared}/schema/meta-manager/types/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/actions/dash/delete-dashboard.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/actions/editor.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/actions/entries.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/actions/markdown.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/actions/navigation.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/actions/ql/create-ql-chart.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/actions/ql/delete-ql-chart.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/actions/ql/get-ql-chart.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/actions/ql/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/actions/ql/update-ql-chart.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/actions/wizard/create-wizard-chart.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/actions/wizard/delete-wizard-chart.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/actions/wizard/get-wizard-chart.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/actions/wizard/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/actions/wizard/update-wizard-chart.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/helpers/dash/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/helpers/dash/migrate-dash-to-v1.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/helpers/editor/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/helpers/editor/validation.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/helpers/entries.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/helpers/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/helpers/validation.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/schemas/dash/create-dashboard-v1.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/schemas/dash/dash-v1.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/schemas/dash/delete-dashboard.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/schemas/dash/get-dashboard-v1.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/schemas/dash/update-dashboard-v1.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/schemas/ql.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/schemas/wizard.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/types/dash/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/types/entries.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/types/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/types/markdown.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/types/navigation.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/types/ql.d.ts +0 -0
- /package/{types/shared → shared}/schema/mix/types/wizard.d.ts +0 -0
- /package/{types/shared → shared}/schema/stat-api/types/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/types.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/collections/create-collection.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/collections/delete-collection.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/collections/delete-collections.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/collections/get-collection-breadcrumbs.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/collections/get-collection.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/collections/get-root-collection-permissions.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/collections/get-structure-items.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/collections/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/collections/move-collection.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/collections/move-collections.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/collections/update-collection.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/color-palettes.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/editor.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/embeds.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/entries/create-entry.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/entries/get-entries-relations.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/entries/get-entry.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/entries/update-entry.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/favorites.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/locks.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/operations.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/presets.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/private.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/state.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/template.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/tenant.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/user.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/workbooks/copy-workbook.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/workbooks/create-workbook.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/workbooks/delete-workbook.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/workbooks/delete-workbooks.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/workbooks/get-workbook-entries.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/workbooks/get-workbook-shared-entries.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/workbooks/get-workbook.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/workbooks/migrate-entries-to-workbook-by-copy.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/workbooks/migrate-entries-to-workbook-by-transfer.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/workbooks/move-workbook.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/workbooks/move-workbooks.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/actions/workbooks/update-workbook.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/schemas/collections/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/schemas/operation/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/schemas/workbooks/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/access-bindings.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/collections.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/color-palettes.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/common.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/editor.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/embeds.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/entries.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/favorites.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/fields.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/locks.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/operations.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/presets.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/private.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/sort.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/state.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/template.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/tenant.d.ts +0 -0
- /package/{types/shared → shared}/schema/us/types/workbooks.d.ts +0 -0
- /package/{types/shared → shared}/schema/us-private/actions/entries.d.ts +0 -0
- /package/{types/shared → shared}/schema/us-private/actions/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/us-private/actions/tenant.d.ts +0 -0
- /package/{types/shared → shared}/schema/us-private/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/us-private/types/entries.d.ts +0 -0
- /package/{types/shared → shared}/schema/us-private/types/index.d.ts +0 -0
- /package/{types/shared → shared}/schema/utils.d.ts +0 -0
- /package/{types/shared → shared}/server/axios.d.ts +0 -0
- /package/{types/shared → shared}/types/bi-api/index.d.ts +0 -0
- /package/{types/shared → shared}/types/bi-api/v2.d.ts +0 -0
- /package/{types/shared → shared}/types/chartkit/common.d.ts +0 -0
- /package/{components/FormattedValue.js → shared/types/chartkit/common.js} +0 -0
- /package/{types/shared → shared}/types/chartkit/dl-chartkit.d.ts +0 -0
- /package/{types/shared → shared}/types/chartkit/gravity-charts/index.d.ts +0 -0
- /package/{types/shared → shared}/types/chartkit/gravity-charts/scatter.d.ts +0 -0
- /package/{types/shared → shared}/types/chartkit/index.d.ts +0 -0
- /package/{types/shared → shared}/types/chartkit/table.d.ts +0 -0
- /package/{types/shared → shared}/types/charts.d.ts +0 -0
- /package/{types/shared → shared}/types/color-palettes.d.ts +0 -0
- /package/{types/shared → shared}/types/common-update.d.ts +0 -0
- /package/{types/shared → shared}/types/common.d.ts +0 -0
- /package/{types/shared → shared}/types/config/ql/index.d.ts +0 -0
- /package/{types/shared → shared}/types/config/ql/v1.d.ts +0 -0
- /package/{types/shared → shared}/types/config/ql/v2.d.ts +0 -0
- /package/{types/shared → shared}/types/config/ql/v3.d.ts +0 -0
- /package/{types/shared → shared}/types/config/ql/v4.d.ts +0 -0
- /package/{types/shared → shared}/types/config/ql/v5.d.ts +0 -0
- /package/{types/shared → shared}/types/config/ql/v6.d.ts +0 -0
- /package/{types/shared → shared}/types/config/ql/v7.d.ts +0 -0
- /package/{types/shared → shared}/types/config/wizard/index.d.ts +0 -0
- /package/{types/shared → shared}/types/config/wizard/v10.d.ts +0 -0
- /package/{types/shared → shared}/types/config/wizard/v11.d.ts +0 -0
- /package/{types/shared → shared}/types/config/wizard/v12.d.ts +0 -0
- /package/{types/shared → shared}/types/config/wizard/v13.d.ts +0 -0
- /package/{types/shared → shared}/types/config/wizard/v14.d.ts +0 -0
- /package/{types/shared → shared}/types/config/wizard/v15.d.ts +0 -0
- /package/{types/shared → shared}/types/config/wizard/v2.d.ts +0 -0
- /package/{types/shared → shared}/types/config/wizard/v3.d.ts +0 -0
- /package/{types/shared → shared}/types/config/wizard/v4.d.ts +0 -0
- /package/{types/shared → shared}/types/config/wizard/v5.d.ts +0 -0
- /package/{types/shared → shared}/types/config/wizard/v6.d.ts +0 -0
- /package/{types/shared → shared}/types/config/wizard/v7.d.ts +0 -0
- /package/{types/shared → shared}/types/config/wizard/v8.d.ts +0 -0
- /package/{types/shared → shared}/types/config/wizard/v9.d.ts +0 -0
- /package/{types/shared → shared}/types/configs/index.d.ts +0 -0
- /package/{types/shared → shared}/types/connections.d.ts +0 -0
- /package/{types/shared → shared}/types/dash.d.ts +0 -0
- /package/{types/shared → shared}/types/dataset.d.ts +0 -0
- /package/{types/shared → shared}/types/entry.d.ts +0 -0
- /package/{types/shared → shared}/types/feature.d.ts +0 -0
- /package/{types/shared → shared}/types/formatting.d.ts +0 -0
- /package/{types/shared → shared}/types/index.d.ts +0 -0
- /package/{types/shared → shared}/types/language.d.ts +0 -0
- /package/{types/shared → shared}/types/menu.d.ts +0 -0
- /package/{types/shared → shared}/types/meta-manager.d.ts +0 -0
- /package/{types/shared → shared}/types/metrica.d.ts +0 -0
- /package/{types/shared → shared}/types/notification.d.ts +0 -0
- /package/{types/shared → shared}/types/permissions.d.ts +0 -0
- /package/{types/shared → shared}/types/ql/common.d.ts +0 -0
- /package/{types/shared → shared}/types/ql/versions.d.ts +0 -0
- /package/{types/shared → shared}/types/typed-query-api/index.d.ts +0 -0
- /package/{types/shared → shared}/types/typed-query-api/v1.d.ts +0 -0
- /package/{types/shared → shared}/types/ui-sandbox.d.ts +0 -0
- /package/{types/shared → shared}/types/utility-types.d.ts +0 -0
- /package/{types/shared → shared}/types/widget.d.ts +0 -0
- /package/{types/shared → shared}/types/wizard/background-settings.d.ts +0 -0
- /package/{types/shared → shared}/types/wizard/bars.d.ts +0 -0
- /package/{types/shared → shared}/types/wizard/column.d.ts +0 -0
- /package/{types/shared → shared}/types/wizard/export.d.ts +0 -0
- /package/{types/shared → shared}/types/wizard/field.d.ts +0 -0
- /package/{types/shared → shared}/types/wizard/index.d.ts +0 -0
- /package/{types/shared → shared}/types/wizard/misc.d.ts +0 -0
- /package/{types/shared → shared}/types/wizard/placeholder.d.ts +0 -0
- /package/{types/shared → shared}/types/wizard/sub-totals.d.ts +0 -0
- /package/{types/shared → shared}/types/wizard/versions.d.ts +0 -0
- /package/{types/shared → shared}/utils/array/assert-non-empty-array.d.ts +0 -0
- /package/{types/shared → shared}/utils/array/index.d.ts +0 -0
- /package/{types/shared → shared}/utils/dash.d.ts +0 -0
- /package/{types/shared → shared}/utils/dataset.d.ts +0 -0
- /package/{types/shared → shared}/utils/date-time.d.ts +0 -0
- /package/{types/shared → shared}/utils/entry.d.ts +0 -0
- /package/{types/shared → shared}/utils/feature.d.ts +0 -0
- /package/{types/shared → shared}/utils/functions-registry.d.ts +0 -0
- /package/{types/shared → shared}/utils/index.d.ts +0 -0
- /package/{types/shared → shared}/utils/makeFunctionTemplate.d.ts +0 -0
- /package/{types/shared → shared}/utils/manualError.d.ts +0 -0
- /package/{types/shared → shared}/utils/markdown.d.ts +0 -0
- /package/{types/shared → shared}/utils/markup.d.ts +0 -0
- /package/{types/shared → shared}/utils/openapi/index.d.ts +0 -0
- /package/{types/shared → shared}/utils/palettes.d.ts +0 -0
- /package/{types/shared → shared}/utils/ui-sandbox.d.ts +0 -0
- /package/{types/shared → shared}/utils/visualization-check.d.ts +0 -0
- /package/{types/shared → shared}/utils/wizard.d.ts +0 -0
- /package/{types/shared → shared}/zod-schemas/dash.d.ts +0 -0
- /package/{types/shared → shared}/zod-schemas/entry.d.ts +0 -0
- /package/{types/shared → shared}/zod-schemas/permissions.d.ts +0 -0
- /package/{types/shared → shared}/zod-schemas/shared-entry-permissions.d.ts +0 -0
- /package/{types/ui → ui}/capabilities/capabilities.d.ts +0 -0
- /package/{types/ui → ui}/capabilities/index.d.ts +0 -0
- /package/{types/ui → ui}/components/AccessRights/AccessRightsUrlOpen.d.ts +0 -0
- /package/{types/ui → ui}/components/ActionPanel/ActionPanel.d.ts +0 -0
- /package/{types/ui → ui}/components/ActionPanel/ActionPanelHelpers.d.ts +0 -0
- /package/{types/ui → ui}/components/ActionPanel/components/ChartSaveControls/ChartSaveControl.d.ts +0 -0
- /package/{types/ui → ui}/components/ActionPanel/components/ChartSaveControls/components/SaveButton/SaveButton.d.ts +0 -0
- /package/{types/ui → ui}/components/ActionPanel/components/ChartSaveControls/components/SaveDropdown/SaveDropdown.d.ts +0 -0
- /package/{types/ui → ui}/components/ActionPanel/components/ChartSaveControls/types.d.ts +0 -0
- /package/{types/ui → ui}/components/ActionPanel/components/ChartSaveControls/useAdditionalItems.d.ts +0 -0
- /package/{types/ui → ui}/components/ActionPanel/components/EntryPanel/EntryPanel.d.ts +0 -0
- /package/{types/ui → ui}/components/ActionPanel/index.d.ts +0 -0
- /package/{types/ui → ui}/components/ActionPanel/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/AdaptiveDialog/AdaptiveDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/AnimateBlock/AnimateBlock.d.ts +0 -0
- /package/{types/ui → ui}/components/AnimateBlock/index.d.ts +0 -0
- /package/{types/ui → ui}/components/AsideHeaderAdapter/AsideHeaderAdapter.d.ts +0 -0
- /package/{types/ui → ui}/components/AsideHeaderAdapter/LogoText/LogoText.d.ts +0 -0
- /package/{types/ui → ui}/components/AsideHeaderAdapter/Settings/Appearance/HighcontrastSettings.d.ts +0 -0
- /package/{types/ui → ui}/components/AsideHeaderAdapter/Settings/Appearance/ThemeSettings.d.ts +0 -0
- /package/{types/ui → ui}/components/AsideHeaderAdapter/Settings/ItemField/ItemField.d.ts +0 -0
- /package/{types/ui → ui}/components/AsideHeaderAdapter/Settings/LanguageSettings.d.ts +0 -0
- /package/{types/ui → ui}/components/AsideHeaderAdapter/Settings/Settings.d.ts +0 -0
- /package/{types/ui → ui}/components/AsideHeaderAdapter/Settings/types.d.ts +0 -0
- /package/{types/ui → ui}/components/AsideHeaderAdapter/Settings/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/AsideHeaderAdapter/VersionDialog/VersionDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/AsideHeaderAdapter/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/AsideHeaderAdapter/helpers.d.ts +0 -0
- /package/{types/ui → ui}/components/AsideHeaderAdapter/index.d.ts +0 -0
- /package/{types/ui → ui}/components/AsyncImage/AsyncImage.d.ts +0 -0
- /package/{types/ui → ui}/components/AutogeneratedPaletteIcon/AutogeneratedPaletteIcon.d.ts +0 -0
- /package/{types/ui → ui}/components/BetaMark/BetaMark.d.ts +0 -0
- /package/{types/ui → ui}/components/Breadcrumbs/CollectionsStructureBreadcrumbs/CollectionsStructureBreadcrumbs.d.ts +0 -0
- /package/{types/ui → ui}/components/BreadcrumbsItemLink/BreadcrumbsItemLink.d.ts +0 -0
- /package/{types/ui → ui}/components/ButtonAttach/ButtonAttach.d.ts +0 -0
- /package/{types/ui → ui}/components/Collapse/Collapse.d.ts +0 -0
- /package/{types/ui → ui}/components/Collapse/types.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionFilters/CollectionFilters.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionFilters/index.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionIcon/CollectionIcon.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CollectionDialog/CollectionDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CollectionDialog/index.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CollectionNoCreatePermissionDialog/CollectionNoCreatePermissionDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CollectionNoCreatePermissionDialog/index.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CollectionStructureDialog/CollectionStructureDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CollectionStructureDialog/CreateEntityDialog/CreateEntityDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CollectionStructureDialog/NewTitleDialog/NewTitleDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/Item/Item.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/Item/index.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/StructureItemSelect.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/index.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CollectionStructureDialog/index.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CopyEntriesDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CopyWorkbookDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CreateCollectionDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CreateEntryInWorkbookDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CreateWorkbookDialog/CreateWorkbookDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CreateWorkbookDialog/ImportFileField/ImportFileField.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CreateWorkbookDialog/ImportWorkbookView/ImportWorkbookView.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/CreateWorkbookDialog/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/DeleteCollectionDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/DeleteCollectionsWorkbooksContent/DeleteCollectionsWorkbooksContent.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/DeleteCollectionsWorkbooksContent/index.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/DeleteCollectionsWorkbooksDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/DeleteDialog/DeleteDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/DeleteDialog/index.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/DeleteWorkbookDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/EditCollectionDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/EditSharedEntryDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/EditWorkbookDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/ExportWorkbookDialog/ExportInfo/ExportInfo.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/ExportWorkbookDialog/ExportWorkbookDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/ExportWorkbookDialog/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/MigrateEntryToWorkbookDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/MoveCollectionDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/MoveCollectionsWorkbooksDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/MoveSharedEntryDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/MoveWorkbookDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/WorkbookDialog/WorkbookDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/WorkbookDialog/index.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/WorkbookDialog/types.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/components/EntriesNotificationCut/EntriesNotificationCut.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/components/EntriesNotificationCut/helpers.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/components/EntriesNotificationCut/types.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/hooks/useCollectionEntityDialogState.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/hooks/useCollectionStructureDialogState.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/hooks/useNotificationsAndDetails.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/index.d.ts +0 -0
- /package/{types/ui → ui}/components/CollectionsStructure/types.d.ts +0 -0
- /package/{types/ui → ui}/components/ColorPaletteEditorContainer/ColorPaletteCharkitPreview/ColorPaletteChartkitPreview.d.ts +0 -0
- /package/{types/ui → ui}/components/ColorPaletteEditorContainer/ColorPaletteCharkitPreview/types.d.ts +0 -0
- /package/{types/ui → ui}/components/ColorPaletteEditorContainer/ColorPaletteCharkitPreview/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/ColorPaletteEditorContainer/ColorPaletteEditorContainer.d.ts +0 -0
- /package/{types/ui → ui}/components/ColorPaletteEditorContainer/ColorPalettesCard/ColorPalettesCard.d.ts +0 -0
- /package/{types/ui → ui}/components/ColorPaletteEditorContainer/ColorPalettesCard/DefaultPaletteSelect/DefaultPaletteSelect.d.ts +0 -0
- /package/{types/ui → ui}/components/ColorPaletteEditorContainer/ColorTextInput/ColorTextInput.d.ts +0 -0
- /package/{types/ui → ui}/components/ColorPaletteEditorContainer/GradientPaletteEditor/GradientPaletteEditor.d.ts +0 -0
- /package/{types/ui → ui}/components/ColorPaletteEditorContainer/PaletteEditor/PaletteEditor.d.ts +0 -0
- /package/{types/ui → ui}/components/ColorPaletteSelect/ColorPaletteSelect.d.ts +0 -0
- /package/{types/ui → ui}/components/ColorPickerInput/ColorPickerInput.d.ts +0 -0
- /package/{types/ui → ui}/components/ColorPickerInput/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/ConnectorIcon/ConnectorIcon.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/BackButton/BackButton.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Dialog/Dialog.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/AppearanceSection/AppearanceSection.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/AppearanceSection/Rows/ColorAccentRow/ColorAccentRow.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/AppearanceSection/Rows/HintRow/HintRow.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/AppearanceSection/Rows/InnerTitleRow/InnerTitleRow.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/AppearanceSection/Rows/TitlePlacementRow/TitlePlacementRow.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/AppearanceSection/Rows/TitleRow/TitleRow.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/CommonGroupSettingsSection.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/ConnectionSettings.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/ConnectionSelector/ConnectionSelector.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/ConnectionSelector/helpers.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/QueryTypeControl.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/components/EditLabelControl/EditLabelControl.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/components/EditQueryControl/EditQueryControl.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/helpers.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/helpers/get-distincts-by-typed-query.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/DatasetSelectorSettings/DatasetSelectorSettings.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/EntrySelector/EntrySelector.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ExternalSelectorSettings/ExternalSelectorSettings.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/CurrentTabOption/CurrentTabOption.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/ImpactTypeSelect.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/SelectedTabsOption/SelectedTabsOption.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/helpers.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/useTabVisibilityValidation.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/InputTypeSelector/InputTypeSelector.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/ParameterNameInput/ParameterNameInput.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/CommonSettingsSection/helpers/input-type-select.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/Date/Acceptable/Acceptable.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/Date/Default/Default.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/OperationSelector/OperationSelector.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/ParametersSection/ParametersSection.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/Switchers/Button/Button.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/Switchers/DatasetField/DatasetField.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/Acceptable/Acceptable.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/Acceptable/SelectorValuesDialogBody.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/ListValueControl.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/MultiselectableCheckbox.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/DynamicValueSelect.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/StaticValueSelect.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/hooks.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/types.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/RequiredValueCheckbox/RequiredValueCheckbox.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/ValueSelector.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/ValueSelector/helpers/get-distincts-by-dataset-field.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/Sections/Wrapper/Wrapper.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/SelectorPreview/SelectorPreview.d.ts +0 -0
- /package/{types/ui → ui}/components/ControlComponents/SelectorTypeSelect/SelectorTypeSelect.d.ts +0 -0
- /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/CopyEntriesToWorkbookDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/components/Body/Body.d.ts +0 -0
- /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/components/Body/index.d.ts +0 -0
- /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/components/EntriesGroup/EntriesGroup.d.ts +0 -0
- /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/components/EntriesGroup/index.d.ts +0 -0
- /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/components/EntryRow/EntryRow.d.ts +0 -0
- /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/components/EntryRow/index.d.ts +0 -0
- /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/index.d.ts +0 -0
- /package/{types/ui → ui}/components/CopyEntriesToWorkbookDialog/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/DNDPane/DNDItem/DNDItem.d.ts +0 -0
- /package/{types/ui → ui}/components/DNDPane/DNDPane.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/DashKit.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/context/WidgetContext.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/helpers.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Control/Control.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Control/ControlItems/ControlItemSelect.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Control/Error/Error.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Control/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Control/prerenderMiddleware.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Control/types.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Control/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/DebugInfoTool/DebugInfoTool.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/GroupControl/Control/Control.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/GroupControl/Control/store/reducer.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/GroupControl/Control/store/types.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/GroupControl/GroupControl.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/GroupControl/types.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/GroupControl/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Image/Image.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/RendererWrapper/RendererWrapper.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Text/Text.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Title/AnchorLink/AnchorLink.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Title/Title.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Title/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Widget/WidgetPlugin.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Widget/components/Footer.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Widget/components/Header.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Widget/store/actions.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Widget/store/reducer.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/Widget/types.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/plugins/types.d.ts +0 -0
- /package/{types/ui → ui}/components/DashKit/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/DataTypeIcon/DataTypeIcon.d.ts +0 -0
- /package/{types/ui → ui}/components/DatasetFieldList/DatasetFieldList.d.ts +0 -0
- /package/{types/ui → ui}/components/DebouncedInput/DebouncedInput.d.ts +0 -0
- /package/{types/ui → ui}/components/DebouncedInput/index.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogAddSharedEntryFromLink/DialogAddSharedEntryFromLink.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogChartWidget/DialogChartWidget.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogCommon/DialogCommon.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogConfirm/DialogConfirm.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogDefault/DialogDefault.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogEditItem/DialogEditItem.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogEntryDescription/DialogEntryDescription.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogEntryDescription/DialogEntryDescriptionWrapper.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogEntryDescription/EntryDescriptionButton.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogEntryDescription/index.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogErrorWithTabs/DebugInfo/DebugInfo.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogErrorWithTabs/DialogErrorWithTabs.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogErrorWithTabs/ErrorText/ErrorText.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogErrorWithTabs/Tabs/DatabaseRequestTab/DatabaseRequestTab.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogErrorWithTabs/Tabs/DatabaseResponseTab/DatabaseResponseTab.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogErrorWithTabs/Tabs/DebugTab/DebugTab.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogErrorWithTabs/Tabs/DebugTab/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogErrorWithTabs/Tabs/DocumentationTab/DocumentationTab.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogExternalControl/DialogExternalControl.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogFieldEditor/DialogFieldEditor.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogFilter/BooleanFilter/BooleanFilter.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogFilter/DateFilter/DateFilter.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogFilter/DialogFilter.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogFilter/InputFilter/InputFilter.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogFilter/SelectFilter/SelectFilter.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogFilter/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogFilter/typings.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogFilter/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogGroupControl/DialogGroupControl.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogGroupControl/GroupControlBody/GroupControlBody.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogGroupControl/GroupControlBody/SimilarSelectorsBlock/SimilarSelectorsBlock.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogGroupControl/GroupControlFooter/GroupControlFooter.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogGroupControl/GroupControlSidebar/GroupControlSidebar.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogGroupControl/GroupControlSidebar/TabItemWrapper/TabItemWrapper.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogGroupControl/GroupExtendedSettings/ControlPlacementRow.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogGroupControl/GroupExtendedSettings/GroupExtendedSettings.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogGroupControl/hooks/useSimilarSelectorsActions.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogImageWidget/DialogImageWidget.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogImageWidget/index.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogManager/DialogManager.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogManager/DialogManagerContainer.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogNoRights/DialogNoRights.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogParameter/DefaultValueSection.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogParameter/DialogParameter.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogParameter/TemplateSection.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogParameter/helpers.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogParameter/useParameterForm.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogParameter/useParameterTooltipMarkdown.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogParameter/useValidationErrors.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogQLParameter/DialogQLParameter.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelatedEntities/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelations/components/Content/Content.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelations/components/Content/Row.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelations/components/Content/helpers.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelations/components/DialogAliases/DialogAliases.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelations/components/DialogAliases/components/AddAliases/AddAliases.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelations/components/DialogAliases/components/AddAliases/helpers.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelations/components/DialogAliases/components/AliasesDetail/AliasesDetail.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelations/components/DialogAliases/components/AliasesList/AliasesInvalidList.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelations/components/DialogAliases/components/AliasesList/AliasesList.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelations/components/Filters/Filters.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelations/helpers.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelations/hooks/helpersChart.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelations/hooks/helpersDatasets.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelations/hooks/useFilteredRelations.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelations/hooks/useRelations.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogRelations/types.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSelectSharedEntry/DialogSelectSharedEntry.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSharedEntryBindings/DialogSharedEntryBindings.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSharedEntryBindings/components/DeleteAlert.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSharedEntryBindings/components/DirectionControl.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSharedEntryBindings/components/Relations.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSharedEntryBindings/components/SharedBindingsFooter.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSharedEntryBindings/components/SharedBindingsHeader.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSharedEntryBindings/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSharedEntryBindings/hooks/useSharedEntryBindings.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSharedEntryBindings/types.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSharedEntryBindings/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSharedEntryPermissions/DialogSharedEntryPermissions.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSharedEntryPermissions/components/PermissionButton/PermissionButton.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSharedEntryUnbind/DialogSharedEntryUnbind.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSharedEntryUnbind/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSharedRelatedEntities/DialogSharedRelatedEntities.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogSuccessWithAction/DialogSuccessWithAction.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogTextWidget/DialogTextWidget.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogTextWidget/index.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogTitleWidget/DialogTitleWidget.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogTitleWidget/useColorSettings.d.ts +0 -0
- /package/{types/ui → ui}/components/DialogWarning/DialogWarning.d.ts +0 -0
- /package/{types/ui → ui}/components/DragAndDrop/DragAndDrop.d.ts +0 -0
- /package/{types/ui → ui}/components/DropdownAction/DropdownAction.d.ts +0 -0
- /package/{types/ui → ui}/components/DropdownNavigation/DropdownNavigation.d.ts +0 -0
- /package/{types/ui → ui}/components/EditableText/EditableText.d.ts +0 -0
- /package/{types/ui → ui}/components/EntitiesList/EntitiesList.d.ts +0 -0
- /package/{types/ui → ui}/components/EntitiesList/types.d.ts +0 -0
- /package/{types/ui → ui}/components/EntityIcon/EntityIcon.d.ts +0 -0
- /package/{types/ui → ui}/components/EntityLink/EntityLink.d.ts +0 -0
- /package/{types/ui → ui}/components/EntityRow/EntityRow.d.ts +0 -0
- /package/{types/ui → ui}/components/EntriesList/EntriesList.d.ts +0 -0
- /package/{types/ui → ui}/components/EntriesList/Item/Item.d.ts +0 -0
- /package/{types/ui → ui}/components/EntriesList/types.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryBreadcrumbs/EntryBreadcrumbs.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryBreadcrumbs/helpers.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryContextMenu/EntryContextMenu.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryContextMenu/EntryContextMenuBase/EntryContextMenuBase.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryContextMenu/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryContextMenu/helpers.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryContextMenu/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryContextMenu/types.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryContextMenu/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryContextMenu/withConfiguredEntryContextMenu/helpers.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryContextMenu/withConfiguredEntryContextMenu/withConfiguredEntryContextMenu.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogAccess/DialogAccess.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogAccessDescription/DialogAccessDescription.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogCopyEntry/DialogCopyEntry.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogCopyEntry/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogCreateDashboard/DialogCreateDashboard.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogCreateDashboard/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogCreateEditorChart/DialogCreateEditorChart.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogCreateEditorChart/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogCreateFolder/DialogCreateFolder.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogCreateFolder/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogCreateQLChart/DialogCreateQLChart.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogCreateQLChart/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogCreateWizardChart/DialogCreateWizardChart.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogCreateWizardChart/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogCreateWorkbookEntry/DialogCreateWorkbookEntry.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogDeleteEntry/DialogDeleteEntry.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogDeleteEntry/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogEditFavoritesAlias/DialogEditFavoritesAlias.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogEditFavoritesAlias/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogEditWarning/DialogEditWarning.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogEntrySaveAsNew/DialogEntrySaveAsNew.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogEntrySaveAsNew/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogMakeActualConfirm/DialogMakeActualConfirm.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogMigrateToWorkbook/DialogMigrateToWorkbook.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogMigrateToWorkbook/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogMoveEntry/DialogMoveEntry.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogMoveEntry/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogRenameEntry/DialogRenameEntry.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogRenameEntry/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogShareEntry/DialogShareEntry.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogShareEntry/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/AlertTooltip/AlertTooltip.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/AuthorSection/AuthorSection.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/ContentError/ContentError.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/ContentLoader/ContentLoader.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/CurrentEntrySection/CurrentEntrySection.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/DialogAlert/DialogAlert.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/DialogPublic.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/RelationsList/RelationsList.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/SharedLink/SharedLink.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/helpers.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/types.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogPublic/useDialogPublicState.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/DialogSwitchPublic.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogSwitchPublic/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogUnlock/DialogUnlock.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/DialogUnlock/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/EntryDialogBase/EntryDialogBase.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/types.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryDialogues/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryIcon/EntryIcon.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryRow/EntryRow.d.ts +0 -0
- /package/{types/ui → ui}/components/EntrySuggest/EntrySuggest.d.ts +0 -0
- /package/{types/ui → ui}/components/EntrySuggest/types.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryTitle/EntryTitle.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryTitle/index.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryTitle/types.d.ts +0 -0
- /package/{types/ui → ui}/components/EntryTitle/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/ErrorBoundary/ErrorBoundary.d.ts +0 -0
- /package/{types/ui → ui}/components/ErrorContent/DebugInfo/DebugInfo.d.ts +0 -0
- /package/{types/ui → ui}/components/ErrorContent/ErrorContent.d.ts +0 -0
- /package/{types/ui → ui}/components/ErrorPage/ErrorPage.d.ts +0 -0
- /package/{types/ui → ui}/components/ErrorPage/withErrorPage.d.ts +0 -0
- /package/{types/ui → ui}/components/ExpandablePanel/ExpandablePanel.d.ts +0 -0
- /package/{types/ui → ui}/components/FieldEditor/FieldEditor.d.ts +0 -0
- /package/{types/ui → ui}/components/FieldEditor/components/DocSection.d.ts +0 -0
- /package/{types/ui → ui}/components/FieldEditor/components/FormulaSection.d.ts +0 -0
- /package/{types/ui → ui}/components/FieldEditor/components/NameHeader.d.ts +0 -0
- /package/{types/ui → ui}/components/FieldEditor/components/Settings.d.ts +0 -0
- /package/{types/ui → ui}/components/FieldEditor/components/SourceSection.d.ts +0 -0
- /package/{types/ui → ui}/components/FieldEditor/components/helpers.d.ts +0 -0
- /package/{types/ui → ui}/components/FieldEditor/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/FieldEditor/index.d.ts +0 -0
- /package/{types/ui → ui}/components/FieldEditor/typings.d.ts +0 -0
- /package/{types/ui → ui}/components/FieldEditor/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/FieldWrapper/FieldWrapper.d.ts +0 -0
- /package/{types/ui → ui}/components/FloatMenu/FloatMenu.d.ts +0 -0
- /package/{types/ui → ui}/components/FormSection/FormSection.d.ts +0 -0
- /package/{types/ui → ui}/components/FormattedValue/FormattedValue.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/AccessList/AccessList.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/AccessList/ActionPanel/ActionPanel.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/AccessList/Block/Block.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/AccessList/DirectAccessesTable/Controls/Controls.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/AccessList/DirectAccessesTable/DirectAccessesTable.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/AccessList/DirectAccessesTable/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/AccessList/Filters/Filters.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/AccessList/InheritedAccessesTable/InheritedAccessesTable.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/AddSubjects/ActionPanel/ActionPanel.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/AddSubjects/AddSubjects.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/AddSubjects/SubjectsList/SubjectsList.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/IamAccessDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/IamAccessDialogComponent.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/ResourceInfo/ResourceInfo.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/index.d.ts +0 -0
- /package/{types/ui → ui}/components/IamAccessDialog/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/IconById/IconById.d.ts +0 -0
- /package/{types/ui → ui}/components/Illustration/Illustration.d.ts +0 -0
- /package/{types/ui → ui}/components/Illustration/context.d.ts +0 -0
- /package/{types/ui → ui}/components/Illustration/getIllustrationStore.d.ts +0 -0
- /package/{types/ui → ui}/components/Illustration/getRebrandingIllustrationStore.d.ts +0 -0
- /package/{types/ui → ui}/components/Illustration/types.d.ts +0 -0
- /package/{types/ui → ui}/components/Illustration/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/InaccessibleOnMobileInset/InaccessibleOnMobileInset.d.ts +0 -0
- /package/{types/ui → ui}/components/Interpolate/Interpolate.d.ts +0 -0
- /package/{types/ui → ui}/components/Interpolate/index.d.ts +0 -0
- /package/{types/ui → ui}/components/Interpolate/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/InterpolatedText/InterpolatedText.d.ts +0 -0
- /package/{types/ui → ui}/components/LandingPage/LandingPage.d.ts +0 -0
- /package/{types/ui → ui}/components/ListWithMenu/ListWithMenu.d.ts +0 -0
- /package/{types/ui → ui}/components/ListWithRemove/ListWithRemove.d.ts +0 -0
- /package/{types/ui → ui}/components/LocationChange/LocationChange.d.ts +0 -0
- /package/{types/ui → ui}/components/MarkdownControl/MarkdownControl.d.ts +0 -0
- /package/{types/ui → ui}/components/MarkdownHelpPopover/Content.d.ts +0 -0
- /package/{types/ui → ui}/components/MarkdownHelpPopover/MarkdownHelpPopover.d.ts +0 -0
- /package/{types/ui → ui}/components/Markup/Markup.d.ts +0 -0
- /package/{types/ui → ui}/components/Markup/components/MarkupTooltip/MarkupTooltip.d.ts +0 -0
- /package/{types/ui → ui}/components/Markup/components/UserInfo/UserInfo.d.ts +0 -0
- /package/{types/ui → ui}/components/Markup/components/index.d.ts +0 -0
- /package/{types/ui → ui}/components/Markup/index.d.ts +0 -0
- /package/{types/ui → ui}/components/Markup/types.d.ts +0 -0
- /package/{types/ui → ui}/components/Markup/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/MigrateToWorkbookDialog/MigrateToWorkbookDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/MigrateToWorkbookDialog/components/Body/Body.d.ts +0 -0
- /package/{types/ui → ui}/components/MigrateToWorkbookDialog/components/Body/index.d.ts +0 -0
- /package/{types/ui → ui}/components/MigrateToWorkbookDialog/components/EntriesGroup/EntriesGroup.d.ts +0 -0
- /package/{types/ui → ui}/components/MigrateToWorkbookDialog/components/EntriesGroup/index.d.ts +0 -0
- /package/{types/ui → ui}/components/MigrateToWorkbookDialog/components/EntryRow/EntryRow.d.ts +0 -0
- /package/{types/ui → ui}/components/MigrateToWorkbookDialog/components/EntryRow/index.d.ts +0 -0
- /package/{types/ui → ui}/components/MigrateToWorkbookDialog/index.d.ts +0 -0
- /package/{types/ui → ui}/components/MobileHeader/MobileHeader.d.ts +0 -0
- /package/{types/ui → ui}/components/MobileHeader/MobileHeaderComponent/BurgerMenuFooter/BurgerMenuFooter.d.ts +0 -0
- /package/{types/ui → ui}/components/MobileHeader/MobileHeaderComponent/MobileHeaderComponent.d.ts +0 -0
- /package/{types/ui → ui}/components/MobileHeader/MobileHeaderComponent/UserPanel/UserPanel.d.ts +0 -0
- /package/{types/ui → ui}/components/MobileHeader/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/MobileTocToggle/MobileTocToggle.d.ts +0 -0
- /package/{types/ui → ui}/components/Monaco/LazyMonaco.d.ts +0 -0
- /package/{types/ui → ui}/components/Monaco/Monaco.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Base/NavigationBase.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Base/configure.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Base/types.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Base/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/CreateEntry/getCreateEntryItems.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/EntryContextButton/EntryContextButton.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/ErrorView/ErrorView.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/FavoritesNameWithAliasItem/FavoritesNameWithAliasItem.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/NavigationBreadcrumbs/BreadcrumbMenu.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/NavigationBreadcrumbs/NavigationBreadcrumbs.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/NavigationEntries.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/NavigationInline.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/NavigationMinimal.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/NavigationModal.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/OrderSelect/OrderSelect.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/SearchInput/SearchInput.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/Sidebar/Sidebar.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/TableView/BatchDialog/BatchDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/TableView/List/List.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/TableView/Row/Row.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/TableView/Row/RowHeader.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/TableView/TableView.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/TableView/types.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/Core/TableView/useBatchSelect.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/NavigationMinimal.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/NavigationModal.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/PlaceSelect/PlaceSelect.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/components/BatchPanel/BatchPanel.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/components/EmptyState/EmptyState.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/components/EmptyState/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/dialogs/BatchMove/AccessError/AccessError.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/dialogs/BatchMove/BatchMove.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/dialogs/BatchMove/MoveError/MoveError.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/dialogs/BatchMove/SelectDestination/SelectDestination.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/dialogs/BatchMove/types.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/hoc/resolveNavigationPath.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/index.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/settings.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/types.d.ts +0 -0
- /package/{types/ui → ui}/components/Navigation/util.d.ts +0 -0
- /package/{types/ui → ui}/components/NavigationPrompt/NavigationPrompt.d.ts +0 -0
- /package/{types/ui → ui}/components/NavigationTabs/NavigationTabs.d.ts +0 -0
- /package/{types/ui → ui}/components/NumberFormatSettings/NumberFormatSettings.d.ts +0 -0
- /package/{types/ui → ui}/components/NumberFormatSettings/NumberInput/NumberInput.d.ts +0 -0
- /package/{types/ui → ui}/components/OpenDialogNeedReset/OpenDialogNeedReset.d.ts +0 -0
- /package/{types/ui → ui}/components/OrderBySelect/OrderBySelect.d.ts +0 -0
- /package/{types/ui → ui}/components/OrderBySelect/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/OrderBySelect/index.d.ts +0 -0
- /package/{types/ui → ui}/components/OrderBySelect/types.d.ts +0 -0
- /package/{types/ui → ui}/components/PageTitle/PageTitle.d.ts +0 -0
- /package/{types/ui → ui}/components/PageTitle/index.d.ts +0 -0
- /package/{types/ui → ui}/components/PageTitle/usePageTitle.d.ts +0 -0
- /package/{types/ui → ui}/components/PaletteIcon/PaletteIcon.d.ts +0 -0
- /package/{types/ui → ui}/components/PaletteItem/PaletteItem.d.ts +0 -0
- /package/{types/ui → ui}/components/PathSelect/PathSelect.d.ts +0 -0
- /package/{types/ui → ui}/components/Picture/Picture.d.ts +0 -0
- /package/{types/ui → ui}/components/PlaceholderIllustration/PlaceholderIllustration.d.ts +0 -0
- /package/{types/ui → ui}/components/PlaceholderIllustration/types.d.ts +0 -0
- /package/{types/ui → ui}/components/Progress/DialogCounterProgress.d.ts +0 -0
- /package/{types/ui → ui}/components/ProgressBar/ProgressBar.d.ts +0 -0
- /package/{types/ui → ui}/components/RelativeDatesPicker/RelativeDatesPicker.d.ts +0 -0
- /package/{types/ui → ui}/components/RelativeDatesPicker/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/RelativeDatesPicker/types.d.ts +0 -0
- /package/{types/ui → ui}/components/RelativeDatesPicker/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/RevisionStatusPoint/RevisionStatusPoint.d.ts +0 -0
- /package/{types/ui → ui}/components/Revisions/Revisions.d.ts +0 -0
- /package/{types/ui → ui}/components/Revisions/RevisionsList/RevisionsList.d.ts +0 -0
- /package/{types/ui → ui}/components/Revisions/helpers.d.ts +0 -0
- /package/{types/ui → ui}/components/Revisions/types.d.ts +0 -0
- /package/{types/ui → ui}/components/RevisionsPanel/RevisionsPanel.d.ts +0 -0
- /package/{types/ui → ui}/components/RevisionsPanel/components/RevisionsControls.d.ts +0 -0
- /package/{types/ui → ui}/components/RevisionsPanel/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/ScrollableWithShadow/ScrollableWithShadow.d.ts +0 -0
- /package/{types/ui → ui}/components/SectionWrapper/SectionWrapper.d.ts +0 -0
- /package/{types/ui → ui}/components/Select/constants/SelectStyles.d.ts +0 -0
- /package/{types/ui → ui}/components/Select/hooks/useSelectAsyncFetch/useIntersection.d.ts +0 -0
- /package/{types/ui → ui}/components/Select/hooks/useSelectAsyncFetch/useSelectAsyncFetch.d.ts +0 -0
- /package/{types/ui → ui}/components/Select/hooks/useSelectInfinityFetch/types.d.ts +0 -0
- /package/{types/ui → ui}/components/Select/hooks/useSelectInfinityFetch/useSelectInfinityFetch.d.ts +0 -0
- /package/{types/ui → ui}/components/Select/hooks/useSelectOptionsEnhancer.d.ts +0 -0
- /package/{types/ui → ui}/components/Select/hooks/useSelectRenderEmptyOptions/useSelectRenderEmptyOptions.d.ts +0 -0
- /package/{types/ui → ui}/components/Select/hooks/useSelectRenderError.d.ts +0 -0
- /package/{types/ui → ui}/components/Select/hooks/useSelectRenderFilter/useSelectRenderFilter.d.ts +0 -0
- /package/{types/ui → ui}/components/Select/wrappers/SelectAsync.d.ts +0 -0
- /package/{types/ui → ui}/components/Select/wrappers/SelectFeatured.d.ts +0 -0
- /package/{types/ui → ui}/components/Select/wrappers/SelectFeaturedAsync.d.ts +0 -0
- /package/{types/ui → ui}/components/SelectComponents/components/SelectOptionWithIcon/SelectOptionWithIcon.d.ts +0 -0
- /package/{types/ui → ui}/components/SelectComponents/index.d.ts +0 -0
- /package/{types/ui → ui}/components/SelectMigrationToWorkbookDialog/Body/Body.d.ts +0 -0
- /package/{types/ui → ui}/components/SelectMigrationToWorkbookDialog/SelectMigrationToWorkbookDialog.d.ts +0 -0
- /package/{types/ui → ui}/components/SelectMigrationToWorkbookDialog/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/SelectMigrationToWorkbookDialog/index.d.ts +0 -0
- /package/{types/ui → ui}/components/SharedBindingsList/ListSearch.d.ts +0 -0
- /package/{types/ui → ui}/components/SharedBindingsList/SharedBindingsList.d.ts +0 -0
- /package/{types/ui → ui}/components/SharedEntryIcon/SharedEntryIcon.d.ts +0 -0
- /package/{types/ui → ui}/components/SlugifyUrl/SlugifyUrl.d.ts +0 -0
- /package/{types/ui → ui}/components/SlugifyUrl/index.d.ts +0 -0
- /package/{types/ui → ui}/components/SmartLoader/SmartLoader.d.ts +0 -0
- /package/{types/ui → ui}/components/TabMenu/TabMenu.d.ts +0 -0
- /package/{types/ui → ui}/components/TabMenu/types.d.ts +0 -0
- /package/{types/ui → ui}/components/Tabs/Tabs.d.ts +0 -0
- /package/{types/ui → ui}/components/Tabs/withDatalensSpecific.d.ts +0 -0
- /package/{types/ui → ui}/components/TagInput/TagInput.d.ts +0 -0
- /package/{types/ui → ui}/components/TemplateTextPaper/TemplateTextPaper.d.ts +0 -0
- /package/{types/ui → ui}/components/TextEditor/TextEditor.d.ts +0 -0
- /package/{types/ui → ui}/components/UserAvatar/UserAvatarById.d.ts +0 -0
- /package/{types/ui → ui}/components/UserMenu/UserAvatar.d.ts +0 -0
- /package/{types/ui → ui}/components/UserMenu/UserMenu.d.ts +0 -0
- /package/{types/ui → ui}/components/UsersSuggest/UsersSuggest.d.ts +0 -0
- /package/{types/ui → ui}/components/UsersSuggest/types.d.ts +0 -0
- /package/{types/ui → ui}/components/ValuesList/ValuesList.d.ts +0 -0
- /package/{types/ui → ui}/components/Veil/Veil.d.ts +0 -0
- /package/{types/ui → ui}/components/ViewAsync/ViewAsync.d.ts +0 -0
- /package/{types/ui → ui}/components/ViewError/ViewError.d.ts +0 -0
- /package/{types/ui → ui}/components/ViewLoader/ViewLoader.d.ts +0 -0
- /package/{types/ui → ui}/components/WidgetRoundingsInput/WidgetRoundingsInput.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/Chart.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/ChartAlert.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/ChartSelector.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/ChartWidget.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/ChartWidgetWithProvider.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/components/ChartInfoIcon.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/components/Content.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/components/Header.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/components/WidgetFooter.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/components/WidgetHeader.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/hooks/useAutoHeightResizeObserver.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/hooks/useChartActivities.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/hooks/useIntersectionObserver.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/hooks/useLoadingChart.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/hooks/useLoadingChartSelector.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/hooks/useMemoCallback.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/store/reducer.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/store/types.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/types.d.ts +0 -0
- /package/{types/ui → ui}/components/Widgets/Chart/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/WorkbookIcon/WorkbookIcon.d.ts +0 -0
- /package/{types/ui → ui}/components/WorkbookNavigationMinimal/WorkbookNavigationMinimal.d.ts +0 -0
- /package/{types/ui → ui}/components/WorkbookNavigationMinimal/components/ListWithSharedEntries.d.ts +0 -0
- /package/{types/ui → ui}/components/WorkbookNavigationMinimal/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/WorkbookNavigationMinimal/types.d.ts +0 -0
- /package/{types/ui → ui}/components/YfmWrapper/YfmWrapper.d.ts +0 -0
- /package/{types/ui → ui}/components/YfmWrapper/YfmWrapperContent.d.ts +0 -0
- /package/{types/ui → ui}/components/common/Datepicker/Calendar/Calendar.d.ts +0 -0
- /package/{types/ui → ui}/components/common/Datepicker/Datepicker.d.ts +0 -0
- /package/{types/ui → ui}/components/common/Datepicker/Month/Month.d.ts +0 -0
- /package/{types/ui → ui}/components/common/Datepicker/Months/Months.d.ts +0 -0
- /package/{types/ui → ui}/components/common/Datepicker/PopupContent/PopupContent.d.ts +0 -0
- /package/{types/ui → ui}/components/common/Datepicker/Presets/Presets.d.ts +0 -0
- /package/{types/ui → ui}/components/common/Datepicker/Quarters/Quarters.d.ts +0 -0
- /package/{types/ui → ui}/components/common/Datepicker/YearSwitcher/YearSwitcher.d.ts +0 -0
- /package/{types/ui → ui}/components/common/Datepicker/Years/Years.d.ts +0 -0
- /package/{types/ui → ui}/components/common/Datepicker/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/common/Datepicker/index.d.ts +0 -0
- /package/{types/ui → ui}/components/common/Datepicker/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/common/DatepickerControl/DatepickerControl.d.ts +0 -0
- /package/{types/ui → ui}/components/common/RangeInputPicker/RangeInputPicker.d.ts +0 -0
- /package/{types/ui → ui}/components/common/RangeInputPicker/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/common/RangeInputPicker/index.d.ts +0 -0
- /package/{types/ui → ui}/components/common/RangeInputPicker/types.d.ts +0 -0
- /package/{types/ui → ui}/components/common/RangeInputPicker/utils.d.ts +0 -0
- /package/{types/ui → ui}/components/common/YCSelect/Item/Item.d.ts +0 -0
- /package/{types/ui → ui}/components/common/YCSelect/Items/Items.d.ts +0 -0
- /package/{types/ui → ui}/components/common/YCSelect/Search/Search.d.ts +0 -0
- /package/{types/ui → ui}/components/common/YCSelect/YCSelect.d.ts +0 -0
- /package/{types/ui → ui}/components/common/YCSelect/constants.d.ts +0 -0
- /package/{types/ui → ui}/components/common/YCSelect/index.d.ts +0 -0
- /package/{types/ui → ui}/components/common/YCSelect/isBothEmpty.d.ts +0 -0
- /package/{types/ui → ui}/components/common/YCSelect/utils.d.ts +0 -0
- /package/{types/ui → ui}/configs/common/icons.d.ts +0 -0
- /package/{types/ui → ui}/configs/index.d.ts +0 -0
- /package/{types/ui → ui}/constants/common.d.ts +0 -0
- /package/{types/ui → ui}/constants/connections.d.ts +0 -0
- /package/{types/ui → ui}/constants/dialogs.d.ts +0 -0
- /package/{types/ui → ui}/constants/embedded.d.ts +0 -0
- /package/{types/ui → ui}/constants/index.d.ts +0 -0
- /package/{types/ui → ui}/constants/misc.d.ts +0 -0
- /package/{types/ui → ui}/constants/mobile.d.ts +0 -0
- /package/{types/ui → ui}/constants/navigation.d.ts +0 -0
- /package/{types/ui → ui}/constants/operations.d.ts +0 -0
- /package/{types/ui → ui}/constants/visualizations/combined-chart.d.ts +0 -0
- /package/{types/ui → ui}/constants/visualizations/donut.d.ts +0 -0
- /package/{types/ui → ui}/constants/visualizations/flatTable.d.ts +0 -0
- /package/{types/ui → ui}/constants/visualizations/geolayer.d.ts +0 -0
- /package/{types/ui → ui}/constants/visualizations/geopoint.d.ts +0 -0
- /package/{types/ui → ui}/constants/visualizations/geopolygon.d.ts +0 -0
- /package/{types/ui → ui}/constants/visualizations/heatmap.d.ts +0 -0
- /package/{types/ui → ui}/constants/visualizations/index.d.ts +0 -0
- /package/{types/ui → ui}/constants/visualizations/line.d.ts +0 -0
- /package/{types/ui → ui}/constants/visualizations/metric.d.ts +0 -0
- /package/{types/ui → ui}/constants/visualizations/pie.d.ts +0 -0
- /package/{types/ui → ui}/constants/visualizations/pivotTable.d.ts +0 -0
- /package/{types/ui → ui}/constants/visualizations/polyline.d.ts +0 -0
- /package/{types/ui → ui}/constants/visualizations/scatter.d.ts +0 -0
- /package/{types/ui → ui}/constants/visualizations/treemap.d.ts +0 -0
- /package/{types/ui → ui}/constants/visualizations/utils.d.ts +0 -0
- /package/{types/ui → ui}/constants/workbooks.d.ts +0 -0
- /package/{types/ui → ui}/constants/yfm.d.ts +0 -0
- /package/{types/ui → ui}/datalens/helpers.d.ts +0 -0
- /package/{types/ui → ui}/datalens/hooks.d.ts +0 -0
- /package/{types/ui → ui}/datalens/index.d.ts +0 -0
- /package/{types/ui → ui}/datalens/pages/AuthPage/AuthPage.d.ts +0 -0
- /package/{types/ui → ui}/datalens/pages/CollectionsNavigationPage/CollectionsNavigationPage.d.ts +0 -0
- /package/{types/ui → ui}/datalens/pages/ConnectionsPage/ConnectionsPage.d.ts +0 -0
- /package/{types/ui → ui}/datalens/pages/DashAndWizardQLPages/DashAndWizardQLPages.d.ts +0 -0
- /package/{types/ui → ui}/datalens/pages/DashPage/DashPage.d.ts +0 -0
- /package/{types/ui → ui}/datalens/pages/DatasetPage/DatasetPage.d.ts +0 -0
- /package/{types/ui → ui}/datalens/pages/FallbackPage/FallbackPage.d.ts +0 -0
- /package/{types/ui → ui}/datalens/pages/LandingPage/LandingPage.d.ts +0 -0
- /package/{types/ui → ui}/datalens/pages/MainPage/MainPage.d.ts +0 -0
- /package/{types/ui → ui}/datalens/pages/OwnUserProfilePage/OwnUserProfilePage.d.ts +0 -0
- /package/{types/ui → ui}/datalens/pages/PreviewPage/PreviewPage.d.ts +0 -0
- /package/{types/ui → ui}/datalens/pages/QLPage/QLPage.d.ts +0 -0
- /package/{types/ui → ui}/datalens/pages/ServiceSettingsPage/ServiceSettingsPage.d.ts +0 -0
- /package/{types/ui → ui}/datalens/pages/WizardPage/WizardPage.d.ts +0 -0
- /package/{types/ui → ui}/entries/dl-main.d.ts +0 -0
- /package/{types/ui → ui}/hoc/index.d.ts +0 -0
- /package/{types/ui → ui}/hoc/withEnabledFeature.d.ts +0 -0
- /package/{types/ui → ui}/hoc/withHiddenUnmount.d.ts +0 -0
- /package/{types/ui → ui}/hoc/withHotkeysContext.d.ts +0 -0
- /package/{types/ui → ui}/hoc/withInaccessibleOnMobile.d.ts +0 -0
- /package/{types/ui → ui}/hoc/withPromiseOpen.d.ts +0 -0
- /package/{types/ui → ui}/hooks/index.d.ts +0 -0
- /package/{types/ui → ui}/hooks/useBeforeLoad.d.ts +0 -0
- /package/{types/ui → ui}/hooks/useBindHotkey.d.ts +0 -0
- /package/{types/ui → ui}/hooks/useChangedProp.d.ts +0 -0
- /package/{types/ui → ui}/hooks/useEffectOnce.d.ts +0 -0
- /package/{types/ui → ui}/hooks/useEnterClick.d.ts +0 -0
- /package/{types/ui → ui}/hooks/useHover.d.ts +0 -0
- /package/{types/ui → ui}/hooks/useLocalStorageFallback.d.ts +0 -0
- /package/{types/ui → ui}/hooks/useMarkdown.d.ts +0 -0
- /package/{types/ui → ui}/hooks/useMountedState.d.ts +0 -0
- /package/{types/ui → ui}/hooks/useOutsideClick.d.ts +0 -0
- /package/{types/ui → ui}/hooks/usePrevious.d.ts +0 -0
- /package/{types/ui → ui}/hooks/useRefMounted.d.ts +0 -0
- /package/{types/ui → ui}/hooks/useSetState.d.ts +0 -0
- /package/{types/ui → ui}/hooks/useShallowEqualSelector.d.ts +0 -0
- /package/{types/ui → ui}/hooks/useSyncedState.d.ts +0 -0
- /package/{types/ui → ui}/hooks/useTitle.d.ts +0 -0
- /package/{types/ui → ui}/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/ChartKit.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/ChartKitAdapter.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/ChartKitTooltip/ChartKitTooltip.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Error/Error.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/IconRenderer.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/CirclePointIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DashDotLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DashLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DiamondPointIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DotLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/LongDashDotDotLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/LongDashDotLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/LongDashLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDashDotDotLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDashDotLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDashLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDotLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/SolidLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/SquarePointIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/TriangleDownPointIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/TrianglePointIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/constants.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/renderTooltipIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/DashDotLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/DashLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/DotLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/LongDashDotDotLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/LongDashDotLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/LongDashLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDashDotDotLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDashDotLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDashLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDotLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/SolidLineIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/IconRenderer/utils.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Loader/Loader.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/Widget.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/AlertWidget/AlertWidget.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/AlertWidget/utils.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Markdown/Markdown.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Bar/Bar.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Bar/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Bar/utils.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Paginator/Paginator.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Table.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/WrappedHTMLNode.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/action-params.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/event-handlers.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/misc.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/render.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/validation.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/constants.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/Widget/components/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/components/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/action-params-handlers.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/apply-hc-handlers.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/chartkitAdapter.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/constants.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/getRandomCKId.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/chart-to-table.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/chartkit-adapter.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/comments.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/event-handlers.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/holidays.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/utils.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/tooltip.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/utils.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/helpers/wait-for-content.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/init.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/chartkit-custom-error/chartkit-custom-error.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/comments/drawing.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/handleLegendItemClick.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/options.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/addShowInNavigatorToSeries.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/buildNavigatorFallback.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/calculatePrecision.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/concatStrings.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/getChartKitFormattedValue.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/getFormatOptionsFromLine.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/getXAxisThresholdValue.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/isSafari.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/isTooltipShared.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/localStorage.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/mergeArrayWithObject.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/numberFormat.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/setNavigatorDefaultPeriod.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/graph.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/prepare-data.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/tooltip/helpers.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/tooltip/tooltip.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/tooltip/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/graph/types/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/highcharts/colors.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/highcharts/helpers/calcucalteClosestPointManually.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/highcharts/helpers/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/highcharts/highcharts.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/i18n/i18n.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/i18n/keysets/en.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/i18n/keysets/ru.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/map/map.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/map/options.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/map/tooltip/tooltip.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/perfomance.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/helpers/fetch-script.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/helpers/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/helpers/number-format.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/Canvas.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/DataConverter.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/Heatmap.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/TileUrlsGenerator.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/Gridmap.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/utils/hexagonGrid.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/utils/squareGrid.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/Polygonmap.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/colorLegend.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/colorize.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/colorize.test.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultBalloonContent.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultFilter.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultFilter.test.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultMapper.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultMapper.test.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultOnClick.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultOnMouseEnter.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultOnMouseLeave.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/inside.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/inside.test.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/normalizeFeature.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/normalizeFeature.test.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/modules.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/modules/yandex-map/yandex-map.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/AdvancedChartWidget.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/components/Tooltip/Tooltip.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/utils.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/renderer/HighchartsMapComponent.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/renderer/HighchartsMapWidget.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Markup/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Markup/renderer/MarkupWidget.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Markup/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Metric/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Metric/renderer/MetricTile.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Metric/renderer/MetricWidget.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Metric/renderer/metricHelpers.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Metric/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/TableWidget.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/BarCell/BarCell.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/DiffCell/DiffCell.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/HtmlCell/HtmlCell.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/MarkupCell/MarkupCell.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/SortIcon/SortIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/BackgroundTable.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/Table.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/TableBody.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/TableFooter.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/TableHead.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/cell-width.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/usePreparedTableData.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/utils.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/TableTitleView/TableTitleView.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/TreeCell/TreeCell.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/action-params.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/drill-down.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/math.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/migrate-to-old-format.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/renderer.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/tree.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/Table/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Icons/EyeSlashIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Icons/SizeIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Layer/Layer.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Legend.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/YandexMapComponent.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/YandexMapWidget.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/events.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/utils.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/YandexMap/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/chart-storage.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/components/StyledSplitPane/StyledSplitPane.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/components/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/components/withSplitPane/withSplitPane.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/plugins/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/ChartKit/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/DatalensChartKitOld.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/Error/Error.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/Error/getAdditionalChartkitErrorContent.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/ChartKitBase.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Chart/Chart.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/ChartkitError/ChartkitError.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Content/store/reducer.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Content/store/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Control/Control.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/Header.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/ChartsInsights.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/components/ChartsInsightsIcon/ChartsInsightsIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/components/ChartsInsightsIcon/getIconData.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/components/TooltipContent/TooltipContent.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/helpers/getIconLevel.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/ButtonSpin/ButtonSpin.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/ButtonSpinInput/ButtonSpinInput.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/ChartsModal/ChartsModal.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/ChartsModalMenu/ChartsModalMenu.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/DownloadCsv/DownloadCsv.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/CsvExport/CsvExport.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/Export.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/ToastContent/ToastContent.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Inspector.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/SourceMeta/Datalens.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/Source/Source.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/SourceError/SourceError.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/SourceSuccess/SourceSuccess.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/Sources.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Timings/Timings.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Modal/Body/Body.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Modal/Context/Context.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Modal/Footer/Footer.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Modal/Header/Header.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Modal/Modal.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/PopupMessage/PopupMessage.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/constants.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/helpers.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Menu.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/MenuWithErrorBoundary/MenuWithErrorBoundary.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/components/Loader/Loader.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/helpers.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitBase/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ChartKitIcon/ChartKitIcon.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/Control/Control.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/Control/Items/Items.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/Control/Items/withWrapForControls.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/Control/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/DeferredInitializer/DeferredInitializer.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/Drill/Drill.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/Error/Error.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/Error/More/More.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ErrorBoundary/ErrorBoundary.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/ErrorBoundary/withErrorBoundary.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/Palette/Attach/Attach.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/Palette/ColorItem/ColorItem.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/Palette/DraggableModalHOC/DraggableModalHOC.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/Palette/PaletteEditor/PaletteEditor.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/Palette/PaletteSettings/PaletteSettings.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/components/SideMarkdown/SideMarkdown.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/extensions/alert.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/extensions/control.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/extensions/markdown.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/extensions/table.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/helpers/convert-data-to-table.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/helpers/helpers.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/menu/Menu.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/menu/helpers.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/axios/axios.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/axios/axiosConcurrency.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/constants/constants.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/chartkit-handlers.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/get-graph/get-graph.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/get-graph/prepare-config.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/get-graph/prepare-data.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/helpers/getChartsInsightsData.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/helpers/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/node.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/ui-sandbox-runtime.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/ui-sandbox.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/utils.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/charts/wizard.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/example.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/helpers.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/data-provider/withDataProvider.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/datalens-chartkit-custom-error/datalens-chartkit-custom-error.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/export/export.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/extensions-manager/extensions-manager.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/html-generator/constants.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/html-generator/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/html-generator/utils.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/localStorage.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/menu/menu.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/perfomance.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/settings/settings.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/modules/table.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/types/common.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/types/control.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/types/dataProvider.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/types/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/types/menu.d.ts +0 -0
- /package/{types/ui → ui}/libs/DatalensChartkit/types/widget.d.ts +0 -0
- /package/{types/ui → ui}/libs/auth/refreshToken.d.ts +0 -0
- /package/{types/ui → ui}/libs/axios/axios.d.ts +0 -0
- /package/{types/ui → ui}/libs/axios/interceptors.d.ts +0 -0
- /package/{types/ui → ui}/libs/datasetHelper/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/datasetSdk/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/google-analytics/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/logger/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/metrica/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/monaco/constants.d.ts +0 -0
- /package/{types/ui → ui}/libs/monaco/dl-lang/constants.d.ts +0 -0
- /package/{types/ui → ui}/libs/monaco/dl-lang/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/monaco/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/monaco/load-monaco-core.d.ts +0 -0
- /package/{types/ui → ui}/libs/monaco/ql-lang/constants.d.ts +0 -0
- /package/{types/ui → ui}/libs/monaco/ql-lang/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/monaco/theme-mappers.d.ts +0 -0
- /package/{types/ui → ui}/libs/monaco/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/monaco/utils.d.ts +0 -0
- /package/{types/ui → ui}/libs/navigateHelper/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/schematic-sdk/decorator.d.ts +0 -0
- /package/{types/ui → ui}/libs/schematic-sdk/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/schematic-sdk/parse-error.d.ts +0 -0
- /package/{types/ui → ui}/libs/sdk/index.d.ts +0 -0
- /package/{types/ui → ui}/libs/sdk/types.d.ts +0 -0
- /package/{types/ui → ui}/libs/userSettings/index.d.ts +0 -0
- /package/{types/ui → ui}/modules/index.d.ts +0 -0
- /package/{types/ui → ui}/modules/markdownProvider.d.ts +0 -0
- /package/{types/ui → ui}/navigation/history.d.ts +0 -0
- /package/{types/ui → ui}/navigation/index.d.ts +0 -0
- /package/{types/ui → ui}/navigation/router.d.ts +0 -0
- /package/{types/ui → ui}/registry/components/DefaultEmpty.d.ts +0 -0
- /package/{types/ui → ui}/registry/functions/example-function.d.ts +0 -0
- /package/{types/ui → ui}/registry/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/libs/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/libs/registryLibsPlugins.d.ts +0 -0
- /package/{types/ui → ui}/registry/libs/schematic-sdk/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/auth/components-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/auth/functions-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/auth/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/auth/register.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/auth/types/components/AdditionalProfileSections.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/auth/types/components/AdditionalUsersFilters.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/auth/types/components/Signin.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/auth/types/functions/getAdditionalAddProfileFields.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/auth/types/functions/getAdditionalProfileFields.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/auth/types/functions/getUsersListColumns.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/auth/types/functions/getUsersRoles.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/chart/components-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/chart/functions-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/chart/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/chart/register.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/chart/types/components/AlertDialog.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/chart/types/components/ChartActionPanelButton.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/chart/types/functions/get-chartkit-holidays.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/chart/types/functions/getChartkitMenuByType.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/chart/types/functions/getDefaultChartMenu.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/chart/types/functions/getPanePreviewChartMenu.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/chart/types/functions/getVisualSelectorBottomPlaceholder.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/chart/types/functions/getWizardChartMenu.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/collections/components-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/collections/functionts-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/collections/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/collections/register.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/collections/types/customizeEmptyPlaceholder.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/collections/types/customizeNoCreatePermissionDialog.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/collections/types/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/collections/types/useCreateWorkbookDialogHandlers.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/components/Example/Example.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/components-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/constants/components.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/constants/functions.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/functions-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/register.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/AccessRights.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/AccessRightsUrlOpen.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/AclSubject.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/AclSubjectSuggest.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/ActionPanelEntrySelect.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/AsideHeaderAdapter.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/ButtonFavorite.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/DialogAddParticipants.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/DialogEntryDescription.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/DialogImageWidgetLinkHint.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/DialogRelatedEntitiesRadioHint.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/DialogShare.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/DownloadScreenshot.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/EntryBreadcrumbs.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/IamAccessDialog.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/LoginById.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/MarkdownControl.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/MarkupShareLink.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/MarkupUserInfo.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/MobileHeaderComponent.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/OAuthTokenButton.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/PlaceholderIllustrationImage.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/RangeInputPicker.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/ReportButton.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/UserAvatarById.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/components/YfmWrapper.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/GetUsersById.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/checkCreateEntryButtonVisibility.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/fetchDocumentation.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/fetchFunctionsDocumentation.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/getAdditionalChartkitErrorContent.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/getBasicActionPanelItems.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/getFunctionsDocumentation.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/getGloballyEntrySettings.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/getHeaderWithoutHelpCenterErrorContentTypes.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/getHeaderWithoutNavigationErrorContentTypes.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/getIllustrationStore.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/getImageNameFromErrorContentType.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/getLoginById.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/getLogoIcon.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/getNotAuthenticatedErrorContentTypes.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/getShouldShowAIAssistant.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/getUIEntryRoute.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/isValidLogoUrl.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/openDialogOrganizationInvite.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/openDialogOrganizationInviteUsers.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/renderDialogRelatedEntitiesAlertHint.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/resolveUsersByIds.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/setEntryKey.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/common/types/functions/useSubjectsListId.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/connections/components-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/connections/functions-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/connections/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/connections/register.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/connections/types/CreateEditorChartButtonProps.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/connections/types/PreparedRowItem.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/connections/types/beforeConnectorFormUnmount.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/connections/types/getConnectionItemRender.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/connections/types/getFakeEntry.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/connections/types/getIsShowCreateConnectionButton.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/connections/types/getMockedForm.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/connections/types/getNewConnectionDestination.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/connections/types/getRenderConnectionSettingsPopup.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/dash/components-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/dash/functions-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/dash/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/dash/register.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/dash/types/BeforeCloseDialogItem.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/dash/types/BeforeOpenDialogItem.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/dash/types/DashActionPanelAdditionalButtons.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/dash/types/DialogDashOtherSettingsPrepend.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/dash/types/GetExtendedItemData.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/datasets/functions-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/datasets/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/datasets/register.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/datasets/types/functions/getRenderDatasetSettingsPopup.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/datasets/types/functions/renderRLSDialog.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/docs/functions-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/docs/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/docs/register.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/editor/components-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/editor/constants/components.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/editor/constants/functions.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/editor/functions-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/editor/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/editor/types/components/ActionPanelButton.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/editor/types/functions/fetchEditorDocumentation.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/editor/types/functions/getEditorTemplates.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/fieldEditor/components-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/fieldEditor/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/main/components-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/main/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/main/register.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/preview/components-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/preview/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/preview/register.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/public/components-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/public/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/public/register.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/public/types/components/Header.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/ql/components-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/ql/functions-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/ql/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/ql/register.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/wizard/components-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/wizard/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/wizard/register.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/wizard/types/components/WizardActionPanelExtension.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/workbooks/components-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/workbooks/functions-map.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/workbooks/index.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/workbooks/register.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/workbooks/types/components/workbookTableRowExtendedContent.d.ts +0 -0
- /package/{types/ui → ui}/registry/units/workbooks/types/functions/checkWbCreateEntryButtonVisibility.d.ts +0 -0
- /package/{types/ui → ui}/registry/utils/components-registry.d.ts +0 -0
- /package/{types/ui → ui}/registry/utils/register-app-plugins.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/asideHeader/index.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/asideHeader/navigation.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/chartWidget.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/collectionsStructure/common.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/collectionsStructure/export.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/collectionsStructure/index.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/collectionsStructure/showCollectionEntityErrorToast.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/collectionsStructure/templates.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/colorPaletteEditor.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/controlDialog/controlDialog.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/controlDialog/helpers.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/copyEntriesToWorkbook.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/dialog.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/editHistory.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/entryContent.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/iamAccessDialog.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/landing.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/localStorageFallback.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/migrationToWorkbook.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/openDialogTypes.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/toaster.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/user.d.ts +0 -0
- /package/{types/ui → ui}/store/actions/usersByIds.d.ts +0 -0
- /package/{types/ui → ui}/store/configure.d.ts +0 -0
- /package/{types/ui → ui}/store/constants/collectionsStructure.d.ts +0 -0
- /package/{types/ui → ui}/store/constants/controlDialog.d.ts +0 -0
- /package/{types/ui → ui}/store/constants/copyEntriesToWorkbook.d.ts +0 -0
- /package/{types/ui → ui}/store/constants/editHistory.d.ts +0 -0
- /package/{types/ui → ui}/store/constants/iamAccessDialog.d.ts +0 -0
- /package/{types/ui → ui}/store/constants/migrationToWorkbook.d.ts +0 -0
- /package/{types/ui → ui}/store/index.d.ts +0 -0
- /package/{types/ui → ui}/store/reducer-registry.d.ts +0 -0
- /package/{types/ui → ui}/store/reducers/asideHeader.d.ts +0 -0
- /package/{types/ui → ui}/store/reducers/collectionsStructure.d.ts +0 -0
- /package/{types/ui → ui}/store/reducers/colorPaletteEditor.d.ts +0 -0
- /package/{types/ui → ui}/store/reducers/controlDialog/helpers.d.ts +0 -0
- /package/{types/ui → ui}/store/reducers/copyEntriesToWorkbook.d.ts +0 -0
- /package/{types/ui → ui}/store/reducers/dialog.d.ts +0 -0
- /package/{types/ui → ui}/store/reducers/editHistory.d.ts +0 -0
- /package/{types/ui → ui}/store/reducers/entryContent.d.ts +0 -0
- /package/{types/ui → ui}/store/reducers/iamAccessDialog.d.ts +0 -0
- /package/{types/ui → ui}/store/reducers/index.d.ts +0 -0
- /package/{types/ui → ui}/store/reducers/landing.d.ts +0 -0
- /package/{types/ui → ui}/store/reducers/localStorageFallback.d.ts +0 -0
- /package/{types/ui → ui}/store/reducers/migrationToWorkbook.d.ts +0 -0
- /package/{types/ui → ui}/store/reducers/user.d.ts +0 -0
- /package/{types/ui → ui}/store/selectors/asideHeader.d.ts +0 -0
- /package/{types/ui → ui}/store/selectors/collectionsStructure.d.ts +0 -0
- /package/{types/ui → ui}/store/selectors/colorPaletteEditor.d.ts +0 -0
- /package/{types/ui → ui}/store/selectors/controlDialog.d.ts +0 -0
- /package/{types/ui → ui}/store/selectors/copyEntriesToWorkbook.d.ts +0 -0
- /package/{types/ui → ui}/store/selectors/editHistory.d.ts +0 -0
- /package/{types/ui → ui}/store/selectors/entryContent.d.ts +0 -0
- /package/{types/ui → ui}/store/selectors/iamAccessDialog.d.ts +0 -0
- /package/{types/ui → ui}/store/selectors/landing.d.ts +0 -0
- /package/{types/ui → ui}/store/selectors/localStorageFallback.d.ts +0 -0
- /package/{types/ui → ui}/store/selectors/migrationToWorkbook.d.ts +0 -0
- /package/{types/ui → ui}/store/selectors/user.d.ts +0 -0
- /package/{types/ui → ui}/store/toolkit/chartkit/api.d.ts +0 -0
- /package/{types/ui → ui}/store/toolkit/chartkit/types.d.ts +0 -0
- /package/{types/ui → ui}/store/toolkit/index.d.ts +0 -0
- /package/{types/ui → ui}/store/typings/asideHeader.d.ts +0 -0
- /package/{types/ui → ui}/store/typings/controlDialog.d.ts +0 -0
- /package/{types/ui → ui}/store/typings/entryContent.d.ts +0 -0
- /package/{types/ui → ui}/store/typings/iamAccessDialog.d.ts +0 -0
- /package/{types/ui → ui}/store/typings/user.d.ts +0 -0
- /package/{types/ui → ui}/store/utils/asideHeader.d.ts +0 -0
- /package/{types/ui → ui}/store/utils/collectionStructure.d.ts +0 -0
- /package/{types/ui → ui}/store/utils/controlDialog.d.ts +0 -0
- /package/{types/ui → ui}/store/utils/jdp.d.ts +0 -0
- /package/{types/ui → ui}/store/utils/user.d.ts +0 -0
- /package/{types/ui → ui}/typings/common.d.ts +0 -0
- /package/{types/ui → ui}/typings/components.d.ts +0 -0
- /package/{types/ui → ui}/typings/error.d.ts +0 -0
- /package/{types/ui → ui}/typings/index.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/AuthPage/AuthPage.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/AuthPage/useAuthPageInit.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/ChangePasswordDialog/ChangePasswordDialog.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/ChangeUserRoleDialog/ChangeUserRoleDialog.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/DeleteUserDialog/DeleteUserDialog.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/EditUserProfileDialog/EditUserProfileDialog.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/LoginById/LoginById.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/LoginById/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/Logout/Logout.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/Reload/Reload.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/Signin/Signin.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/Signin/components/Login.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/Signin/components/Password.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/Signup/Signup.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/Signup/components/Back.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/UserProfile/UserProfile.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/UserRoleLabel/UserRoleLabel.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/formControls/CustomRow.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/formControls/Email.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/formControls/FirstName.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/formControls/GeneratePasswordButton.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/formControls/LastName.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/formControls/Login.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/formControls/Password.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/formControls/RepeatPassword.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/formControls/Roles.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/formControls/RowButton.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/formControls/types.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/components/formControls/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/constants/errors.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/constants/routes.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/containers/UserProfile/UserProfile.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/hooks/useClearReloadedQuery.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/hooks/useUserById.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/actions/common.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/actions/index.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/actions/logout.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/actions/signin.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/actions/userInfoForm.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/actions/userProfile.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/actions/usersByIds.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/constants/common.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/constants/signin.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/constants/userInfoForm.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/constants/userProfile.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/constants/usersByIds.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/reducers/common.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/reducers/index.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/reducers/signin.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/reducers/userInfoForm.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/reducers/userProfile.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/reducers/usersByIds.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/selectors/common.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/selectors/signin.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/selectors/userInfoForm.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/selectors/userProfile.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/selectors/usersByIds.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/typings/userInfoForm.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/store/typings/usersByIds.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/utils/fields.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/utils/getUsersRoles.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/utils/userProfile.d.ts +0 -0
- /package/{types/ui → ui}/units/auth/utils/validation.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionActions/CollectionActions.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionActions/components/SharedEntryNotice/SharedEntryNotice.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionActions/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionActions/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionBatchPanel/CollectionBatchPanel.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionContent/CollectionContent.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionContent/hooks/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionContent/hooks/useActions.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionContent/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionContent/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionContentGrid/CollectionContentGrid.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionContentGrid/CollectionItemIcon.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionContentGrid/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionContentTable/CollectionContentTable.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionContentTable/TableComponents/CollectionCheckboxCell.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionContentTable/TableComponents/CollectionLinkRow.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionContentTable/TableComponents/CollectionTitleCell.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionContentTable/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionContentTable/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionPage/CollectionPage.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionPage/hooks/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionPage/hooks/useCreateWorkbookDialogHandlers.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionPage/hooks/useData.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionPage/hooks/useFilters.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionPage/hooks/useLayout.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionPage/hooks/useOpenCreateWorkbookDialog.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionPage/hooks/useSelection.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionPage/hooks/useViewMode.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionPage/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/CollectionPage/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/components/types.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/hooks/useRefreshPageAfterImport.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/store/actions/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/store/constants/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/store/reducers/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections/store/selectors/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections-navigation/components/CollectionBreadcrumbs/CollectionBreadcrumbs.d.ts +0 -0
- /package/{types/ui → ui}/units/collections-navigation/components/CollectionBreadcrumbs/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections-navigation/components/CollectionBreadcrumbs/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/collections-navigation/components/CollectionsNavigationApp/CollectionsNavigationApp.d.ts +0 -0
- /package/{types/ui → ui}/units/collections-navigation/components/CollectionsNavigationApp/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections-navigation/components/CollectionsNavigationLayout/CollectionsNavigationLayout.d.ts +0 -0
- /package/{types/ui → ui}/units/collections-navigation/components/CollectionsNavigationLayout/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections-navigation/constants/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections-navigation/contexts/LayoutContext.d.ts +0 -0
- /package/{types/ui → ui}/units/collections-navigation/store/actions/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections-navigation/store/constants/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections-navigation/store/reducers/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections-navigation/store/selectors/index.d.ts +0 -0
- /package/{types/ui → ui}/units/collections-navigation/utils/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/ConnectorForm.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/ErrorActions/ErrorActions.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/FormActions/CheckParamsButton/CheckParamsButton.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/FormActions/FormActions.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/FormActions/SubmitButton/SubmitButton.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/FormActions/selectors.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/FormActions/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/FormRow/FormItem.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/FormRow/FormRow.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/FormRow/PreparedRowItem.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/Checkbox/Checkbox.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/Datepicker/Datepicker.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/Description/Description.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/FileInput/FileInput.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/FileInput/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/Input/Input.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/KeyValue/KeyValue.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/KeyValue/hooks.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/KeyValue/types.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/Label/Label.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/MarkdownItem/MarkdownItem.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/PlainText/PlainText.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/RadioButton/RadioButton.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/RadioGroup/RadioGroup.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/Select/Select.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/components/withControlWrap/withControlWrap.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/preparedRows/CacheTtlRow/CacheTtlRow.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/preparedRows/CollapseRow/CollapseRow.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/preparedRows/RawSQLLevelRow/RawSQLLevelRow.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/preparedRows/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorForm/utils/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorsList/ConnectorsList.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorsList/ListItem.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorsList/utils/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ConnectorsList/utils/listItemRender.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/ErrorView/ErrorView.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/FormTitle/FormTitle.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/Page/ConnPanelActions.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/Page/Page.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/Page/components/ConnSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/Page/components/CreateDatasetButton.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/Page/components/CreateQlChartButton.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/Page/components/DescriptionButton.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/Page/components/S3BasedConnButton.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/Page/components/UnloadConfirmation.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/Page/components/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/Page/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/Page/filterContextMenuItems.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/Page/useAdditionalContextMenuItems.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/Page/useApiErrors.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/Page/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/Router/Router.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/WrappedLoader/WrappedLoader.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/ChOverYT/ChOverYT.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/ChOverYT/ChoicePage.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/ChOverYT/ConnectorCard.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/ChOverYT/Notification.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/ChOverYT/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/File/File.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/AddFileButton.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/FilesList.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/ListItem/FileItem.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/ListItem/ListItem.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/ListItem/SourceItem.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/ReplaceSourceButton.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/Workspace/ColumnFilter.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/Workspace/FileSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/Workspace/TypeSelect.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/Workspace/Workspace.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/File/components/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/File/context.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/File/types.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/File/useHandlers.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/File/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/GSheetsV2.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/AddSection.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/AdditionalTitleContent/GAuthButton.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/AdditionalTitleContent/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/GSheetSourceInfoView.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/GSheetSourceView.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/UploadedGSheetView.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/SheetsList.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/Workspace/EmptyWorkspace.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/Workspace/GSheetSourceInfoWorkspace.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/Workspace/GSheetSourceWorkspace.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/Workspace/GSheetWorkspace.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/Workspace/Workspace.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/Workspace/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/components/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/containers/ActionBarContainer.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/containers/SheetsListContainer.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/containers/WorkspaceContainer.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/containers/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/containers/useGSheetDialogs.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/containers/useGoogleAuth.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/containers/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/GSheetsV2/types.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/Yadocs.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/AdditionalTitleContent.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/DialogAddDocument/DialogAddDocument.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/DocsList.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/Workspace.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/UploadedYadocView.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/YadocSourceInfoView.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/YadocSourceView.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/components/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/containers/ActionBarContainer.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/containers/DocsListContainer.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/containers/WorkspaceContainer.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/containers/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/containers/useYadocsDialogs.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/Yadocs/types.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/components/ButtonLogout/ButtonLogout.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/components/ColumnFilter/ColumnFilter.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/components/ColumnsHeaderSwitcher/ColumnsHeaderSwitcher.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/components/DialogWithInput/DialogWithInput.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/components/DialogWithInput/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/components/DialogWithInput/types.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/components/ListItem/ActionDeleteView.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/components/ListItem/ActionErrorView.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/components/ListItem/ActionMoreView.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/components/ListItem/ListItem.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/components/ListItem/ListItemActions.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/components/ListItem/types.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/components/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/hooks/useFileSourceTableWidgetData.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/custom-forms/utils/render.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/dialogs/Confirm/Confirm.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/dialogs/Confirm/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/dialogs/Confirm/types.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/dialogs/CreateConnection/CreateConnection.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/dialogs/CreateConnectionInWbOrCollection/CreateConnectionInWbOrCollection.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/dialogs/S3Source/DialogS3Source.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/dialogs/S3Source/ListHeader.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/dialogs/S3Source/ListItem.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/dialogs/S3Source/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/dialogs/S3Source/types.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/dialogs/S3Source/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/dialogs/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/hooks/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/hooks/useCreationHandler/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/components/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/constants/form.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/constants/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/constants/validation.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/actions/api.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/actions/base.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/actions/file.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/actions/gsheet/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/actions/gsheet/misc-actions.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/actions/gsheet/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/actions/s3-based.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/actions/yadoc/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/actions/yadoc/misc-actions.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/actions/yadoc/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/reducers/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/selectors/connection-data.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/selectors/form.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/selectors/gsheet.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/selectors/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/selectors/initial-form.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/selectors/inner-form.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/selectors/yadocs.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/typings/file.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/typings/gsheet.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/typings/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/typings/s3-based.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/typings/yadocs.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/utils/connectors.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/utils/entry.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/utils/file.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/utils/forms.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/utils/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/store/utils/validation.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/typings/common.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/typings/form.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/typings/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/utils/common.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/utils/connectors.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/utils/entry.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/utils/gsheet.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/utils/i18n.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/utils/index.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/utils/validation.d.ts +0 -0
- /package/{types/ui → ui}/units/connections/utils/yadocs.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/DashActionPanel/DashActionPanel.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/DashActionPanel/DashActionPanelMobile.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/DashActionPanel/Description/Description.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/DashActionPanel/EditControls/EditControls.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/DashActionPanel/SaveDropDown/SaveDropDown.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/DashActionPanel/ViewControls/ViewControls.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/DashActionPanel/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/EmptyState/EmptyState.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/GlobalSelectorIcon/GlobalSelectorIcon.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/Loader/Loader.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/NavigationInput/InputLink/InputLink.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/NavigationInput/NavigationInput.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/ParamsSettings/ParamsRow.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/ParamsSettings/ParamsSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/ParamsSettings/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/ParamsSettings/types.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/components/ShareButton/ShareButton.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/App/App.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Body/Body.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Body/LazyBody.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Body/components/Content/Content.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Body/components/Content/hooks/useCopiedData.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/DashkitWrapper.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/useConfig.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/useDashKitContext.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/useDashkitRef.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/useDataProviderContext.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/useHashStates.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/useOverlay/getGearGlobalIcon.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/useOverlay/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/useOverlay/useOverlay.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Body/components/DashkitWrapper/hooks/usePreparedCopyItemOptions.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Body/context.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dash/Dash.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/DashError/DashError.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/DashHotkes/DashHotkeys.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/DialogEditQuery/DialogEditQuery.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/DialogEditQuery/QueryEditor/QueryEditor.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/DialogEditQuery/QueryError/QueryError.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/DialogEditQuery/helpers/validate-query.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/Dialogs.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/Settings.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/components/AutoRefresh.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/components/Display.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/components/LoadPriority.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/components/MaxConnection.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/components/OtherSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/components/Params.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/components/Row.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/components/Title.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/Settings/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/Tabs/EditedTabItem.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/Tabs/PopupWidgetsOrder/PopupWidgetsOrder.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/Tabs/PopupWidgetsOrder/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/Tabs/TabItem.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/Tabs/Tabs.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/components/ColorInputsGroup/ColorInputsGroup.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/components/ColorPalette/ColorItem/ColorItem.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/components/ColorPalette/ColorPalette.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/components/ColorPicker/ColorPicker.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/components/ColorPickerInputWithPreset/ColorPickerInputWithPreset.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/components/PaletteBackground/PaletteBackground.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/components/PaletteText/PaletteText.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Dialogs/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/FixedHeader/FixedHeader.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/FixedHeader/FixedHeaderMobile.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Header/Header.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/MobileFloatMenu/MobileFloatMenu.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/TableOfContent/TableOfContent.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/TableOfContent/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/containers/Tabs/Tabs.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/hooks/useIframeFeatures.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/modules/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/modules/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/modules/markdownProvider.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/modules/postMessage.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/modules/pushStats.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/actions/base/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/actions/dash.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/actions/dashTyped.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/actions/dialogs/actions.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/actions/dialogs/dialog-edit-query.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/actions/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/actions/index.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/actions/relations/actions.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/constants/dashActionTypes.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/constants/index.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/reducers/dash.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/reducers/dashHelpers.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/reducers/dashTypedReducer.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/selectors/dash.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/selectors/dashTypedSelectors.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/typings/dash.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/store/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/typings/context.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/typings/dash.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/typings/entry.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/utils/context.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/utils/customEvents.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/utils/dashkitProps.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/utils/getTabId.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/utils/scrollUtils.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/utils/selectors.d.ts +0 -0
- /package/{types/ui → ui}/units/dash/utils/url.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/Avatar/Avatar.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/ColorsDialog/ColorsDialog.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/ContainerLoader/ContainerLoader.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetPanel/DatasetPanel.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetPanel/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetRouter/DatasetRouter.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetRouter/UnloadConfirmation.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/DatasetTabFieldList.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/components/FieldRow/FieldRow.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/components/TitleColumn/TitleColumn.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/components/TypeColumn/TypeColumn.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/components/ValidationColumn/ValidationColumn.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/components/ValueColumn/ValueColumn.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTabFieldList/types.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTabSection/DatasetTabSection.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/DatasetTable.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/Aggregation.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/Cast.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/Description.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/FieldSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/Hidden.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/Id.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/IndexColumn.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/More.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/Rls.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/Source.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/Title.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/columns/index.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/AggregationSelect/AggregationSelect.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/BatchActionPanel/BatchActionPanel.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/BatchActionPanel/components/DialogChangeDatasetFields/DialogChangeDatasetFields.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/DisplaySettings.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/FieldActionsPopup.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/ObservedDataTable.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/TableTextInput.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/TypeSelect/TypeSelect.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/components/index.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DatasetTable/types.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DescriptionButton/DescriptionButton.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DialogCreateDataset/DialogCreateDataset.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/DragAndDrop/DragAndDrop.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/ErrorView/ErrorView.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/FieldSettingsDialog/FieldSettingsDialog.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/FilterSection/FilterSection.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/FilterSection/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/FilterSection/types.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/FilterSection/useFilterSection.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/ParametersSection/ParametersSection.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/ParametersSection/components/CopyToClipboard/CopyToClipboardMenuItem.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/ParametersSection/components/HeaderWithTooltip/HeaderWithTooltip.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/ParametersSection/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/ParametersSection/useParametersSection.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/PreviewHeader/PreviewHeader.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/PreviewHeader/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/PreviewHeader/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/PreviewTable/PreviewTable.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/RLSDialog/RLSDialog.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/RelationDialog/RelationDialog.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/RelationsMap/RelationsMap.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SelectSourcePrototypes/SelectSourcePrototypes.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SelectSourcePrototypes/SourcesTable.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SelectSourcePrototypes/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SelectSourcePrototypes/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/Source/Source.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/SourceEditorDialog.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/EditorFormItem.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/Form.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/InputFormItem.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/ParamSelector.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/SelectFormItem.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/SourceError.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/SourceHelpTooltip.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/SourceSwitcher.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/components/index.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/types.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/utils/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/utils/index.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/SourceEditorDialog/utils/validation.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/UserName/UserName.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/Veil/Veil.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/dialogs/DatasetFieldInspector/DatasetFieldInspector.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/dialogs/index.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/components/hoc/AvatarDnD.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/constants/datasets.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/constants/index.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/containers/Dataset/ActionPanelRightItems.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/containers/Dataset/Dataset.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/containers/Dataset/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/containers/Dataset/getAdditionalContextMenuItems.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/containers/Dataset/useHistoryActions.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/containers/DatasetEditor/DatasetEditor.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/containers/DatasetEditor/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/containers/DatasetError/DatasetError.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/containers/DatasetFilters/DatasetFilters.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/containers/DatasetParameters/DatasetParameters.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/containers/DatasetPreview/DatasetPreview.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/containers/DatasetSources/DatasetSources.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/containers/DatasetTabViewer/DatasetTabViewer.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/helpers/dataset-error-helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/helpers/datasets.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/helpers/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/helpers/validation.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/store/actions/creators/datasetTyped.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/store/actions/creators/dialogs.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/store/actions/creators/index.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/store/actions/creators/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/store/actions/types/dataset.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/store/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/store/edit-history-middleware.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/store/reducers/dataset.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/store/reducers/index.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/store/reducers/utils/index.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/store/reducers/utils/mocks.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/store/selectors/dataset.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/store/selectors/datasetTyped.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/store/selectors/index.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/store/types/dataset.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/store/types/index.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/typings/dataset.d.ts +0 -0
- /package/{types/ui → ui}/units/datasets/typings/redux.d.ts +0 -0
- /package/{types/ui → ui}/units/preview/components/App/App.d.ts +0 -0
- /package/{types/ui → ui}/units/preview/components/IndexPage/IndexPage.d.ts +0 -0
- /package/{types/ui → ui}/units/preview/components/Preview/Preview.d.ts +0 -0
- /package/{types/ui → ui}/units/preview/hooks/useChartAutoupdate.d.ts +0 -0
- /package/{types/ui → ui}/units/preview/modules/constants/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/preview/modules/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/components/DND/DNDContainer.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/components/DND/DNDItem.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/components/DND/DNDLayer.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/components/Dialogs/Settings/Settings.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/components/Grid/Grid.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/components/Grid/GridPane/GridPane.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/components/Grid/GridPane/GridPaneView/GridPaneView.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/components/Grid/GridPane/GridPaneView/GridPaneViewContent.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/configs/chart-types.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/constants/index.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/App/App.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/PaneMain/PaneMain.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/PaneMain/ScreenEditor/ScreenEditor.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/PaneMain/ScreenEditor/TabParams/DefaultValue.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/PaneMain/ScreenEditor/TabParams/OverridenValue.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/PaneMain/ScreenEditor/TabParams/TabParams.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/PaneMain/ScreenEditor/TabParams/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/PaneMain/ScreenEditor/TabQuery/ScreenPromQL/ScreenPromQL.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/PaneMain/ScreenEditor/TabQuery/ScreenSQL/ScreenSQL.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/PaneMain/ScreenEditor/TabQuery/TabQuery.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/PanePreview/PanePreview.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/PaneTablePreview/PaneTablePreview.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/PaneVisualization/PaneVisualization.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/QL/QL.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/QL/QLActionPanel/QLActionPanel.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/QL/QLActionPanel/useQLActionPanel.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/containers/QL/ViewSetup/ViewSetup.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/modules/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/store/actions/dialog.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/store/actions/ql.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/store/reducers/index.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/store/typings/index.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/store/typings/ql.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/store/utils/grid.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/store/utils/monitoring.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/utils/chart-settings.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/utils/connectionts.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/utils/query.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/utils/visualization/getAvailableQlVisualizations.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/utils/visualization/getDefaultQlVisualization.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/utils/visualization/getQlVisualization.d.ts +0 -0
- /package/{types/ui → ui}/units/ql/utils/visualization/index.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/components/AppearanceSettings/AppearanceSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/components/CreateUserForm/CreateUserForm.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/components/SectionGroup/SectionGroup.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/components/UsersList/LabelsList/LabelsList.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/components/UsersList/UsersFilters/UsersFilters.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/components/UsersList/UsersList.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/components/UsersList/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/components/UsersList/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/containers/AccessErrorPage/AccessErrorPage.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/containers/App/App.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/containers/CreateProfilePage/CreateProfilePage.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/containers/MainPage/MainPage.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/containers/UserProfilePage/UserProfilePage.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/store/actions/serviceSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/store/constants/serviceSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/store/reducers/serviceSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/store/selectors/serviceSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/service-settings/store/typings/serviceSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/actions/dataset.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/actions/dialog.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/actions/dialogColor.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/actions/hierarchyEditor.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/actions/preview.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/actions/settings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/actions/tooltip.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/actions/utils/getDatasetUpdates.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/actions/utils/index.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/actions/utils/mutateAndValidateItem.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/actions/utils/placeholders.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/actions/widget.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/AddField/AddField.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/DND/DNDContainer.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/DND/DNDItem.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/DND/DragAndDrop.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/DatasetSelect/DatasetSelect.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/DatasetSelect/DatasetSelectItem.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColor/ColorSettingsContainer/ColorSettingsContainer.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColor/DialogColor.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColor/DialogColorGradient/DialogColorGradient.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColor/DialogColorPalette/DialogColorPalette.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColumnSettings/DialogColumnSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColumnSettings/components/ColumnWidthSetting/ColumnWidthSetting.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColumnSettings/components/ColumnWidthSettingsSection/ColumnWidthSettingsSection.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColumnSettings/components/FieldInfo/FieldInfo.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColumnSettings/components/Subheader/Subheader.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColumnSettings/hooks/useDialogColumnSettingsState.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogColumnSettings/utils/index.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/DialogField.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/BackgroundSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgrounColorFieldSelect.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundColorModeRadioButtons.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundNullModeSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundSettingsButtonColorDialog.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundSettingsSwitch.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BarsSettings/BarsSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/ColorControls/ColorsControl.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/GradientColorControl/GradientColorControl.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/MinMaxInputs/MinMaxInputs.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/PaletteColorControl/PaletteColorControl.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BarsSettings/useBarsSettings/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/BarsSettings/useBarsSettings/useBarsSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/ButtonColorDialog/ButtonColorDialog.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/DialogFieldInput/DialogFieldInput.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/DialogFieldMainSection/DialogFieldMainSection.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/DialogFieldRow/DialogFieldRow.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/DialogFieldSelect/DialogFieldSelect.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/DialogFieldSettingTitle/DialogFieldSettingTitle.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/components/SubTotalsSettings/SubTotalsSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/utils/backgroundSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/utils/barsSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/utils/misc.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogField/utils/subTotals.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogFieldInspector/DialogFieldInspector.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogGeolayer/DialogGeolayer.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogLabelSettings/DialogLabelSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogLink.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogMetricSettings/DialogMetricSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogMultidataset.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogNoRights.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogPlaceholder/DialogPlaceholder.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogPlaceholder/components/DialogPlaceholderRow/DialogPlaceholderRow.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogPlaceholder/constants/radio-buttons.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogPlaceholder/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogPointsSize.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogShapes/DialogShapes.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogShapes/DialogShapesPalette/DialogShapesPalette.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/DialogTooltipSettings/DialogTooltipSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/CenterSetting/CenterSetting.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/IndicatorTitleSetting/IndicatorTitleSetting.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/LimitInput/LimitInput.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/SettingFeed/SettingFeed.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/SettingNavigator/NavigatorSubSettings/NavigatorSubSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/SettingNavigator/SettingNavigator.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/SettingPagination/SettingPagination.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/SettingSwitcher/SettingSwitcher.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/SettingTitleMode/SettingTitleMode.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/Settings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/Settings/ZoomSetting/ZoomSetting.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/components/DialogRadioButtons/DialogRadioButtons.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/components/DialogRow/DialogRow.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Dialogs/components/TitleWithTooltip/TitleWithTooltip.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/GeolayersSelect/GeolayersSelect.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/GradientPalettePreview/GradientPalettePreview.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/HierarchyEditor/HierarchyEditor.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/MinifiedPalette/MinifiedPalette.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/Palette/Palette.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/PlaceholderActionIcon/PlaceholderActionIcon.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/SearchInput/SearchInput.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/ValuesList/ValuesList.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/components/VisualizationItemTitleWithAggregation/VisualizationItemTitleWithAggregation.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/constants/aggregations.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/constants/dialogColor.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/constants/formats.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/constants/grouping.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/constants/index.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/constants/paletteTypes.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/constants/placeholders.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/App.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionDataset/DatasetItem/DatasetItem.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionDataset/FieldsContainer/FieldsContainer.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionDataset/FieldsContainer/ParametersContainer/ParametersContainer.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionDataset/FieldsContainer/components/SectionContainer/SectionContainer.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionDataset/HierarchyEditor/HierarchyEditor.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionDataset/SectionDataset.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionPreview/SectionPreview.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/AddField/AddField.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/AvailablePlaceholder/AvailablePlaceholder.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/ColorsPlaceholder/ColorsPlaceholder.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/DashboardFiltersPlaceholder/DashboardFiltersPlaceholder.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/DashboardParametersPlaceholder/DashboardParametersPlaceholder.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/FiltersPlaceholder/FiltersPlaceholder.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/LabelsPlaceholder/LabelsPlaceholder.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/LayerFiltersPlaceholder/LayerFiltersPlaceholder.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/Placeholder/Placeholder.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/PlaceholdersContainer.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/SegmentsPlaceholder/SegmentsPlaceholder.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/ShapesPlaceholder/ShapesPlaceholder.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/SortPlaceholder/SortPlaceholder.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/TooltipsPlaceholder/TooltipsPlaceholder.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/VisualizationPlaceholder/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/SectionVisualization.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/VisualizationItem/VisualizationItem.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/VisualizationLayersControl/CombinedChartLayerTypeSwitcher.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/VisualizationLayersControl/VisualizationLayersControl.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/SectionVisualization/VisualizationSelector/VisualizationSelector.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/Wizard.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/WizardActionPanel/WizardActionPanel.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/containers/Wizard/WizardActionPanel/useWizardActionPanel.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/reducers/dataset.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/reducers/dialogColor.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/reducers/hierarchyEditor.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/reducers/index.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/reducers/preview.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/reducers/revisions/reducers.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/reducers/settings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/reducers/utils/checkTableColor.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/reducers/utils/clearUnusedVisualizationItems.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/reducers/utils/getConfigData.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/reducers/utils/getPlaceholdersWithMergedSettings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/reducers/utils/index.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/reducers/utils/updateColorHierarchies.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/reducers/visualization.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/reducers/widget.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/selectors/dataset.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/selectors/dialogColor.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/selectors/gradient.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/selectors/index.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/selectors/preview.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/selectors/settings.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/selectors/visualization.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/selectors/widget.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/typings/index.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/typings/wizard.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/utils/colors.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/utils/filters.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/utils/helpers.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/utils/mappers/mapChartsToClientConfig.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/utils/mappers/mapClientToChartsConfig.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/utils/palette.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/utils/placeholder.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/utils/shapes.d.ts +0 -0
- /package/{types/ui → ui}/units/wizard/utils/table.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/CreateEntry/CreateEntry.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/CreateEntry/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/CreateEntryDialog/CreateEntryDialog.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/CreateEntryDialog/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/DeleteEntryDialog/DeleteEntryDialog.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/DuplicateEntryDialog/DuplicateEntryDialog.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/EmptyWorkbook/EmptyWorkbook.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/EmptyWorkbook/EmptyWorkbookContainer.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/EmptyWorkbook/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/EntryActions/EntryActions.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/EntryActions/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/RenameEntryDialog/RenameEntryDialog.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/Table/WorkbookEntriesTable/ChunkGroup/ChunkGroup.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/Table/WorkbookEntriesTable/MainTabContent/MainTabContent.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/Table/WorkbookEntriesTable/Row/Row.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/Table/WorkbookEntriesTable/WorkbookEntriesTable.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/Table/WorkbookEntriesTable/WorkbookEntriesTableTabs.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/Table/WorkbookEntriesTable/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/Table/WorkbookEntriesTable/types.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/Table/WorkbookEntriesTable/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/WorkbookActions/WorkbookActions.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/WorkbookActions/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/WorkbookFilters/WorkbookFilters.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/WorkbookMainTabContent/WorkbookMainTabContent.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/WorkbookMainTabContent/useChunkedEntries.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/WorkbookPage/WorkbookPage.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/WorkbookPage/hooks/useLayout.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/WorkbookTabContent/WorkbookTabContent.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/WorkbookTabContent/useChunkedEntries.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/WorkbookTabs/WorkbookTabs.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/WorkbookTabs/constants.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/WorkbookTabs/types.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/components/WorkbookTabs/utils.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/constants/index.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/store/actions/index.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/store/constants/index.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/store/reducers/index.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/store/reducers/workbook-page.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/store/selectors/index.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/types/index.d.ts +0 -0
- /package/{types/ui → ui}/units/workbooks/utils/entry.d.ts +0 -0
- /package/{types/ui → ui}/utils/absurd.d.ts +0 -0
- /package/{types/ui → ui}/utils/collectionFiltersStorage.d.ts +0 -0
- /package/{types/ui → ui}/utils/colors.d.ts +0 -0
- /package/{types/ui → ui}/utils/connections/icons.d.ts +0 -0
- /package/{types/ui → ui}/utils/connections/index.d.ts +0 -0
- /package/{types/ui → ui}/utils/copyItems.d.ts +0 -0
- /package/{types/ui → ui}/utils/copyText.d.ts +0 -0
- /package/{types/ui → ui}/utils/custom-export-menu-item.d.ts +0 -0
- /package/{types/ui → ui}/utils/date.d.ts +0 -0
- /package/{types/ui → ui}/utils/docs/helpers.d.ts +0 -0
- /package/{types/ui → ui}/utils/docs/index.d.ts +0 -0
- /package/{types/ui → ui}/utils/embedded.d.ts +0 -0
- /package/{types/ui → ui}/utils/errorContentTypes.d.ts +0 -0
- /package/{types/ui → ui}/utils/errors/errorByCode.d.ts +0 -0
- /package/{types/ui → ui}/utils/errors/manual.d.ts +0 -0
- /package/{types/ui → ui}/utils/errors/parse.d.ts +0 -0
- /package/{types/ui → ui}/utils/getActionPanelItems.d.ts +0 -0
- /package/{types/ui → ui}/utils/getAllEntryScopes.d.ts +0 -0
- /package/{types/ui → ui}/utils/getBasicActionPanelItems.d.ts +0 -0
- /package/{types/ui → ui}/utils/getCurrentUserRights.d.ts +0 -0
- /package/{types/ui → ui}/utils/getOverridedTheme.d.ts +0 -0
- /package/{types/ui → ui}/utils/getRestrictedParamNames.d.ts +0 -0
- /package/{types/ui → ui}/utils/getRevisionsPanelEntryScopesTexts.d.ts +0 -0
- /package/{types/ui → ui}/utils/getScopeTypeIcon.d.ts +0 -0
- /package/{types/ui → ui}/utils/getTopLevelEntryScopes.d.ts +0 -0
- /package/{types/ui → ui}/utils/getTypeSelectOptions.d.ts +0 -0
- /package/{types/ui → ui}/utils/gridStorage.d.ts +0 -0
- /package/{types/ui → ui}/utils/helpers.d.ts +0 -0
- /package/{types/ui → ui}/utils/icons.d.ts +0 -0
- /package/{types/ui → ui}/utils/index.d.ts +0 -0
- /package/{types/ui → ui}/utils/isEnabledFeature.d.ts +0 -0
- /package/{types/ui → ui}/utils/markdown/get-render-markdown-fn.d.ts +0 -0
- /package/{types/ui → ui}/utils/markdown/get-render-yfm-fn.d.ts +0 -0
- /package/{types/ui → ui}/utils/markdown/index.d.ts +0 -0
- /package/{types/ui → ui}/utils/markup.d.ts +0 -0
- /package/{types/ui → ui}/utils/migrateItemDataOnPaste.d.ts +0 -0
- /package/{types/ui → ui}/utils/mobile.d.ts +0 -0
- /package/{types/ui → ui}/utils/os.d.ts +0 -0
- /package/{types/ui → ui}/utils/palettes.d.ts +0 -0
- /package/{types/ui → ui}/utils/readOnly.d.ts +0 -0
- /package/{types/ui → ui}/utils/revisions.d.ts +0 -0
- /package/{types/ui → ui}/utils/scrollableContainerContext.d.ts +0 -0
- /package/{types/ui → ui}/utils/sdkRequests.d.ts +0 -0
- /package/{types/ui → ui}/utils/setEntryKey.d.ts +0 -0
- /package/{types/ui → ui}/utils/shared-entries/get-is-shared-entry.d.ts +0 -0
- /package/{types/ui → ui}/utils/shared-entries/index.d.ts +0 -0
- /package/{types/ui → ui}/utils/stringUtils.d.ts +0 -0
- /package/{types/ui → ui}/utils/urlUtils.d.ts +0 -0
- /package/{types/ui → ui}/utils/utils.d.ts +0 -0
- /package/{types/ui → ui}/utils/validation.d.ts +0 -0
- /package/{types/ui → ui}/utils/visualizations/line.d.ts +0 -0
- /package/{types/ui → ui}/utils/visualizations/placeholders/colors.d.ts +0 -0
- /package/{types/ui → ui}/utils/visualizations/placeholders/common-measures.d.ts +0 -0
- /package/{types/ui → ui}/utils/waitOperation.d.ts +0 -0
- /package/{types/ui → ui}/utils/widgetColors.d.ts +0 -0
- /package/{types/ui → ui}/utils/workbooks.d.ts +0 -0
|
@@ -1,3507 +0,0 @@
|
|
|
1
|
-
import { C as ConnectorType, D as DL, R as REQUEST_ID_HEADER, T as TRACE_ID_HEADER, S as SUPERUSER_SWITCH_MODE_COOKIE_NAME, E as ENABLE, a as SYSTEM_THEME, I as I18N, b as SHARED_URL_OPTIONS, U as URL_OPTIONS, c as ENTRY_TYPES, g as getEntryNameByKey, d as EntryScope, m as makeSlugName, e as URL_QUERY, P as PALETTES, f as getAvailableClientPalettesMap, h as getTenantDefaultColorPaletteId, i as getDefaultColorPaletteId, j as i18n$4, r as registry, k as isMarkupItem, l as I18n, n as ErrorCode, o as TIMEZONE_OFFSET_HEADER, A as ACCEPT_LANGUAGE_HEADER, p as TENANT_ID_HEADER, q as SuperuserHeader, s as filterUsersIds, t as oldSchema, u as DashTabItemType, N as NAVIGATION_ROUTE, F as Feature, v as ActionPanelQA, w as SaveChartControlsQa, x as EntryUpdateMode, y as ChartSaveControlsQA } from "./AccessRights.js";
|
|
2
|
-
import _, { cloneDeep, unset } from "lodash";
|
|
3
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
4
|
-
import escape from "lodash/escape";
|
|
5
|
-
import { M as Markup } from "./Markup.js";
|
|
6
|
-
import React__default, { useMemo, useRef, useEffect } from "react";
|
|
7
|
-
import { configure, Text, spacing, Link, Button, Icon, DropdownMenu, ActionTooltip } from "@gravity-ui/uikit";
|
|
8
|
-
import { useSelector, shallowEqual, useDispatch, connect } from "react-redux";
|
|
9
|
-
import isObject$1 from "lodash/isObject";
|
|
10
|
-
import axios, { isAxiosError } from "axios";
|
|
11
|
-
import axiosRetry from "axios-retry";
|
|
12
|
-
import { v4, v1 } from "uuid";
|
|
13
|
-
import block from "bem-cn-lite";
|
|
14
|
-
import { useHistory, useLocation as useLocation$1, withRouter } from "react-router-dom";
|
|
15
|
-
import { bindActionCreators } from "redux";
|
|
16
|
-
import sdkFactory, { CancellablePromise } from "@gravity-ui/sdk";
|
|
17
|
-
import { settings } from "@gravity-ui/chartkit";
|
|
18
|
-
import { settings as settings$1 } from "@gravity-ui/date-utils";
|
|
19
|
-
import isEmpty from "lodash/isEmpty";
|
|
20
|
-
import _mapKeys from "lodash/mapKeys";
|
|
21
|
-
import _snakeCase from "lodash/snakeCase";
|
|
22
|
-
import moment from "moment";
|
|
23
|
-
import { D as DIALOG_NEED_RESET } from "./OpenDialogNeedReset.js";
|
|
24
|
-
import { D as DIALOG_ERROR_WITH_TABS } from "./DialogErrorWithTabs.js";
|
|
25
|
-
import { D as DIALOG_CONFIRM } from "./DialogConfirm.js";
|
|
26
|
-
import { D as DIALOG_WARNING } from "./DialogWarning.js";
|
|
27
|
-
import { D as DIALOG_PARAMETER } from "./DialogParameter.js";
|
|
28
|
-
import { D as DIALOG_FILTER } from "./DialogFilter.js";
|
|
29
|
-
import { toaster } from "@gravity-ui/uikit/toaster-singleton";
|
|
30
|
-
import { R as REVISIONS_LIST_PART_SIZE, g as groupRevisionsByDate, a as Revisions } from "./Revisions.js";
|
|
31
|
-
import { createBrowserHistory } from "history";
|
|
32
|
-
import get from "lodash/get";
|
|
33
|
-
import { E as ExpandablePanel } from "./ExpandablePanel.js";
|
|
34
|
-
import { R as RevisionsPanel } from "./RevisionsPanel.js";
|
|
35
|
-
import { Ellipsis, Globe, ChevronDown } from "@gravity-ui/icons";
|
|
36
|
-
import defaultLogger from "@gravity-ui/ui-logger";
|
|
37
|
-
import { createSelector } from "reselect";
|
|
38
|
-
import { E as EntryContextMenu, I as ICONS_ENTRY_MENU_DEFAULT_SIZE, a as ICONS_ENTRY_MENU_DEFAULT_CLASSNAME } from "./EntryContextMenu.js";
|
|
39
|
-
import { E as EntryDialogName, a as EntryDialogResolveStatus } from "./EntryDialogues.js";
|
|
40
|
-
import { N as NavigationPrompt } from "./NavigationPrompt.js";
|
|
41
|
-
var RevisionsMode = /* @__PURE__ */ ((RevisionsMode2) => {
|
|
42
|
-
RevisionsMode2["Opened"] = "opened";
|
|
43
|
-
RevisionsMode2["Closed"] = "closed";
|
|
44
|
-
return RevisionsMode2;
|
|
45
|
-
})(RevisionsMode || {});
|
|
46
|
-
var RevisionsListMode = /* @__PURE__ */ ((RevisionsListMode2) => {
|
|
47
|
-
RevisionsListMode2["Collapsed"] = "collapsed";
|
|
48
|
-
RevisionsListMode2["Expanded"] = "expanded";
|
|
49
|
-
return RevisionsListMode2;
|
|
50
|
-
})(RevisionsListMode || {});
|
|
51
|
-
const ConnectorAlias = {
|
|
52
|
-
CHYT: "chyt_connectors"
|
|
53
|
-
};
|
|
54
|
-
const S3_BASED_CONNECTORS = [
|
|
55
|
-
ConnectorType.Csv,
|
|
56
|
-
ConnectorType.File,
|
|
57
|
-
ConnectorType.GsheetsV2,
|
|
58
|
-
ConnectorType.Yadocs
|
|
59
|
-
];
|
|
60
|
-
const EMBEDDED_MODE = {
|
|
61
|
-
TV: "tv",
|
|
62
|
-
EMBEDDED: "embedded"
|
|
63
|
-
};
|
|
64
|
-
const WORKBOOK_PATHNAME = "workbooks";
|
|
65
|
-
const COLLECTIONS_PATHNAME = "collections";
|
|
66
|
-
const YFM_MARKDOWN_CLASSNAME = "yfm";
|
|
67
|
-
const YFM_CUT_MARKDOWN_CLASSNAME = "yfm-cut";
|
|
68
|
-
const YFM_LATEX_CLASSNAME = "yfm-latex";
|
|
69
|
-
const YFM_MERMAID_CLASSNAME = "mermaid";
|
|
70
|
-
const SHEET_IDS = {
|
|
71
|
-
CHART_MENU: "menu",
|
|
72
|
-
DIALOG_ERROR: "error-details",
|
|
73
|
-
DIALOG_ENTRY_DESCRIPTION: "entry-description"
|
|
74
|
-
};
|
|
75
|
-
class ManualError extends Error {
|
|
76
|
-
constructor({ message, originalError, code, status, details, debug, extra }) {
|
|
77
|
-
super(message);
|
|
78
|
-
this._manualError = true;
|
|
79
|
-
this.code = code;
|
|
80
|
-
this.status = status;
|
|
81
|
-
this.details = details;
|
|
82
|
-
this.debug = debug;
|
|
83
|
-
this.extra = extra;
|
|
84
|
-
if (originalError) {
|
|
85
|
-
this.name = originalError.name;
|
|
86
|
-
this.stack = originalError.stack;
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
function isManualError(error) {
|
|
91
|
-
return Boolean(error._manualError);
|
|
92
|
-
}
|
|
93
|
-
function isCustomError(error) {
|
|
94
|
-
return Boolean(error.isCustomError);
|
|
95
|
-
}
|
|
96
|
-
function parseError(apiError) {
|
|
97
|
-
const error = isObject$1(apiError) ? apiError : {};
|
|
98
|
-
let status = null;
|
|
99
|
-
let requestId = DL.REQUEST_ID;
|
|
100
|
-
let message = "";
|
|
101
|
-
let details = {};
|
|
102
|
-
let code = "";
|
|
103
|
-
let debug;
|
|
104
|
-
let traceId;
|
|
105
|
-
let stack;
|
|
106
|
-
if (isManualError(error)) {
|
|
107
|
-
status = error.status || null;
|
|
108
|
-
message = error.message || "";
|
|
109
|
-
code = error.code || "";
|
|
110
|
-
details = error.details || {};
|
|
111
|
-
debug = error.debug || {};
|
|
112
|
-
} else if (isSdkError(error)) {
|
|
113
|
-
status = error.status;
|
|
114
|
-
requestId = error.requestId;
|
|
115
|
-
traceId = error.traceId;
|
|
116
|
-
message = error.message;
|
|
117
|
-
details = error.details || {};
|
|
118
|
-
code = error.code;
|
|
119
|
-
} else if (isOperationError(error)) {
|
|
120
|
-
status = error.status;
|
|
121
|
-
message = error.message;
|
|
122
|
-
details = error.details || {};
|
|
123
|
-
code = error.code;
|
|
124
|
-
} else if (isAxiosError(error)) {
|
|
125
|
-
const { message: errorMessage, response } = error;
|
|
126
|
-
status = response?.status ?? null;
|
|
127
|
-
requestId = response?.headers?.[REQUEST_ID_HEADER] || DL.REQUEST_ID;
|
|
128
|
-
traceId = response?.headers?.[TRACE_ID_HEADER];
|
|
129
|
-
message = response?.data?.message || errorMessage;
|
|
130
|
-
details = response?.data?.details || {};
|
|
131
|
-
code = response?.data?.code || "";
|
|
132
|
-
debug = response?.data?.debug;
|
|
133
|
-
traceId = response?.data?.debug?.traceId;
|
|
134
|
-
} else if (isCustomError(error)) {
|
|
135
|
-
const debugFull = error.debug;
|
|
136
|
-
status = debugFull?.status ?? null;
|
|
137
|
-
requestId = debugFull?.requestId || DL.REQUEST_ID;
|
|
138
|
-
message = error.message || "";
|
|
139
|
-
details = error.details || {};
|
|
140
|
-
code = debugFull?.code || "";
|
|
141
|
-
debug = debugFull;
|
|
142
|
-
traceId = debugFull?.traceId;
|
|
143
|
-
} else {
|
|
144
|
-
message = error.message || "";
|
|
145
|
-
stack = error.stack;
|
|
146
|
-
}
|
|
147
|
-
return {
|
|
148
|
-
status,
|
|
149
|
-
code,
|
|
150
|
-
requestId,
|
|
151
|
-
message,
|
|
152
|
-
details,
|
|
153
|
-
debug,
|
|
154
|
-
traceId,
|
|
155
|
-
stack,
|
|
156
|
-
_parsedError: true
|
|
157
|
-
};
|
|
158
|
-
}
|
|
159
|
-
function isFetchBaseQueryError(error) {
|
|
160
|
-
return isObject$1(error) && "status" in error && (typeof error.status === "string" || "data" in error);
|
|
161
|
-
}
|
|
162
|
-
function parseRtkQueryError(apiError) {
|
|
163
|
-
const error = isObject$1(apiError) ? apiError : {};
|
|
164
|
-
let status = null;
|
|
165
|
-
let message = "";
|
|
166
|
-
let code = "";
|
|
167
|
-
let stack;
|
|
168
|
-
if (isFetchBaseQueryError(error)) {
|
|
169
|
-
if (typeof error.status === "number") {
|
|
170
|
-
status = error.status;
|
|
171
|
-
}
|
|
172
|
-
} else if (error) {
|
|
173
|
-
code = error.code || "";
|
|
174
|
-
message = error.message || "";
|
|
175
|
-
stack = error.stack;
|
|
176
|
-
}
|
|
177
|
-
return {
|
|
178
|
-
status,
|
|
179
|
-
code,
|
|
180
|
-
message,
|
|
181
|
-
stack,
|
|
182
|
-
details: {},
|
|
183
|
-
traceId: void 0,
|
|
184
|
-
requestId: DL.REQUEST_ID,
|
|
185
|
-
debug: void 0,
|
|
186
|
-
_parsedError: true
|
|
187
|
-
};
|
|
188
|
-
}
|
|
189
|
-
let isSuperUser;
|
|
190
|
-
const _Utils = class _Utils {
|
|
191
|
-
static getPathBefore({ path }) {
|
|
192
|
-
let pathBefore = "/";
|
|
193
|
-
if (path && typeof path === "string") {
|
|
194
|
-
let pathSplit = path.split("/");
|
|
195
|
-
pathSplit = pathSplit.filter((nameStr) => nameStr);
|
|
196
|
-
pathSplit.splice(-1, 1);
|
|
197
|
-
if (pathSplit.length !== 0) {
|
|
198
|
-
pathBefore = pathSplit.join("/");
|
|
199
|
-
}
|
|
200
|
-
}
|
|
201
|
-
return pathBefore === "/" ? "/" : pathBefore + "/";
|
|
202
|
-
}
|
|
203
|
-
static getEntryNameFromKey(key, withFolders = false) {
|
|
204
|
-
if (!key) {
|
|
205
|
-
return "";
|
|
206
|
-
}
|
|
207
|
-
if (withFolders) {
|
|
208
|
-
const match2 = key.match(/([^/]+)\/?$/);
|
|
209
|
-
return match2 ? match2[1] : "";
|
|
210
|
-
}
|
|
211
|
-
const match = key.match(/[^/]*$/);
|
|
212
|
-
return match ? match[0] : key;
|
|
213
|
-
}
|
|
214
|
-
static getEntryKey(path, name, defaultName = "") {
|
|
215
|
-
const entryName = name === "" ? defaultName : name;
|
|
216
|
-
return path === "/" ? entryName : path + entryName;
|
|
217
|
-
}
|
|
218
|
-
static getNavigationPathFromKey(key) {
|
|
219
|
-
return key.replace(/\/?[^/]*$/g, "") || "/";
|
|
220
|
-
}
|
|
221
|
-
static getCookie(name) {
|
|
222
|
-
const cookie = document.cookie.match("(^|;)\\s*" + name + "\\s*=\\s*([^;]+)");
|
|
223
|
-
return cookie ? cookie.pop() || "" : "";
|
|
224
|
-
}
|
|
225
|
-
static isSuperUser() {
|
|
226
|
-
if (typeof isSuperUser === "undefined") {
|
|
227
|
-
isSuperUser = DL.DISPLAY_SUPERUSER_SWITCH && _Utils.getCookie(SUPERUSER_SWITCH_MODE_COOKIE_NAME) === ENABLE;
|
|
228
|
-
}
|
|
229
|
-
return isSuperUser;
|
|
230
|
-
}
|
|
231
|
-
static setCookie({
|
|
232
|
-
domain,
|
|
233
|
-
name,
|
|
234
|
-
value,
|
|
235
|
-
path = "/",
|
|
236
|
-
maxAge = 365 * 24 * 60 * 60
|
|
237
|
-
}) {
|
|
238
|
-
let cookie = `${name}=${value}; path=${path}; max-age=${maxAge}`;
|
|
239
|
-
if (domain) {
|
|
240
|
-
cookie += `; domain=${domain}`;
|
|
241
|
-
}
|
|
242
|
-
document.cookie = cookie;
|
|
243
|
-
}
|
|
244
|
-
static deleteCookie({ name }) {
|
|
245
|
-
if (name) {
|
|
246
|
-
this.setCookie({ name, value: "", maxAge: -1 });
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
static restore(key) {
|
|
250
|
-
try {
|
|
251
|
-
const data = window.localStorage.getItem(key);
|
|
252
|
-
if (data === null) {
|
|
253
|
-
return null;
|
|
254
|
-
}
|
|
255
|
-
return JSON.parse(data);
|
|
256
|
-
} catch (err) {
|
|
257
|
-
return null;
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
static store(key, data) {
|
|
261
|
-
try {
|
|
262
|
-
window.localStorage.setItem(key, JSON.stringify(data));
|
|
263
|
-
} catch (err) {
|
|
264
|
-
console.error(`data not saved in localeStorage: ${err}`);
|
|
265
|
-
}
|
|
266
|
-
}
|
|
267
|
-
// TODO@types
|
|
268
|
-
static isRetina() {
|
|
269
|
-
let devicePixelRatio = 1;
|
|
270
|
-
if ("deviceXDPI" in window.screen && "logicalXDPI" in window.screen) {
|
|
271
|
-
devicePixelRatio = window.screen.deviceXDPI / window.screen.logicalXDPI;
|
|
272
|
-
} else if ("devicePixelRatio" in window) {
|
|
273
|
-
devicePixelRatio = window.devicePixelRatio;
|
|
274
|
-
}
|
|
275
|
-
return devicePixelRatio >= 1.3;
|
|
276
|
-
}
|
|
277
|
-
static getCurrentTheme() {
|
|
278
|
-
return DL.USER_SETTINGS.theme || SYSTEM_THEME;
|
|
279
|
-
}
|
|
280
|
-
static getCurrentThemeSettings() {
|
|
281
|
-
return DL.USER_SETTINGS.themeSettings || {};
|
|
282
|
-
}
|
|
283
|
-
static setBodyFeatures() {
|
|
284
|
-
const body = window.document.body;
|
|
285
|
-
if (this.isRetina()) {
|
|
286
|
-
body.classList.add("i-ua_retina_yes");
|
|
287
|
-
}
|
|
288
|
-
}
|
|
289
|
-
static setLang() {
|
|
290
|
-
const lang = DL.USER_LANG;
|
|
291
|
-
I18N.setLang(lang);
|
|
292
|
-
settings.set({ lang });
|
|
293
|
-
configure({ lang });
|
|
294
|
-
moment.locale(lang);
|
|
295
|
-
moment.updateLocale(lang, { week: { dow: 1, doy: 7 } });
|
|
296
|
-
settings$1.loadLocale(lang).then(() => {
|
|
297
|
-
settings$1.setLocale(lang);
|
|
298
|
-
});
|
|
299
|
-
}
|
|
300
|
-
static addBodyClass(...className) {
|
|
301
|
-
window.document.body.classList.add(...className);
|
|
302
|
-
}
|
|
303
|
-
static removeBodyClass(...className) {
|
|
304
|
-
window.document.body.classList.remove(...className);
|
|
305
|
-
}
|
|
306
|
-
static setSdk() {
|
|
307
|
-
window.sdk = getSdk().sdk;
|
|
308
|
-
}
|
|
309
|
-
static setup() {
|
|
310
|
-
_Utils.setBodyFeatures();
|
|
311
|
-
_Utils.setLang();
|
|
312
|
-
_Utils.setSdk();
|
|
313
|
-
}
|
|
314
|
-
static setMobileMetaViewport() {
|
|
315
|
-
const viewportContent = "width=device-width,minimum-scale=1,initial-scale=1";
|
|
316
|
-
const viewportMetaTag = document.querySelector("meta[name=viewport]");
|
|
317
|
-
viewportMetaTag.setAttribute("content", viewportContent);
|
|
318
|
-
}
|
|
319
|
-
static getErrorDetails(error) {
|
|
320
|
-
const { message, details, code } = _Utils.parseErrorResponse(error);
|
|
321
|
-
let detailsMessage = {};
|
|
322
|
-
if (message) {
|
|
323
|
-
detailsMessage = { ...detailsMessage, message };
|
|
324
|
-
}
|
|
325
|
-
if (code) {
|
|
326
|
-
detailsMessage = { ...detailsMessage, code };
|
|
327
|
-
}
|
|
328
|
-
if (details && !isEmpty(details)) {
|
|
329
|
-
detailsMessage = { ...detailsMessage, details };
|
|
330
|
-
}
|
|
331
|
-
if (isEmpty(detailsMessage)) {
|
|
332
|
-
return null;
|
|
333
|
-
}
|
|
334
|
-
return detailsMessage;
|
|
335
|
-
}
|
|
336
|
-
static getCSRFToken() {
|
|
337
|
-
const csrfMetaTag2 = document.querySelector("meta[name=csrf-token]");
|
|
338
|
-
return csrfMetaTag2 ? csrfMetaTag2.content : null;
|
|
339
|
-
}
|
|
340
|
-
static getOptionsFromSearch(search) {
|
|
341
|
-
const searchParams = new URLSearchParams(search);
|
|
342
|
-
return {
|
|
343
|
-
theme: searchParams.get(URL_OPTIONS.THEME),
|
|
344
|
-
embedded: searchParams.get(URL_OPTIONS.EMBEDDED) === "1",
|
|
345
|
-
noControls: searchParams.get(URL_OPTIONS.NO_CONTROLS) === "1" || searchParams.get(URL_OPTIONS.NO_CONTROLS) === "true",
|
|
346
|
-
// deprecated
|
|
347
|
-
actionParamsEnabled: searchParams.get(URL_OPTIONS.ACTION_PARAMS_ENABLED) === "1",
|
|
348
|
-
autoupdateInterval: Number(searchParams.get(URL_OPTIONS.AUTOUPDATE)),
|
|
349
|
-
showSafeChartInfo: searchParams.get(SHARED_URL_OPTIONS.SAFE_CHART) === "1"
|
|
350
|
-
};
|
|
351
|
-
}
|
|
352
|
-
static getParamsFromSearch(search) {
|
|
353
|
-
const searchParams = new URLSearchParams(search);
|
|
354
|
-
const params = {};
|
|
355
|
-
for (const [key, value] of searchParams.entries()) {
|
|
356
|
-
if (!Object.values(URL_OPTIONS).includes(key)) {
|
|
357
|
-
const existed = params[key];
|
|
358
|
-
if (existed) {
|
|
359
|
-
if (Array.isArray(existed)) {
|
|
360
|
-
existed.push(value);
|
|
361
|
-
} else {
|
|
362
|
-
params[key] = [existed, value];
|
|
363
|
-
}
|
|
364
|
-
} else {
|
|
365
|
-
params[key] = value;
|
|
366
|
-
}
|
|
367
|
-
}
|
|
368
|
-
}
|
|
369
|
-
return params;
|
|
370
|
-
}
|
|
371
|
-
static filterVirtual({ virtual }) {
|
|
372
|
-
return !virtual;
|
|
373
|
-
}
|
|
374
|
-
static downloadFile(data, fileName) {
|
|
375
|
-
_Utils.downloadFileByUrl(URL.createObjectURL(data), fileName);
|
|
376
|
-
}
|
|
377
|
-
static downloadFileByUrl(url, fileName) {
|
|
378
|
-
const a = document.createElement("a");
|
|
379
|
-
a.href = url;
|
|
380
|
-
a.download = fileName;
|
|
381
|
-
a.click();
|
|
382
|
-
a.remove();
|
|
383
|
-
}
|
|
384
|
-
static convertToSnakeCase(data) {
|
|
385
|
-
return _mapKeys(data, (_value, key) => _snakeCase(key));
|
|
386
|
-
}
|
|
387
|
-
};
|
|
388
|
-
_Utils.parseErrorResponse = parseError;
|
|
389
|
-
_Utils.parseRtkQueryError = parseRtkQueryError;
|
|
390
|
-
let Utils = _Utils;
|
|
391
|
-
function absurd(impossible) {
|
|
392
|
-
console.error("Static assert has failed with this value:", impossible);
|
|
393
|
-
throw new TypeError("Static assert has failed");
|
|
394
|
-
}
|
|
395
|
-
const iconChOverYt = "data:image/svg+xml,%3csvg%20width='56'%20height='56'%20viewBox='0%200%2056%2056'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M15.105%2012.763c0-.974.79-1.763%201.763-1.763h25.1c.624%200%201.202.33%201.52.867L53%2028l-9.513%2016.133a1.763%201.763%200%200%201-1.519.867h-25.1c-.973%200-1.763-.79-1.763-1.763V12.763Z'%20fill='%23FC0'/%3e%3cpath%20opacity='.9'%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M26.823%2025.568c-.737%200-1.402-.108-1.995-.325a4.198%204.198%200%200%201-1.521-.942%204.138%204.138%200%200%201-.969-1.502c-.225-.59-.338-1.261-.338-2.015%200-.754.11-1.426.331-2.015.221-.59.54-1.09.956-1.502.416-.411.92-.725%201.515-.942.593-.217%201.267-.325%202.021-.325.65%200%201.194.058%201.631.175.438.117.783.25%201.034.397v1.599a3.909%203.909%200%200%200-1.118-.455%205.83%205.83%200%200%200-1.443-.169c-1.023%200-1.777.269-2.262.806-.485.537-.728%201.348-.728%202.431%200%202.158%201.005%203.237%203.016%203.237.52%200%20.995-.059%201.424-.175.428-.117.799-.284%201.111-.501v1.56c-.234.173-.574.327-1.02.461-.447.135-.995.202-1.645.202Zm10.049-3.991h-4.03v3.861h-1.859v-9.321h1.859v3.913h4.03v-3.913h1.859v9.321h-1.859v-3.861Z'%20fill='%23000'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.901%2035.382v3.939h-1.872v-3.926L23%2030h2.054l2.028%203.783L29.175%2030h1.729l-3.003%205.382Zm8.151-3.822v7.761h-1.859V31.56h-2.795V30h7.449v1.56h-2.795Z'%20fill='%23000'/%3e%3cpath%20fill='%23FC0'%20d='M5%2011h5.053v34H5z'/%3e%3cpath%20d='M5%2039.963h5.053V45H5v-5.037Z'%20fill='%23FF0400'/%3e%3c/svg%3e";
|
|
396
|
-
const iconUndefined = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3c!--%20Generator:%20Sketch%2050%20(54983)%20-%20http://www.bohemiancoding.com/sketch%20--%3e%3cdefs%3e%3c/defs%3e%3cg%20id='Page-1'%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%20opacity='0.200000003'%3e%3cg%20id='02-icons'%20transform='translate(-158.000000,%20-373.000000)'%20fill='%23000000'%3e%3cg%20id='Group-4'%20transform='translate(158.000000,%20373.000000)'%3e%3cpath%20fill='currentColor'%20d='M8,16%20C3.581722,16%200,12.418278%200,8%20C0,3.581722%203.581722,0%208,0%20C12.418278,0%2016,3.581722%2016,8%20C16,12.418278%2012.418278,16%208,16%20Z%20M4,9%20C4.55228475,9%205,8.55228475%205,8%20C5,7.44771525%204.55228475,7%204,7%20C3.44771525,7%203,7.44771525%203,8%20C3,8.55228475%203.44771525,9%204,9%20Z%20M8,9%20C8.55228475,9%209,8.55228475%209,8%20C9,7.44771525%208.55228475,7%208,7%20C7.44771525,7%207,7.44771525%207,8%20C7,8.55228475%207.44771525,9%208,9%20Z%20M12,9%20C12.5522847,9%2013,8.55228475%2013,8%20C13,7.44771525%2012.5522847,7%2012,7%20C11.4477153,7%2011,7.44771525%2011,8%20C11,8.55228475%2011.4477153,9%2012,9%20Z'%20id='Combined-Shape'%20/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e";
|
|
397
|
-
const getBIConnectorIconData = (type) => {
|
|
398
|
-
return DL.CONNECTOR_ICONS.find((icon) => icon.conn_type === type);
|
|
399
|
-
};
|
|
400
|
-
const getConnectorIconDataByAlias = (type) => {
|
|
401
|
-
switch (type) {
|
|
402
|
-
case ConnectorAlias.CHYT: {
|
|
403
|
-
return iconChOverYt;
|
|
404
|
-
}
|
|
405
|
-
default: {
|
|
406
|
-
return void 0;
|
|
407
|
-
}
|
|
408
|
-
}
|
|
409
|
-
};
|
|
410
|
-
const getConnectorIconData = (type, withoutDefault) => {
|
|
411
|
-
const iconData = getBIConnectorIconData(type);
|
|
412
|
-
if (iconData) {
|
|
413
|
-
return iconData;
|
|
414
|
-
}
|
|
415
|
-
return withoutDefault ? void 0 : iconUndefined;
|
|
416
|
-
};
|
|
417
|
-
const getDocsBaseUrl = () => {
|
|
418
|
-
const { datalensDocs } = DL.ENDPOINTS;
|
|
419
|
-
return datalensDocs || "";
|
|
420
|
-
};
|
|
421
|
-
const regexpToMatchRelativePath = /href=(\.[^a-zA-Z0-9]+|\/|)(.+)/;
|
|
422
|
-
const regexpToMatchRelativeHref = /href="((?:(?!http|"|#).)*)"/g;
|
|
423
|
-
const PATH_IN_REGEXP_INDEX = 2;
|
|
424
|
-
function formUrl$1(endpoint, path) {
|
|
425
|
-
const normalizedEndpoint = endpoint.slice(-1) === "/" ? endpoint.slice(0, -1) : endpoint;
|
|
426
|
-
const normalizedPath = path[0] === "/" ? path : "/" + path;
|
|
427
|
-
return normalizedEndpoint + normalizedPath;
|
|
428
|
-
}
|
|
429
|
-
function formDocsEndpointDL(path) {
|
|
430
|
-
const { datalensDocs } = DL.ENDPOINTS;
|
|
431
|
-
if (!datalensDocs) {
|
|
432
|
-
return "";
|
|
433
|
-
}
|
|
434
|
-
return formUrl$1(datalensDocs, path);
|
|
435
|
-
}
|
|
436
|
-
function replaceRelativeLinksToAbsoluteInHTML(doc) {
|
|
437
|
-
return doc.replace(regexpToMatchRelativeHref, (subString) => {
|
|
438
|
-
const matchedPath = subString.replace(/"/g, "").match(regexpToMatchRelativePath) || [];
|
|
439
|
-
const path = matchedPath[PATH_IN_REGEXP_INDEX];
|
|
440
|
-
if (path) {
|
|
441
|
-
const baseUrl = getDocsBaseUrl();
|
|
442
|
-
const docsPath = path.toLowerCase().includes("err") ? `troubleshooting/errors/${path}` : path;
|
|
443
|
-
return `href="${baseUrl}/${docsPath}"`;
|
|
444
|
-
}
|
|
445
|
-
return subString;
|
|
446
|
-
});
|
|
447
|
-
}
|
|
448
|
-
let history;
|
|
449
|
-
const getHistory = () => {
|
|
450
|
-
if (!history) {
|
|
451
|
-
history = createBrowserHistory();
|
|
452
|
-
}
|
|
453
|
-
return history;
|
|
454
|
-
};
|
|
455
|
-
const setHistory = (newHistory) => {
|
|
456
|
-
history = newHistory;
|
|
457
|
-
};
|
|
458
|
-
const isObject = (value) => typeof value === "object" && value !== null;
|
|
459
|
-
const getCurrent = (history2) => ({ ...history2.location });
|
|
460
|
-
const prepareSearch = (search) => search.startsWith("?") ? search : `?${search}`;
|
|
461
|
-
const prepareLocation = (history2, location) => {
|
|
462
|
-
const { search, ...next } = isObject(location) ? location : { pathname: location };
|
|
463
|
-
return {
|
|
464
|
-
...next.pathname === void 0 && getCurrent(history2),
|
|
465
|
-
...next,
|
|
466
|
-
...search && {
|
|
467
|
-
search: prepareSearch(isObject(search) ? search.toString() : search)
|
|
468
|
-
}
|
|
469
|
-
};
|
|
470
|
-
};
|
|
471
|
-
const createRouterLocation = (history2, location) => {
|
|
472
|
-
const href = history2.createHref(location);
|
|
473
|
-
const pathname = location.pathname ?? "";
|
|
474
|
-
return {
|
|
475
|
-
...location,
|
|
476
|
-
href,
|
|
477
|
-
path: pathname.split("/").filter(Boolean),
|
|
478
|
-
params: () => new URLSearchParams(location.search),
|
|
479
|
-
url: () => new URL(href)
|
|
480
|
-
};
|
|
481
|
-
};
|
|
482
|
-
const createRouter = (history2) => ({
|
|
483
|
-
get history() {
|
|
484
|
-
return history2;
|
|
485
|
-
},
|
|
486
|
-
createUrl: (location) => new URL(history2.createHref(location)),
|
|
487
|
-
location: () => {
|
|
488
|
-
return createRouterLocation(history2, getCurrent(history2));
|
|
489
|
-
},
|
|
490
|
-
go: (n) => history2.go(n),
|
|
491
|
-
goBack: () => history2.goBack(),
|
|
492
|
-
goForward: () => history2.goForward(),
|
|
493
|
-
open: (location, target = "_self", features = "") => {
|
|
494
|
-
if (typeof window === "undefined") return;
|
|
495
|
-
const url = history2.createHref(prepareLocation(history2, location));
|
|
496
|
-
if (target === "_self" && !features) {
|
|
497
|
-
window.location.assign(url);
|
|
498
|
-
} else {
|
|
499
|
-
window.open(url, target, features);
|
|
500
|
-
}
|
|
501
|
-
},
|
|
502
|
-
openTab: (location, features = "") => {
|
|
503
|
-
if (typeof window === "undefined") return;
|
|
504
|
-
const url = history2.createHref(prepareLocation(history2, location));
|
|
505
|
-
window.open(url, "_blank", features);
|
|
506
|
-
},
|
|
507
|
-
push: (location) => history2.push(prepareLocation(history2, location)),
|
|
508
|
-
replace: (location) => history2.replace(prepareLocation(history2, location)),
|
|
509
|
-
reload: () => {
|
|
510
|
-
if (typeof window !== "undefined") {
|
|
511
|
-
window.location.reload();
|
|
512
|
-
}
|
|
513
|
-
}
|
|
514
|
-
});
|
|
515
|
-
const getRouter = () => createRouter(getHistory());
|
|
516
|
-
const useRouter = () => {
|
|
517
|
-
const history2 = useHistory();
|
|
518
|
-
return useMemo(() => createRouter(history2), [history2]);
|
|
519
|
-
};
|
|
520
|
-
const getLocation = () => getRouter().location();
|
|
521
|
-
const useLocation = () => {
|
|
522
|
-
const router = useRouter();
|
|
523
|
-
const location = useLocation$1();
|
|
524
|
-
return useMemo(() => createRouterLocation(router.history, location), [router, location]);
|
|
525
|
-
};
|
|
526
|
-
const toSearchParams = (params = {}) => {
|
|
527
|
-
const searchParams = new URLSearchParams();
|
|
528
|
-
Object.entries(params).forEach(([key, value]) => {
|
|
529
|
-
if (Array.isArray(value)) {
|
|
530
|
-
value.forEach((item) => {
|
|
531
|
-
searchParams.append(key, String(item));
|
|
532
|
-
});
|
|
533
|
-
} else if (value !== void 0 && value !== null) {
|
|
534
|
-
searchParams.append(key, String(value));
|
|
535
|
-
}
|
|
536
|
-
});
|
|
537
|
-
return searchParams;
|
|
538
|
-
};
|
|
539
|
-
const toQueryString = (params = {}) => {
|
|
540
|
-
const query = String(toSearchParams(params));
|
|
541
|
-
return query.length ? "?" + query : "";
|
|
542
|
-
};
|
|
543
|
-
const getEntityIdFromPathname = (isCollection = false) => {
|
|
544
|
-
const path = getLocation().path;
|
|
545
|
-
const entityPathnameIndex = path.findIndex(
|
|
546
|
-
(part) => part === (isCollection ? COLLECTIONS_PATHNAME : WORKBOOK_PATHNAME)
|
|
547
|
-
);
|
|
548
|
-
return entityPathnameIndex === -1 ? "" : path[entityPathnameIndex + 1];
|
|
549
|
-
};
|
|
550
|
-
const isEditorEntryType = (type) => {
|
|
551
|
-
return ENTRY_TYPES.editor.includes(type);
|
|
552
|
-
};
|
|
553
|
-
const getUrlParamFromStr = (search, paramName) => {
|
|
554
|
-
const searchParams = new URLSearchParams(search);
|
|
555
|
-
return searchParams.get(paramName);
|
|
556
|
-
};
|
|
557
|
-
function getUIEntryRoute({ entry, origin, endpoints }) {
|
|
558
|
-
const { entryId, scope, type, key } = entry;
|
|
559
|
-
const defaultUrl = `${endpoints.navigation}/${entryId}`;
|
|
560
|
-
const name = getEntryNameByKey({ key });
|
|
561
|
-
const slugName = makeSlugName(entryId, name);
|
|
562
|
-
const url = (() => {
|
|
563
|
-
switch (scope) {
|
|
564
|
-
case EntryScope.Connection:
|
|
565
|
-
return `${endpoints.connections}/${slugName}`;
|
|
566
|
-
case EntryScope.Dataset:
|
|
567
|
-
return `${endpoints.dataset}/${slugName}`;
|
|
568
|
-
case EntryScope.Dash:
|
|
569
|
-
return `/${slugName}`;
|
|
570
|
-
case EntryScope.Widget:
|
|
571
|
-
if (isEditorEntryType(type)) {
|
|
572
|
-
return `${endpoints.editor}/${slugName}`;
|
|
573
|
-
}
|
|
574
|
-
if (ENTRY_TYPES.ql.includes(type)) {
|
|
575
|
-
return `${endpoints.ql}/${slugName}`;
|
|
576
|
-
}
|
|
577
|
-
if (ENTRY_TYPES.wizard.includes(type)) {
|
|
578
|
-
return `${endpoints.wizard}/${slugName}`;
|
|
579
|
-
}
|
|
580
|
-
return defaultUrl;
|
|
581
|
-
default:
|
|
582
|
-
return defaultUrl;
|
|
583
|
-
}
|
|
584
|
-
})();
|
|
585
|
-
return new URL(url, origin).toString();
|
|
586
|
-
}
|
|
587
|
-
const isUnreleasedByUrlParams = (search) => {
|
|
588
|
-
return getUrlParamFromStr(search, URL_QUERY.UNRELEASED) === "1" && !getUrlParamFromStr(search, URL_QUERY.REV_ID);
|
|
589
|
-
};
|
|
590
|
-
const collectionColoredBigDark = "data:image/svg+xml,%3csvg%20width='125'%20height='126'%20viewBox='0%200%20125%20126'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='7'%20y='65.4648'%20width='54'%20height='54'%20rx='10'%20fill='%2390A6BA'/%3e%3crect%20x='65'%20y='7.46484'%20width='54'%20height='54'%20rx='10'%20fill='%2390A6BA'/%3e%3crect%20x='7'%20y='7.46484'%20width='54'%20height='54'%20rx='10'%20fill='%2390A6BA'/%3e%3crect%20x='65'%20y='65.4648'%20width='54'%20height='54'%20rx='10'%20fill='%2390A6BA'/%3e%3crect%20x='0.5'%20y='0.964844'%20width='124'%20height='124'%20rx='11.5'%20stroke='white'%20stroke-opacity='0.15'/%3e%3c/svg%3e";
|
|
591
|
-
const collectionColoredBig = "data:image/svg+xml,%3csvg%20width='125'%20height='126'%20viewBox='0%200%20125%20126'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='7'%20y='65.4648'%20width='54'%20height='54'%20rx='10'%20fill='%23657B8F'/%3e%3crect%20x='65'%20y='7.46484'%20width='54'%20height='54'%20rx='10'%20fill='%23657B8F'/%3e%3crect%20x='7'%20y='7.46484'%20width='54'%20height='54'%20rx='10'%20fill='%23657B8F'/%3e%3crect%20x='65'%20y='65.4648'%20width='54'%20height='54'%20rx='10'%20fill='%23657B8F'/%3e%3crect%20x='0.5'%20y='0.964844'%20width='124'%20height='124'%20rx='11.5'%20stroke='black'%20stroke-opacity='0.1'/%3e%3c/svg%3e";
|
|
592
|
-
const collectionColoredDark = "data:image/svg+xml,%3csvg%20width='32'%20height='34'%20viewBox='0%200%2032%2034'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.79199'%20y='17.9731'%20width='13.824'%20height='13.824'%20rx='2.56'%20fill='%2390A6BA'/%3e%3crect%20x='16.64'%20y='3.125'%20width='13.824'%20height='13.824'%20rx='2.56'%20fill='%2390A6BA'/%3e%3crect%20x='1.79199'%20y='3.125'%20width='13.824'%20height='13.824'%20rx='2.56'%20fill='%2390A6BA'/%3e%3crect%20x='16.64'%20y='17.9731'%20width='13.824'%20height='13.824'%20rx='2.56'%20fill='%2390A6BA'/%3e%3crect%20x='0.128'%20y='1.46101'%20width='31.744'%20height='31.744'%20rx='2.944'%20stroke='black'%20stroke-opacity='0.1'%20stroke-width='0.256'/%3e%3crect%20y='0.666992'%20width='32'%20height='32'%20rx='6'%20fill='%2390A6BA'/%3e%3cg%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.2143%2010.2386H12.7857C13.1407%2010.2386%2013.4285%2010.5264%2013.4285%2010.8815V13.4529C13.4285%2013.808%2013.1407%2014.0958%2012.7857%2014.0958H10.2143C9.85921%2014.0958%209.57139%2013.808%209.57139%2013.4529V10.8815C9.57139%2010.5264%209.85921%2010.2386%2010.2143%2010.2386ZM7.64282%2010.8815C7.64282%209.46133%208.79409%208.31006%2010.2143%208.31006H12.7857C14.2058%208.31006%2015.3571%209.46133%2015.3571%2010.8815V13.4529C15.3571%2014.8731%2014.2058%2016.0243%2012.7857%2016.0243H10.2143C8.79409%2016.0243%207.64282%2014.8731%207.64282%2013.4529V10.8815ZM19.2143%2010.2386H21.7857C22.1407%2010.2386%2022.4285%2010.5264%2022.4285%2010.8815V13.4529C22.4285%2013.808%2022.1407%2014.0958%2021.7857%2014.0958H19.2143C18.8592%2014.0958%2018.5714%2013.808%2018.5714%2013.4529V10.8815C18.5714%2010.5264%2018.8592%2010.2386%2019.2143%2010.2386ZM16.6428%2010.8815C16.6428%209.46133%2017.7941%208.31006%2019.2143%208.31006H21.7857C23.2058%208.31006%2024.3571%209.46133%2024.3571%2010.8815V13.4529C24.3571%2014.8731%2023.2058%2016.0243%2021.7857%2016.0243H19.2143C17.7941%2016.0243%2016.6428%2014.8731%2016.6428%2013.4529V10.8815ZM12.7857%2019.2386H10.2143C9.85921%2019.2386%209.57139%2019.5264%209.57139%2019.8815V22.4529C9.57139%2022.808%209.85921%2023.0958%2010.2143%2023.0958H12.7857C13.1407%2023.0958%2013.4285%2022.808%2013.4285%2022.4529V19.8815C13.4285%2019.5264%2013.1407%2019.2386%2012.7857%2019.2386ZM10.2143%2017.3101C8.79409%2017.3101%207.64282%2018.4613%207.64282%2019.8815V22.4529C7.64282%2023.8731%208.79409%2025.0243%2010.2143%2025.0243H12.7857C14.2058%2025.0243%2015.3571%2023.8731%2015.3571%2022.4529V19.8815C15.3571%2018.4613%2014.2058%2017.3101%2012.7857%2017.3101H10.2143ZM19.2143%2019.2386H21.7857C22.1407%2019.2386%2022.4285%2019.5264%2022.4285%2019.8815V22.4529C22.4285%2022.808%2022.1407%2023.0958%2021.7857%2023.0958H19.2143C18.8592%2023.0958%2018.5714%2022.808%2018.5714%2022.4529V19.8815C18.5714%2019.5264%2018.8592%2019.2386%2019.2143%2019.2386ZM16.6428%2019.8815C16.6428%2018.4613%2017.7941%2017.3101%2019.2143%2017.3101H21.7857C23.2058%2017.3101%2024.3571%2018.4613%2024.3571%2019.8815V22.4529C24.3571%2023.8731%2023.2058%2025.0243%2021.7857%2025.0243H19.2143C17.7941%2025.0243%2016.6428%2023.8731%2016.6428%2022.4529V19.8815Z'%20fill='white'/%3e%3c/g%3e%3c/svg%3e";
|
|
593
|
-
const collectionColored = "data:image/svg+xml,%3csvg%20width='32'%20height='34'%20viewBox='0%200%2032%2034'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.79199'%20y='17.9731'%20width='13.824'%20height='13.824'%20rx='2.56'%20fill='%23657B8F'/%3e%3crect%20x='16.64'%20y='3.125'%20width='13.824'%20height='13.824'%20rx='2.56'%20fill='%23657B8F'/%3e%3crect%20x='1.79199'%20y='3.125'%20width='13.824'%20height='13.824'%20rx='2.56'%20fill='%23657B8F'/%3e%3crect%20x='16.64'%20y='17.9731'%20width='13.824'%20height='13.824'%20rx='2.56'%20fill='%23657B8F'/%3e%3crect%20x='0.128'%20y='1.46101'%20width='31.744'%20height='31.744'%20rx='2.944'%20stroke='black'%20stroke-opacity='0.1'%20stroke-width='0.256'/%3e%3crect%20y='0.666992'%20width='32'%20height='32'%20rx='6'%20fill='%23657B8F'/%3e%3cg%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.2143%2010.2386H12.7857C13.1407%2010.2386%2013.4285%2010.5264%2013.4285%2010.8815V13.4529C13.4285%2013.808%2013.1407%2014.0958%2012.7857%2014.0958H10.2143C9.85921%2014.0958%209.57139%2013.808%209.57139%2013.4529V10.8815C9.57139%2010.5264%209.85921%2010.2386%2010.2143%2010.2386ZM7.64282%2010.8815C7.64282%209.46133%208.79409%208.31006%2010.2143%208.31006H12.7857C14.2058%208.31006%2015.3571%209.46133%2015.3571%2010.8815V13.4529C15.3571%2014.8731%2014.2058%2016.0243%2012.7857%2016.0243H10.2143C8.79409%2016.0243%207.64282%2014.8731%207.64282%2013.4529V10.8815ZM19.2143%2010.2386H21.7857C22.1407%2010.2386%2022.4285%2010.5264%2022.4285%2010.8815V13.4529C22.4285%2013.808%2022.1407%2014.0958%2021.7857%2014.0958H19.2143C18.8592%2014.0958%2018.5714%2013.808%2018.5714%2013.4529V10.8815C18.5714%2010.5264%2018.8592%2010.2386%2019.2143%2010.2386ZM16.6428%2010.8815C16.6428%209.46133%2017.7941%208.31006%2019.2143%208.31006H21.7857C23.2058%208.31006%2024.3571%209.46133%2024.3571%2010.8815V13.4529C24.3571%2014.8731%2023.2058%2016.0243%2021.7857%2016.0243H19.2143C17.7941%2016.0243%2016.6428%2014.8731%2016.6428%2013.4529V10.8815ZM12.7857%2019.2386H10.2143C9.85921%2019.2386%209.57139%2019.5264%209.57139%2019.8815V22.4529C9.57139%2022.808%209.85921%2023.0958%2010.2143%2023.0958H12.7857C13.1407%2023.0958%2013.4285%2022.808%2013.4285%2022.4529V19.8815C13.4285%2019.5264%2013.1407%2019.2386%2012.7857%2019.2386ZM10.2143%2017.3101C8.79409%2017.3101%207.64282%2018.4613%207.64282%2019.8815V22.4529C7.64282%2023.8731%208.79409%2025.0243%2010.2143%2025.0243H12.7857C14.2058%2025.0243%2015.3571%2023.8731%2015.3571%2022.4529V19.8815C15.3571%2018.4613%2014.2058%2017.3101%2012.7857%2017.3101H10.2143ZM19.2143%2019.2386H21.7857C22.1407%2019.2386%2022.4285%2019.5264%2022.4285%2019.8815V22.4529C22.4285%2022.808%2022.1407%2023.0958%2021.7857%2023.0958H19.2143C18.8592%2023.0958%2018.5714%2022.808%2018.5714%2022.4529V19.8815C18.5714%2019.5264%2018.8592%2019.2386%2019.2143%2019.2386ZM16.6428%2019.8815C16.6428%2018.4613%2017.7941%2017.3101%2019.2143%2017.3101H21.7857C23.2058%2017.3101%2024.3571%2018.4613%2024.3571%2019.8815V22.4529C24.3571%2023.8731%2023.2058%2025.0243%2021.7857%2025.0243H19.2143C17.7941%2025.0243%2016.6428%2023.8731%2016.6428%2022.4529V19.8815Z'%20fill='white'/%3e%3c/g%3e%3c/svg%3e";
|
|
594
|
-
const paletteDatalensClassic20Icon = "data:image/svg+xml,%3csvg%20width='20'%20height='16'%20viewBox='0%200%2020%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23a)'%3e%3cpath%20fill='%234DA2F1'%20d='M0%200h4v4H0z'/%3e%3cpath%20fill='%230CA18C'%20d='M16%200h4v4h-4z'/%3e%3cpath%20fill='%231E69A9'%20d='M12%204h4v4h-4z'/%3e%3cpath%20fill='%23FFB46C'%20d='M8%204h4v4H8z'/%3e%3cpath%20fill='%23FF90A1'%20d='M16%204h4v4h-4z'/%3e%3cpath%20fill='%23BA74B3'%20d='M12%2012h4v4h-4z'/%3e%3cpath%20fill='%23BF2543'%20d='M4%204h4v4H4z'/%3e%3cpath%20fill='%238AD554'%20d='M0%208h4v4H0z'/%3e%3cpath%20fill='%23E8B0A4'%20d='M12%208h4v4h-4z'/%3e%3cpath%20fill='%2370C1AF'%20d='M4%200h4v4H4z'/%3e%3cpath%20fill='%23FFB9DD'%20d='M16%2012h4v4h-4z'/%3e%3cpath%20fill='%2384D1EE'%20d='M8%2012h4v4H8z'/%3e%3cpath%20fill='%23FF7E00'%20d='M0%204h4v4H0z'/%3e%3cpath%20fill='%23FFC636'%20d='M12%200h4v4h-4z'/%3e%3cpath%20fill='%2353A6C5'%20d='M16%208h4v4h-4z'/%3e%3cpath%20fill='%2354A520'%20d='M4%2012h4v4H4z'/%3e%3cpath%20fill='%23EE65A9'%20d='M0%2012h4v4H0z'/%3e%3cpath%20fill='%23DBA2D7'%20d='M4%208h4v4H4z'/%3e%3cpath%20fill='%23DB9101'%20d='M8%200h4v4H8z'/%3e%3cpath%20fill='%23FF3D64'%20d='M8%208h4v4H8z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='a'%3e%3crect%20width='20'%20height='16'%20rx='2'%20fill='%23fff'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e";
|
|
595
|
-
const paletteDatalensDefault20Icon = "data:image/svg+xml,%3csvg%20width='20'%20height='16'%20viewBox='0%200%2020%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23a)'%3e%3cpath%20fill='%233D97F2'%20d='M0%200h4v4H0z'/%3e%3cpath%20fill='%23FF6A59'%20d='M16%200h4v4h-4z'/%3e%3cpath%20fill='%237FD169'%20d='M12%204h4v4h-4z'/%3e%3cpath%20fill='%23FFB433'%20d='M8%204h4v4H8z'/%3e%3cpath%20fill='%23AB94D9'%20d='M16%204h4v4h-4z'/%3e%3cpath%20fill='%238CD5FF'%20d='M12%2012h4v4h-4z'/%3e%3cpath%20fill='%23FF8CB2'%20d='M4%204h4v4H4z'/%3e%3cpath%20fill='%2360A196'%20d='M0%208h4v4H0z'/%3e%3cpath%20fill='%234C73BF'%20d='M12%208h4v4h-4z'/%3e%3cpath%20fill='%23B8C9CC'%20d='M4%200h4v4H4z'/%3e%3cpath%20fill='%2352CCC2'%20d='M16%2012h4v4h-4z'/%3e%3cpath%20fill='%23C3E55C'%20d='M8%2012h4v4H8z'/%3e%3cpath%20fill='%23807D73'%20d='M0%204h4v4H0z'/%3e%3cpath%20fill='%23FF8C00'%20d='M12%200h4v4h-4z'/%3e%3cpath%20fill='%23FFDC73'%20d='M16%208h4v4h-4z'/%3e%3cpath%20fill='%23CC9966'%20d='M4%2012h4v4H4z'/%3e%3cpath%20fill='%23CC5252'%20d='M0%2012h4v4H0z'/%3e%3cpath%20fill='%23FFB28C'%20d='M4%208h4v4H4z'/%3e%3cpath%20fill='%239661FF'%20d='M8%200h4v4H8z'/%3e%3cpath%20fill='%23D4BFFF'%20d='M8%208h4v4H8z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='a'%3e%3crect%20width='20'%20height='16'%20rx='2'%20fill='%23fff'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e";
|
|
596
|
-
const paletteDatalensNeo20Icon = "data:image/svg+xml,%3csvg%20width='20'%20height='16'%20viewBox='0%200%2020%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0)'%3e%3cpath%20fill='%238AD554'%20d='M4%200h4v4H4z'/%3e%3cpath%20fill='%23FF90A1'%20d='M8%200h4v4H8z'/%3e%3cpath%20fill='%23BF2543'%20d='M8%204h4v4H8z'/%3e%3cpath%20fill='%231E69A9'%20d='M0%204h4v4H0z'/%3e%3cpath%20fill='%234DA2F1'%20d='M0%200h4v4H0z'/%3e%3cpath%20fill='%236B6B6B'%20d='M16%204h4v4h-4z'/%3e%3cpath%20fill='%23B9B0AC'%20d='M16%200h4v4h-4z'/%3e%3cpath%20fill='%23FFB46C'%20d='M12%200h4v4h-4z'/%3e%3cpath%20fill='%23DB9101'%20d='M12%204h4v4h-4z'/%3e%3cpath%20fill='%23FFC636'%20d='M16%208h-4v4h4z'/%3e%3cpath%20fill='%23DBA2D7'%20d='M12%208H8v4h4z'/%3e%3cpath%20fill='%23EEB184'%20d='M20%208h-4v4h4z'/%3e%3cpath%20fill='%2384D1EE'%20d='M4%208H0v4h4z'/%3e%3cpath%20fill='%2370C1AF'%20d='M8%208H4v4h4z'/%3e%3cpath%20fill='%2354A520'%20d='M4%204h4v4H4z'/%3e%3cpath%20fill='%230CA18C'%20d='M8%2012H4v4h4z'/%3e%3cpath%20fill='%23BA74B3'%20d='M12%2012H8v4h4z'/%3e%3cpath%20fill='%23FF7E00'%20d='M16%2012h-4v4h4z'/%3e%3cpath%20fill='%2358A9C8'%20d='M4%2012H0v4h4z'/%3e%3cpath%20fill='%23FF3D64'%20d='M20%2012h-4v4h4z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0'%3e%3crect%20width='20'%20height='16'%20rx='2'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e";
|
|
597
|
-
const paletteEmerald20Icon = "data:image/svg+xml,%3csvg%20width='20'%20height='16'%20viewBox='0%200%2020%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23a)'%3e%3cpath%20fill='%231C666E'%20d='M4%200v4H0V0z'/%3e%3cpath%20fill='%231E7276'%20d='M4%204v4H0V4z'/%3e%3cpath%20fill='%23207E7E'%20d='M4%208v4H0V8z'/%3e%3cpath%20fill='%23228782'%20d='M4%2012v4H0v-4z'/%3e%3cpath%20fill='%23248F84'%20d='M8%200v4H4V0z'/%3e%3cpath%20fill='%23269786'%20d='M8%204v4H4V4z'/%3e%3cpath%20fill='%23289F87'%20d='M8%208v4H4V8z'/%3e%3cpath%20fill='%232AA788'%20d='M8%2012v4H4v-4z'/%3e%3cpath%20fill='%232CAF88'%20d='M12%200v4H8V0z'/%3e%3cpath%20fill='%232EB887'%20d='M12%204v4H8V4z'/%3e%3cpath%20fill='%2330C086'%20d='M12%208v4H8V8z'/%3e%3cpath%20fill='%2337CD84'%20d='M12%2012v4H8v-4z'/%3e%3cpath%20fill='%2348D183'%20d='M16%200v4h-4V0z'/%3e%3cpath%20fill='%2358D583'%20d='M16%204v4h-4V4z'/%3e%3cpath%20fill='%2368D986'%20d='M16%208v4h-4V8z'/%3e%3cpath%20fill='%2379DD8B'%20d='M16%2012v4h-4v-4z'/%3e%3cpath%20fill='%2389E192'%20d='M20%200v4h-4V0z'/%3e%3cpath%20fill='%2399E69A'%20d='M20%204v4h-4V4z'/%3e%3cpath%20fill='%23AEEAAA'%20d='M20%208v4h-4V8z'/%3e%3cpath%20fill='%23C2EEBA'%20d='M20%2012v4h-4v-4z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='a'%3e%3crect%20width='20'%20height='16'%20rx='2'%20fill='%23fff'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e";
|
|
598
|
-
const paletteGolden20Icon = "data:image/svg+xml,%3csvg%20width='20'%20height='16'%20viewBox='0%200%2020%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23a)'%3e%3cpath%20fill='%23880132'%20d='M4%200v4H0V0z'/%3e%3cpath%20fill='%23FD7207'%20d='M16%200v4h-4V0z'/%3e%3cpath%20fill='%23ED4902'%20d='M12%208v4H8V8z'/%3e%3cpath%20fill='%23FDDE43'%20d='M20%208v4h-4V8z'/%3e%3cpath%20fill='%23C40802'%20d='M8%208v4H4V8z'/%3e%3cpath%20fill='%23E33702'%20d='M12%204v4H8V4z'/%3e%3cpath%20fill='%23FDBF2F'%20d='M20%200v4h-4V0z'/%3e%3cpath%20fill='%239C0125'%20d='M4%208v4H0V8z'/%3e%3cpath%20fill='%23FD9B1B'%20d='M16%208v4h-4V8z'/%3e%3cpath%20fill='%23FDD039'%20d='M20%204v4h-4V4z'/%3e%3cpath%20fill='%23B00213'%20d='M8%200v4H4V0z'/%3e%3cpath%20fill='%23BA0208'%20d='M8%204v4H4V4z'/%3e%3cpath%20fill='%23FD8711'%20d='M16%204v4h-4V4z'/%3e%3cpath%20fill='%23A6021D'%20d='M4%2012v4H0v-4z'/%3e%3cpath%20fill='%23FDAE25'%20d='M16%2012v4h-4v-4z'/%3e%3cpath%20fill='%23CF1702'%20d='M8%2012v4H4v-4z'/%3e%3cpath%20fill='%23F75C02'%20d='M12%2012v4H8v-4z'/%3e%3cpath%20fill='%23FDEC4D'%20d='M20%2012v4h-4v-4z'/%3e%3cpath%20fill='%23D92602'%20d='M12%200v4H8V0z'/%3e%3cpath%20fill='%2392012D'%20d='M4%204v4H0V4z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='a'%3e%3crect%20width='20'%20height='16'%20rx='2'%20fill='%23fff'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e";
|
|
599
|
-
const paletteNeutral20Icon = "data:image/svg+xml,%3csvg%20width='20'%20height='16'%20viewBox='0%200%2020%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23a)'%3e%3cpath%20fill='%23595959'%20d='M4%200v4H0V0z'/%3e%3cpath%20fill='%23B5B5B5'%20d='M16%200v4h-4V0z'/%3e%3cpath%20fill='%23A6A6A6'%20d='M12%208v4H8V8z'/%3e%3cpath%20fill='%23E3E3E3'%20d='M20%208v4h-4V8z'/%3e%3cpath%20fill='%23969696'%20d='M12%204V0H8v4z'/%3e%3cpath%20fill='%237F7F7F'%20d='M8%208V4H4v4z'/%3e%3cpath%20fill='%23D3D3D3'%20d='M20%200v4h-4V0z'/%3e%3cpath%20fill='%23686868'%20d='M4%208v4H0V8z'/%3e%3cpath%20fill='%23C4C4C4'%20d='M16%208v4h-4V8z'/%3e%3cpath%20fill='%23DBDBDB'%20d='M20%204v4h-4V4z'/%3e%3cpath%20fill='%23787878'%20d='M8%200v4H4V0z'/%3e%3cpath%20fill='%239E9E9E'%20d='M12%208V4H8v4z'/%3e%3cpath%20fill='%23BCBCBC'%20d='M16%204v4h-4V4z'/%3e%3cpath%20fill='%23707070'%20d='M4%2012v4H0v-4z'/%3e%3cpath%20fill='%23CCC'%20d='M16%2012v4h-4v-4z'/%3e%3cpath%20fill='%238F8F8F'%20d='M8%2016v-4H4v4z'/%3e%3cpath%20fill='%23ADADAD'%20d='M12%2012v4H8v-4z'/%3e%3cpath%20fill='%23EAEAEA'%20d='M20%2012v4h-4v-4z'/%3e%3cpath%20fill='%23878787'%20d='M8%2012V8H4v4z'/%3e%3cpath%20fill='%23616161'%20d='M4%204v4H0V4z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='a'%3e%3crect%20width='20'%20height='16'%20rx='2'%20fill='%23fff'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e";
|
|
600
|
-
const paletteOceanic20Icon = "data:image/svg+xml,%3csvg%20width='20'%20height='16'%20viewBox='0%200%2020%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23a)'%3e%3cpath%20fill='%23050189'%20d='M4%200v4H0V0z'/%3e%3cpath%20fill='%2344ADFE'%20d='M16%200v4h-4V0z'/%3e%3cpath%20fill='%23258AFD'%20d='M12%208v4H8V8z'/%3e%3cpath%20fill='%239FF2FE'%20d='M20%208v4h-4V8z'/%3e%3cpath%20fill='%230762FD'%20d='M12%204V0H8v4z'/%3e%3cpath%20fill='%230230D5'%20d='M8%208V4H4v4z'/%3e%3cpath%20fill='%2381E1FE'%20d='M20%200v4h-4V0z'/%3e%3cpath%20fill='%23010DA7'%20d='M4%208v4H0V8z'/%3e%3cpath%20fill='%2362CAFE'%20d='M16%208v4h-4V8z'/%3e%3cpath%20fill='%2390EAFE'%20d='M20%204v4h-4V4z'/%3e%3cpath%20fill='%230222C5'%20d='M8%200v4H4V0z'/%3e%3cpath%20fill='%231677FD'%20d='M12%208V4H8v4z'/%3e%3cpath%20fill='%2353BCFE'%20d='M16%204v4h-4V4z'/%3e%3cpath%20fill='%230117B6'%20d='M4%2012v4H0v-4z'/%3e%3cpath%20fill='%2371D6FE'%20d='M16%2012v4h-4v-4z'/%3e%3cpath%20fill='%23024FF3'%20d='M8%2016v-4H4v4z'/%3e%3cpath%20fill='%23359DFD'%20d='M12%2012v4H8v-4z'/%3e%3cpath%20fill='%23AEF8FE'%20d='M20%2012v4h-4v-4z'/%3e%3cpath%20fill='%23023EE4'%20d='M8%2012V8H4v4z'/%3e%3cpath%20fill='%23010498'%20d='M4%204v4H0V4z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='a'%3e%3crect%20width='20'%20height='16'%20rx='2'%20fill='%23fff'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e";
|
|
601
|
-
const paletteTrafficLight9Icon = "data:image/svg+xml,%3csvg%20width='20'%20height='16'%20viewBox='0%200%2020%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23a)'%3e%3cpath%20fill='%239C0125'%20d='M0%200h6.667v5.333H0z'/%3e%3cpath%20fill='%23F17A03'%20d='M0%205.333h6.667v5.333H0z'/%3e%3cpath%20fill='%23228782'%20d='M0%2010.667h6.667V16H0z'/%3e%3cpath%20fill='%2379DD8B'%20d='M13.333%2010.667H20V16h-6.667z'/%3e%3cpath%20fill='%23FDCE34'%20d='M13.333%205.333H20v5.333h-6.667z'/%3e%3cpath%20fill='%23ED4902'%20d='M13.333%200H20v5.333h-6.667z'/%3e%3cpath%20fill='%232EB887'%20d='M6.667%2010.667h6.667V16H6.667z'/%3e%3cpath%20fill='%23C40802'%20d='M6.667%200h6.667v5.333H6.667z'/%3e%3cpath%20fill='%23FDA816'%20d='M6.667%205.333h6.667v5.333H6.667z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='a'%3e%3crect%20width='20'%20height='16'%20rx='2'%20fill='%23fff'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e";
|
|
602
|
-
const visArea100p = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3e%3cg%20fill='none'%20fill-rule='nonzero'%20transform='translate(4.000000,%204.000000)'%3e%3cpath%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%20d='M0%2014.923l8.785%201.267H0v-1.267zm0-3.25V.809h16v2.1l-3.848%204.136-.741-.396a1.98%201.98%200%200%200-2.142.177l-3.1%202.377-1.02-.326a1.98%201.98%200%200%200-1.787.299L0%2011.674z'/%3e%3cpath%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'%20d='M0%2013.492v2.712l16-.014V4.992l-3.183%203.421a.793.793%200%200%201-.956.161l-1.01-.54a.792.792%200%200%200-.857.07L6.73%2010.61a.792.792%200%200%201-.725.126l-1.218-.39a.792.792%200%200%200-.714.12L0%2013.492z'/%3e%3c/g%3e%3c/svg%3e";
|
|
603
|
-
const iconVisArea = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='24px'%20height='24px'%20viewBox='0%200%2024%2024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3c!--%20Generator:%20Sketch%2051.3%20(57544)%20-%20http://www.bohemiancoding.com/sketch%20--%3e%3cdefs%3e%3c/defs%3e%3cg%20id='Page-1'%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3e%3cg%20id='Artboard-3'%20transform='translate(-32.000000,%20-168.000000)'%3e%3cg%20id='Files/List/ic-wiz'%20transform='translate(32.000000,%20168.000000)'%3e%3crect%20id='Rectangle-17'%20fill='%237A7A7A'%20opacity='0'%20x='0'%20y='0'%20width='24'%20height='24'%3e%3c/rect%3e%3cpath%20d='M2,19.1388167%20L2,18%20L6.77656178,11.4865067%20C7.10316291,11.0411415%207.72896526,10.9448642%208.17433044,11.2714653%20C8.22819825,11.3109684%208.27797234,11.3557696%208.32290685,11.4051975%20L9.12497321,12.2874705%20C9.49648014,12.6961281%2010.1289285,12.7262447%2010.5375861,12.3547378%20C10.6018084,12.2963539%2010.6581566,12.2298573%2010.7052099,12.1569246%20L14.262444,6.64321182%20C14.5618524,6.1791288%2015.1807845,6.04563364%2015.6448675,6.34504205%20C15.7299261,6.39991853%2015.8061596,6.46739153%2015.8709619,6.54515429%20L16.6904826,7.52857917%20C17.0440467,7.95285607%2017.6746114,8.01018013%2018.0988883,7.65661605%20C18.1585072,7.60693362%2018.2121401,7.55047992%2018.2587039,7.48839477%20L22,2.5%20L22,8.31168761%20L17.19057,13.420371%20L16.2636906,12.9309786%20C15.4045739,12.477365%2014.3604597,12.5625471%2013.5862286,13.1494142%20L9.71218418,16.0859399%20L8.43609329,15.6826952%20C7.67543525,15.4423272%206.84573545,15.5794037%206.20281167,16.0516605%20L2,19.1388167%20Z'%20id='Combined-Shape'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%20fill-rule='nonzero'%3e%3c/path%3e%3cpath%20d='M2,21%20L22,21%20L22,10.5%20L18.0218239,14.7257071%20C17.7135264,15.0531875%2017.2245321,15.134553%2016.826801,14.924551%20L15.5633221,14.2574341%20C15.2196754,14.0759886%2014.8020298,14.1100614%2014.4923373,14.3448083%20L10.4121953,17.437556%20C10.1536657,17.6335214%209.81613918,17.6919%209.50680889,17.5941516%20L7.98412244,17.1129827%20C7.67985922,17.0168355%207.3479793,17.0716661%207.09080979,17.2605688%20L2,21%20Z'%20id='Path-4'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'%20fill-rule='nonzero'%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e";
|
|
604
|
-
const visBar100p = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3e%3cg%20id='Artboard-3'%20transform='translate(12.000000,%2012.000000),%20rotate(90),%20translate(-12.000000,%20-12.000000)'%3e%3cg%20fill='none'%20fill-rule='evenodd'%20transform='translate(-4%20-5)'%3e%3crect%20width='4'%20height='5.5'%20x='8'%20y='18.5'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%20rx='1'/%3e%3crect%20width='4'%20height='7.5'%20x='8'%20y='10'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'%20rx='1'/%3e%3crect%20width='4'%20height='9.5'%20x='14'%20y='14.5'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%20rx='1'/%3e%3crect%20width='4'%20height='3.5'%20x='14'%20y='10'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'%20rx='1'/%3e%3crect%20width='4'%20height='14'%20x='20'%20y='10'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%20rx='1'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e";
|
|
605
|
-
const visBar = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='24px'%20height='24px'%20viewBox='0%200%2024%2024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3c!--%20Generator:%20Sketch%2051.3%20(57544)%20-%20http://www.bohemiancoding.com/sketch%20--%3e%3cdefs%3e%3c/defs%3e%3cg%20id='Page-1'%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3e%3cg%20id='Artboard-3'%20transform='translate(12.000000,%2012.000000),%20rotate(90),%20translate(-12.000000,%20-12.000000)'%3e%3crect%20id='Rectangle-17'%20fill='%23FFFFFF'%20opacity='0'%20x='0'%20y='0'%20width='24'%20height='24'%3e%3c/rect%3e%3crect%20id='Rectangle-17'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%20x='4'%20y='13.5'%20width='4'%20height='5.5'%20rx='1'%3e%3c/rect%3e%3crect%20id='Rectangle-17'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%20x='10'%20y='9.5'%20width='4'%20height='9.5'%20rx='1'%3e%3c/rect%3e%3crect%20id='Rectangle-17'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'%20x='16'%20y='5'%20width='4'%20height='14'%20rx='1'%3e%3c/rect%3e%3c/g%3e%3c/g%3e%3c/svg%3e";
|
|
606
|
-
const visColumn100p = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3e%3cg%20fill='none'%20fill-rule='evenodd'%20transform='translate(-4%20-5)'%3e%3crect%20width='4'%20height='5.5'%20x='8'%20y='18.5'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%20rx='1'/%3e%3crect%20width='4'%20height='7.5'%20x='8'%20y='10'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'%20rx='1'/%3e%3crect%20width='4'%20height='9.5'%20x='14'%20y='14.5'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%20rx='1'/%3e%3crect%20width='4'%20height='3.5'%20x='14'%20y='10'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'%20rx='1'/%3e%3crect%20width='4'%20height='14'%20x='20'%20y='10'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%20rx='1'/%3e%3c/g%3e%3c/svg%3e";
|
|
607
|
-
const iconVisColumn = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='24px'%20height='24px'%20viewBox='0%200%2024%2024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3c!--%20Generator:%20Sketch%2051.3%20(57544)%20-%20http://www.bohemiancoding.com/sketch%20--%3e%3cdefs%3e%3c/defs%3e%3cg%20id='Page-1'%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3e%3cg%20id='Artboard-3'%20transform='translate(-32.000000,%20-120.000000)'%3e%3cg%20id='Files/List/ic-wiz'%20transform='translate(32.000000,%20120.000000)'%3e%3crect%20id='Rectangle-17'%20fill='%23FFFFFF'%20opacity='0'%20x='0'%20y='0'%20width='24'%20height='24'%3e%3c/rect%3e%3crect%20id='Rectangle-17'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%20x='4'%20y='13.5'%20width='4'%20height='5.5'%20rx='1'%3e%3c/rect%3e%3crect%20id='Rectangle-17'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%20x='10'%20y='9.5'%20width='4'%20height='9.5'%20rx='1'%3e%3c/rect%3e%3crect%20id='Rectangle-17'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'%20x='16'%20y='5'%20width='4'%20height='14'%20rx='1'%3e%3c/rect%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e";
|
|
608
|
-
const visCombined = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8%204V6.04928C7.18374%205.99481%206.3909%206.34343%205.87931%206.9848L4%209.34085V4C4%203.44772%204.44772%203%205%203H7C7.55228%203%208%203.44772%208%204ZM4.17265%2013.9354C4.11938%2014.0021%204.06156%2014.0632%204%2014.1184V18.775L6.62035%2017.5917C6.93465%2017.4498%207.28689%2017.4091%207.62634%2017.4755L8%2017.5486V9.1371L4.17265%2013.9354ZM8%2018.7724L7.38581%2018.6522C7.30094%2018.6356%207.21288%2018.6458%207.13431%2018.6813L4.00442%2020.0947C4.05211%2020.6025%204.47964%2021%205%2021H7C7.55228%2021%208%2020.5523%208%2020V18.7724ZM10%2018.961C10.157%2018.9124%2010.307%2018.8405%2010.4444%2018.7463L14%2016.3112V20C14%2020.5523%2013.5523%2021%2013%2021H11C10.4477%2021%2010%2020.5523%2010%2020V18.961ZM14%2014.8464L10%2017.5859V12C10%2011.4477%2010.4477%2011%2011%2011H13C13.5523%2011%2014%2011.4477%2014%2012V14.8464ZM16%2016.0982V20C16%2020.5523%2016.4477%2021%2017%2021H19C19.5523%2021%2020%2020.5523%2020%2020V14.3048L18.3104%2015.958C17.8478%2016.4106%2017.1541%2016.5499%2016.5467%2016.3122L16%2016.0982ZM20%2012.6078L17.4431%2015.1095C17.3275%2015.2226%2017.154%2015.2574%2017.0022%2015.198L16%2014.8058V9C16%208.44772%2016.4477%208%2017%208H19C19.5523%208%2020%208.44772%2020%209V12.6078Z'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1.99969%2021.0001H22.0001V12.3481L18.3105%2015.9581C17.8479%2016.4107%2017.1542%2016.55%2016.5468%2016.3123L15.1304%2015.758C15.0024%2015.7079%2014.8571%2015.7243%2014.7442%2015.8017L10.4446%2018.7464C10.0787%2018.997%209.62399%2019.0903%209.18607%2019.0046L7.38592%2018.6523C7.30106%2018.6357%207.213%2018.6459%207.13442%2018.6814L1.99969%2021.0001Z'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'/%3e%3cpath%20d='M20%203L13.2687%207.78603C13.0745%207.92412%2012.8373%207.98831%2012.6%207.96705L7.92274%207.54799C7.58829%207.51803%207.26113%207.65792%207.05174%207.92043L3%2013'%20stroke='var(--dl-viz-icon-secondary-color,%20currentColor)'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e";
|
|
609
|
-
const visDonut = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M16.0963%2017.0458C14.9784%2017.9543%2013.5528%2018.4988%2012%2018.4988C8.41015%2018.4988%205.5%2015.5886%205.5%2011.9988C5.5%208.74899%207.88491%206.05623%2011%205.57523V2.55078C6.22334%203.05048%202.5%207.08981%202.5%2011.9988C2.5%2017.2455%206.75329%2021.4988%2012%2021.4988C14.5066%2021.4988%2016.7864%2020.528%2018.484%2018.942L16.0963%2017.0458Z'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.5%205.67337C16.3667%206.35053%2018.5%208.92585%2018.5%2011.9994C18.5%2013.1069%2018.223%2014.1497%2017.7346%2015.0623L20.1104%2016.9489C20.9919%2015.5075%2021.5%2013.8128%2021.5%2011.9994C21.5%207.26313%2018.034%203.33636%2013.5%202.61719V5.67337Z'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'/%3e%3c/svg%3e";
|
|
610
|
-
const visFlatTable = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='24px'%20height='24px'%20viewBox='0%200%2024%2024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3c!--%20Generator:%20Sketch%2051.3%20(57544)%20-%20http://www.bohemiancoding.com/sketch%20--%3e%3cdefs%3e%3c/defs%3e%3cg%20id='Page-1'%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3e%3cg%20id='Artboard-3'%20transform='translate(-80.000000,%20-72.000000)'%3e%3cg%20id='Files/List/ic-wiz'%20transform='translate(80.000000,%2072.000000)'%3e%3crect%20id='Rectangle-17'%20fill='%23FFFFFF'%20opacity='0'%20x='0'%20y='0'%20width='24'%20height='24'%3e%3c/rect%3e%3cpath%20d='M2.5,5%20L6.5,5%20C6.77614237,5%207,5.22385763%207,5.5%20L7,6.5%20C7,6.77614237%206.77614237,7%206.5,7%20L2.5,7%20C2.22385763,7%202,6.77614237%202,6.5%20L2,5.5%20C2,5.22385763%202.22385763,5%202.5,5%20Z%20M9.5,5%20L13.5,5%20C13.7761424,5%2014,5.22385763%2014,5.5%20L14,6.5%20C14,6.77614237%2013.7761424,7%2013.5,7%20L9.5,7%20C9.22385763,7%209,6.77614237%209,6.5%20L9,5.5%20C9,5.22385763%209.22385763,5%209.5,5%20Z%20M16.5,5%20L20.5,5%20C20.7761424,5%2021,5.22385763%2021,5.5%20L21,6.5%20C21,6.77614237%2020.7761424,7%2020.5,7%20L16.5,7%20C16.2238576,7%2016,6.77614237%2016,6.5%20L16,5.5%20C16,5.22385763%2016.2238576,5%2016.5,5%20Z'%20id='Combined-Shape'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'%20fill-rule='nonzero'%3e%3c/path%3e%3cpath%20d='M2.5,9%20L6.5,9%20C6.77614237,9%207,9.22385763%207,9.5%20L7,12.5%20C7,12.7761424%206.77614237,13%206.5,13%20L2.5,13%20C2.22385763,13%202,12.7761424%202,12.5%20L2,9.5%20C2,9.22385763%202.22385763,9%202.5,9%20Z%20M9.5,9%20L13.5,9%20C13.7761424,9%2014,9.22385763%2014,9.5%20L14,12.5%20C14,12.7761424%2013.7761424,13%2013.5,13%20L9.5,13%20C9.22385763,13%209,12.7761424%209,12.5%20L9,9.5%20C9,9.22385763%209.22385763,9%209.5,9%20Z%20M16.5,9%20L20.5,9%20C20.7761424,9%2021,9.22385763%2021,9.5%20L21,12.5%20C21,12.7761424%2020.7761424,13%2020.5,13%20L16.5,13%20C16.2238576,13%2016,12.7761424%2016,12.5%20L16,9.5%20C16,9.22385763%2016.2238576,9%2016.5,9%20Z'%20id='Combined-Shape'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%20fill-rule='nonzero'%3e%3c/path%3e%3cpath%20d='M2.5,15%20L6.5,15%20C6.77614237,15%207,15.2238576%207,15.5%20L7,18.5%20C7,18.7761424%206.77614237,19%206.5,19%20L2.5,19%20C2.22385763,19%202,18.7761424%202,18.5%20L2,15.5%20C2,15.2238576%202.22385763,15%202.5,15%20Z%20M9.5,15%20L13.5,15%20C13.7761424,15%2014,15.2238576%2014,15.5%20L14,18.5%20C14,18.7761424%2013.7761424,19%2013.5,19%20L9.5,19%20C9.22385763,19%209,18.7761424%209,18.5%20L9,15.5%20C9,15.2238576%209.22385763,15%209.5,15%20Z%20M16.5,15%20L20.5,15%20C20.7761424,15%2021,15.2238576%2021,15.5%20L21,18.5%20C21,18.7761424%2020.7761424,19%2020.5,19%20L16.5,19%20C16.2238576,19%2016,18.7761424%2016,18.5%20L16,15.5%20C16,15.2238576%2016.2238576,15%2016.5,15%20Z'%20id='Combined-Shape'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%20fill-rule='nonzero'%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e";
|
|
611
|
-
const visGeolayers = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M3.75%204.25a.5.5%200%200%201%20.5-.5h15.5a.5.5%200%200%201%20.5.5v15.5a.5.5%200%200%201-.5.5H4.25a.5.5%200%200%201-.5-.5V4.25z'%20stroke='var(--dl-viz-icon-main-color,%20currentColor)'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.684%2020.75h1.348l1.648-4.08.002.001.468-1.159.468-1.158%201.157.468%207.975%203.221v-1.348l-7.505-3.033-1.159-.468%201.405-3.477.469-1.159%202.144-5.308h-1.349l-1.487%203.681L12.8%208.09%203.277%204.242c-.018.083-.027.17-.027.258v1.08l9.081%203.67-1.404%203.476h-.001l-.469%201.159-.468%201.158-1.157-.467L3.25%2012.32v1.349l6.271%202.533-1.837%204.548z'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'/%3e%3c/svg%3e";
|
|
612
|
-
const visHeatmap = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M3.75%204.25C3.75%203.97386%203.97386%203.75%204.25%203.75H19.75C20.0261%203.75%2020.25%203.97386%2020.25%204.25V19.75C20.25%2020.0261%2020.0261%2020.25%2019.75%2020.25H4.25C3.97386%2020.25%203.75%2020.0261%203.75%2019.75V4.25Z'%20stroke='var(--dl-viz-icon-main-color,%20currentColor)'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.68388%2020.75H9.03205L10.6802%2016.6707L10.6817%2016.6713L11.15%2015.5123L11.618%2014.3539L12.7755%2014.8215L20.75%2018.0434V16.6945L13.2453%2013.6624L12.0865%2013.1943L13.4913%209.71741L13.9595%208.55843L13.9593%208.55833L16.104%203.25H14.7551L13.2679%206.9311L12.7997%208.08984L3.2766%204.24225C3.25917%204.32543%203.25%204.41164%203.25%204.5V5.57995L12.3313%209.24905L12.3319%209.24929L10.9273%2012.7259L10.927%2012.7265L10.9258%2012.726L10.4575%2013.885L9.98948%2015.0434L8.83201%2014.5758L3.25%2012.3205V13.6687L9.52122%2016.2024L7.68388%2020.75Z'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'/%3e%3ccircle%20cx='13.25'%20cy='12'%20r='2.25'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'%20stroke='var(--dl-viz-icon-secondary-color,%20currentColor)'%20stroke-width='3'/%3e%3ccircle%20cx='13.25'%20cy='12'%20r='5.75'%20stroke='var(--dl-viz-icon-secondary-color,%20currentColor)'/%3e%3c/svg%3e";
|
|
613
|
-
const iconVisLines = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='24px'%20height='24px'%20viewBox='0%200%2024%2024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3c!--%20Generator:%20Sketch%2051.3%20(57544)%20-%20http://www.bohemiancoding.com/sketch%20--%3e%3cdefs%3e%3c/defs%3e%3cg%20id='Page-1'%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3e%3cg%20id='Artboard-3'%20transform='translate(-32.000000,%20-72.000000)'%3e%3cg%20id='Group-115'%20transform='translate(32.000000,%2072.000000)'%3e%3crect%20id='Rectangle-17'%20fill='%237A7A7A'%20opacity='0'%20x='0'%20y='0'%20width='24'%20height='24'%3e%3c/rect%3e%3cpath%20d='M3.83817196,10.7142092%20L2.02061818,11.9132898%20L0.951053788,11.2108577%20C0.48942234,10.9076831%200.360967702,10.2876852%200.664142323,9.82605379%20C0.967316945,9.36442234%201.58731476,9.2359677%202.04894621,9.53914232%20L3.83817196,10.7142092%20Z%20M7.47825145,13.104817%20L11.7873564,15.9348046%20C11.9433377,16.0372447%2012.1433852,16.0442967%2012.3061927,15.9530943%20L22.0112736,10.5164518%20C22.4931074,10.2465356%2023.102521,10.4183288%2023.3724371,10.9001625%20C23.6423532,11.3819963%2023.4705601,11.9914099%2022.9887264,12.261326%20L13.2836454,17.6979686%20C12.469608,18.1539803%2011.4693706,18.1187205%2010.689464,17.6065199%20L5.66069768,14.3038976%20L7.47825145,13.104817%20Z'%20id='Combined-Shape'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'%20fill-rule='nonzero'%3e%3c/path%3e%3cpath%20d='M2.05068069,15.4874938%20C1.58967978,15.7916263%200.969416557,15.6644594%200.665284012,15.2034585%20C0.361151466,14.7424576%200.488318402,14.1221943%200.949319313,13.8180618%20L7.43115491,9.54185081%20C7.98415086,9.17702709%208.65934301,9.04661743%209.30842315,9.17926674%20L14.8790075,10.3176996%20C15.0491218,10.3524651%2015.2250929,10.2964881%2015.3438576,10.1698293%20L21.7705263,3.31599116%20C22.1482939,2.91311395%2022.7811316,2.89275863%2023.1840088,3.27052628%20C23.5868861,3.64829394%2023.6072414,4.28113163%2023.2294737,4.68400884%20L16.8028051,11.5378469%20C16.2089815,12.1711409%2015.3291257,12.451026%2014.4785542,12.2771989%20L8.90796993,11.138766%20C8.7781539,11.1122361%208.64311547,11.138318%208.53251628,11.2112828%20L2.05068069,15.4874938%20Z'%20id='Path-35'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%20fill-rule='nonzero'%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e";
|
|
614
|
-
const visMetric = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2020%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M3%2017L4.37223%2016.0852C5.39928%2015.4005%206.68492%2015.2283%207.85594%2015.6186L9.26491%2016.0883C10.8983%2016.6328%2012.6968%2016.0709%2013.7298%2014.6936L15%2013'%20stroke='var(--dl-viz-icon-main-color,%20currentColor)'/%3e%3cpath%20d='M3.72169%2011H2.33769V6.816L1.20169%207.888V6.696L2.53769%205.44H3.72169V11ZM5.29613%2011.064C5.09879%2011.064%204.93346%2010.9973%204.80013%2010.864C4.66679%2010.7307%204.60013%2010.5653%204.60013%2010.368C4.60013%2010.1653%204.66679%209.99733%204.80013%209.864C4.93346%209.73067%205.09879%209.664%205.29613%209.664C5.48813%209.664%205.65079%209.73067%205.78413%209.864C5.92279%209.99733%205.99213%2010.1653%205.99213%2010.368C5.99213%2010.5653%205.92279%2010.7307%205.78413%2010.864C5.65079%2010.9973%205.48813%2011.064%205.29613%2011.064ZM10.3614%2011H6.52944V10.184C6.9401%209.83733%207.29477%209.53067%207.59344%209.264C7.8921%208.99733%208.13744%208.752%208.32944%208.528C8.52677%208.29867%208.67077%208.08%208.76144%207.872C8.85744%207.664%208.90544%207.448%208.90544%207.224C8.90544%206.91467%208.82277%206.67733%208.65744%206.512C8.4921%206.34667%208.24677%206.264%207.92144%206.264C7.76677%206.264%207.62277%206.28267%207.48944%206.32C7.3561%206.35733%207.2361%206.40533%207.12944%206.464C7.02277%206.51733%206.92677%206.57867%206.84144%206.648C6.76144%206.712%206.69477%206.77067%206.64144%206.824V5.896C6.6841%205.848%206.7481%205.79467%206.83344%205.736C6.9241%205.67733%207.03877%205.62133%207.17744%205.568C7.3161%205.50933%207.47877%205.46133%207.66544%205.424C7.85744%205.38667%208.07877%205.368%208.32944%205.368C8.65477%205.368%208.9401%205.41067%209.18544%205.496C9.4361%205.576%209.6441%205.69333%209.80944%205.848C9.9801%205.99733%2010.1081%206.17867%2010.1934%206.392C10.2788%206.6%2010.3214%206.83467%2010.3214%207.096C10.3214%207.4%2010.2681%207.68533%2010.1614%207.952C10.0548%208.21333%209.90277%208.46667%209.70544%208.712C9.51344%208.952%209.2761%209.18933%208.99344%209.424C8.7161%209.65333%208.4041%209.89067%208.05744%2010.136H10.3614V11ZM17.2348%206.992L15.9468%2010.328H14.9468L13.6668%206.912V11H12.6348V5.44H14.3228L15.6348%208.824L16.9227%205.44H18.6588V11H17.2348V6.992Z'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'/%3e%3c/svg%3e";
|
|
615
|
-
const visPie = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='24px'%20height='24px'%20viewBox='0%200%2024%2024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3c!--%20Generator:%20Sketch%2051.3%20(57544)%20-%20http://www.bohemiancoding.com/sketch%20--%3e%3cdefs%3e%3c/defs%3e%3cg%20id='Page-1'%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3e%3cg%20id='Artboard-3'%20transform='translate(-80.000000,%20-168.000000)'%3e%3cg%20id='Files/List/ic-wiz'%20transform='translate(80.000000,%20168.000000)'%3e%3crect%20id='Rectangle-17'%20fill='%23BDBDBD'%20opacity='0'%20x='0'%20y='0'%20width='24'%20height='24'%3e%3c/rect%3e%3cg%20id='Group-33'%20transform='translate(3.000000,%200.000000)'%3e%3cpath%20d='M8,3.05492878%20L8,13.8685171%20L16.9983536,7.86961468%20C17.6384493,9.1066279%2018,10.5110916%2018,12%20C18,16.9705627%2013.9705627,21%209,21%20C4.02943725,21%200,16.9705627%200,12%20C0,7.36744635%203.50004954,3.55237307%208,3.05492878%20Z'%20id='Combined-Shape'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%3e%3c/path%3e%3cpath%20d='M10,10.1317178%20L16.4086363,5.86026167%20L18.0717771,4.6406251%20C16.0316178,2.28467926%2013.1516271,0.798657301%2010,0.537752853%20L10,10.1317178%20Z'%20id='Path'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'%20fill-rule='nonzero'%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e";
|
|
616
|
-
const visPivot = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20width='24px'%20height='24px'%20viewBox='0%200%2024%2024'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3c/defs%3e%3cg%20id='Page-1'%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3e%3cg%20id='Artboard-3'%20transform='translate(-80.000000,%20-120.000000)'%3e%3cg%20id='Files/List/ic-wiz'%20transform='translate(80.000000,%20120.000000)'%3e%3crect%20id='Rectangle-17'%20fill='%23FFFFFF'%20opacity='0'%20x='0'%20y='0'%20width='24'%20height='24'%3e%3c/rect%3e%3cpath%20d='M9.5,5%20L13.5,5%20C13.7761424,5%2014,5.22385763%2014,5.5%20L14,6.5%20C14,6.77614237%2013.7761424,7%2013.5,7%20L9.5,7%20C9.22385763,7%209,6.77614237%209,6.5%20L9,5.5%20C9,5.22385763%209.22385763,5%209.5,5%20Z%20M2.5,5%20L6.5,5%20C6.77614237,5%207,5.22385763%207,5.5%20L7,6.5%20C7,6.77614237%206.77614237,7%206.5,7%20L2.5,7%20C2.22385763,7%202,6.77614237%202,6.5%20L2,5.5%20C2,5.22385763%202.22385763,5%202.5,5%20Z%20M16.5,5%20L20.5,5%20C20.7761424,5%2021,5.22385763%2021,5.5%20L21,6.5%20C21,6.77614237%2020.7761424,7%2020.5,7%20L16.5,7%20C16.2238576,7%2016,6.77614237%2016,6.5%20L16,5.5%20C16,5.22385763%2016.2238576,5%2016.5,5%20Z'%20id='Combined-Shape'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'%20fill-rule='nonzero'%3e%3c/path%3e%3cpath%20d='M9.5,9%20L13.5,9%20C13.7761424,9%2014,9.22385763%2014,9.5%20L14,12.5%20C14,12.7761424%2013.7761424,13%2013.5,13%20L9.5,13%20C9.22385763,13%209,12.7761424%209,12.5%20L9,9.5%20C9,9.22385763%209.22385763,9%209.5,9%20Z%20M16.5,9%20L20.5,9%20C20.7761424,9%2021,9.22385763%2021,9.5%20L21,12.5%20C21,12.7761424%2020.7761424,13%2020.5,13%20L16.5,13%20C16.2238576,13%2016,12.7761424%2016,12.5%20L16,9.5%20C16,9.22385763%2016.2238576,9%2016.5,9%20Z%20M9.5,15%20L13.5,15%20C13.7761424,15%2014,15.2238576%2014,15.5%20L14,18.5%20C14,18.7761424%2013.7761424,19%2013.5,19%20L9.5,19%20C9.22385763,19%209,18.7761424%209,18.5%20L9,15.5%20C9,15.2238576%209.22385763,15%209.5,15%20Z%20M16.5,15%20L20.5,15%20C20.7761424,15%2021,15.2238576%2021,15.5%20L21,18.5%20C21,18.7761424%2020.7761424,19%2020.5,19%20L16.5,19%20C16.2238576,19%2016,18.7761424%2016,18.5%20L16,15.5%20C16,15.2238576%2016.2238576,15%2016.5,15%20Z'%20id='Combined-Shape'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'%20fill-rule='nonzero'%3e%3c/path%3e%3cpath%20d='M2.5,9%20L6.5,9%20C6.77614237,9%207,9.22385763%207,9.5%20L7,12.5%20C7,12.7761424%206.77614237,13%206.5,13%20L2.5,13%20C2.22385763,13%202,12.7761424%202,12.5%20L2,9.5%20C2,9.22385763%202.22385763,9%202.5,9%20Z%20M2.5,15%20L6.5,15%20C6.77614237,15%207,15.2238576%207,15.5%20L7,18.5%20C7,18.7761424%206.77614237,19%206.5,19%20L2.5,19%20C2.22385763,19%202,18.7761424%202,18.5%20L2,15.5%20C2,15.2238576%202.22385763,15%202.5,15%20Z'%20id='Combined-Shape'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'%20fill-rule='nonzero'%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e";
|
|
617
|
-
const visScatter = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='7'%20cy='7'%20r='3'%20stroke='var(--dl-viz-icon-main-color,%20currentColor)'%20stroke-width='2'/%3e%3ccircle%20cx='17'%20cy='17'%20r='3'%20stroke='var(--dl-viz-icon-main-color,%20currentColor)'%20stroke-width='2'/%3e%3ccircle%20cx='7'%20cy='17'%20r='3'%20stroke='var(--dl-viz-icon-main-color,%20currentColor)'%20stroke-width='2'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17%204C16.4477%204%2016%204.44772%2016%205V6H15C14.4477%206%2014%206.44772%2014%207C14%207.55228%2014.4477%208%2015%208H16V9C16%209.55228%2016.4477%2010%2017%2010C17.5523%2010%2018%209.55228%2018%209V8H19C19.5523%208%2020%207.55228%2020%207C20%206.44772%2019.5523%206%2019%206H18V5C18%204.44772%2017.5523%204%2017%204Z'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'/%3e%3c/svg%3e";
|
|
618
|
-
const visTreemap = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M13.1429%204H4V14.2857H13.1429V4Z'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'/%3e%3cpath%20d='M20%204H14.2857V14.2857H20V4Z'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'/%3e%3cpath%20d='M4%2015.4286H9.71429V20H4V15.4286Z'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'/%3e%3cpath%20d='M10.8571%2015.4286H16.5714V20H10.8571V15.4286Z'%20fill='var(--dl-viz-icon-main-color,%20currentColor)'/%3e%3cpath%20d='M17.7143%2015.4286H20V20H17.7143V15.4286Z'%20fill='var(--dl-viz-icon-secondary-color,%20currentColor)'/%3e%3c/svg%3e";
|
|
619
|
-
const defaultIcons = {
|
|
620
|
-
visCombined,
|
|
621
|
-
visDonut,
|
|
622
|
-
visFlatTable,
|
|
623
|
-
visGeolayers,
|
|
624
|
-
visArea100p,
|
|
625
|
-
visArea: iconVisArea,
|
|
626
|
-
visBar100p,
|
|
627
|
-
visBar,
|
|
628
|
-
visColumn100p,
|
|
629
|
-
visColumn: iconVisColumn,
|
|
630
|
-
visLines: iconVisLines,
|
|
631
|
-
visScatter,
|
|
632
|
-
visMetric,
|
|
633
|
-
visPie,
|
|
634
|
-
visPivot,
|
|
635
|
-
visTreemap,
|
|
636
|
-
visHeatmap,
|
|
637
|
-
collectionColored,
|
|
638
|
-
collectionColoredDark,
|
|
639
|
-
collectionColoredBig,
|
|
640
|
-
collectionColoredBigDark,
|
|
641
|
-
[PALETTES.default20.id]: paletteDatalensDefault20Icon,
|
|
642
|
-
[PALETTES.classic.id]: paletteDatalensClassic20Icon,
|
|
643
|
-
[PALETTES.emerald.id]: paletteEmerald20Icon,
|
|
644
|
-
[PALETTES.golden.id]: paletteGolden20Icon,
|
|
645
|
-
[PALETTES.neutral.id]: paletteNeutral20Icon,
|
|
646
|
-
[PALETTES.oceanic.id]: paletteOceanic20Icon,
|
|
647
|
-
[PALETTES.trafficLight.id]: paletteTrafficLight9Icon,
|
|
648
|
-
[PALETTES.datalens.id]: paletteDatalensNeo20Icon
|
|
649
|
-
};
|
|
650
|
-
const config = {
|
|
651
|
-
icons: defaultIcons
|
|
652
|
-
};
|
|
653
|
-
const iconsConfig = config.icons;
|
|
654
|
-
const getIconDataById = (id) => {
|
|
655
|
-
return iconsConfig[id];
|
|
656
|
-
};
|
|
657
|
-
const getDefaultColorPalette = ({ colorPalettes }) => {
|
|
658
|
-
const tenantDefaultColorPaletteId = getTenantDefaultColorPaletteId();
|
|
659
|
-
const customPalette = colorPalettes?.find(
|
|
660
|
-
(p) => p.colorPaletteId === tenantDefaultColorPaletteId
|
|
661
|
-
);
|
|
662
|
-
if (customPalette) {
|
|
663
|
-
return customPalette;
|
|
664
|
-
}
|
|
665
|
-
const systemPalettes = getAvailableClientPalettesMap();
|
|
666
|
-
const defaultColorPaletteId = getDefaultColorPaletteId();
|
|
667
|
-
const systemPalette = systemPalettes[tenantDefaultColorPaletteId] ?? systemPalettes[defaultColorPaletteId];
|
|
668
|
-
return systemPalette;
|
|
669
|
-
};
|
|
670
|
-
function getPaletteColors(paletteName, clientPalettes) {
|
|
671
|
-
if (paletteName) {
|
|
672
|
-
const clientPalette = clientPalettes?.find((item) => item.colorPaletteId === paletteName);
|
|
673
|
-
if (clientPalette) {
|
|
674
|
-
return clientPalette.colors;
|
|
675
|
-
}
|
|
676
|
-
const availablePalettesMap = getAvailableClientPalettesMap();
|
|
677
|
-
if (availablePalettesMap[paletteName]) {
|
|
678
|
-
return availablePalettesMap[paletteName].scheme;
|
|
679
|
-
}
|
|
680
|
-
}
|
|
681
|
-
const defaultColorPalette = getDefaultColorPalette({ colorPalettes: clientPalettes });
|
|
682
|
-
return "colors" in defaultColorPalette ? defaultColorPalette.colors : defaultColorPalette.scheme;
|
|
683
|
-
}
|
|
684
|
-
const getFilteredObject = (obj, keys) => {
|
|
685
|
-
const result = cloneDeep(obj);
|
|
686
|
-
keys.forEach((key) => {
|
|
687
|
-
unset(result, key);
|
|
688
|
-
});
|
|
689
|
-
return result;
|
|
690
|
-
};
|
|
691
|
-
const getSelectedValueForSelect = (value, valueList) => {
|
|
692
|
-
const map = value.reduce(
|
|
693
|
-
(acc, s) => {
|
|
694
|
-
acc[s] = true;
|
|
695
|
-
return acc;
|
|
696
|
-
},
|
|
697
|
-
{}
|
|
698
|
-
);
|
|
699
|
-
return valueList.filter((v) => map[v]);
|
|
700
|
-
};
|
|
701
|
-
const groupEntitiesByScope = (relations) => {
|
|
702
|
-
const relationsByScope = {};
|
|
703
|
-
relations.forEach((relation) => {
|
|
704
|
-
if (!relationsByScope[relation.scope]) {
|
|
705
|
-
relationsByScope[relation.scope] = [];
|
|
706
|
-
}
|
|
707
|
-
relationsByScope[relation.scope].push(relation);
|
|
708
|
-
});
|
|
709
|
-
return relationsByScope;
|
|
710
|
-
};
|
|
711
|
-
const matchDatasetFieldFilter = (filter, dlDebugMode, { title, description, guid }) => {
|
|
712
|
-
const filterValue = filter.toLowerCase();
|
|
713
|
-
return Boolean(
|
|
714
|
-
title.toLowerCase().includes(filterValue) || description?.toLowerCase().includes(filterValue) || dlDebugMode && guid?.includes(filterValue)
|
|
715
|
-
);
|
|
716
|
-
};
|
|
717
|
-
const getDatasetLabelValue = (key) => {
|
|
718
|
-
return i18n$4("dataset.dataset-editor.modify", `value_${key}`);
|
|
719
|
-
};
|
|
720
|
-
const isMacintosh = () => {
|
|
721
|
-
return typeof navigator === "undefined" ? false : /Mac|iP(hone|[oa]d)/.test(navigator.platform);
|
|
722
|
-
};
|
|
723
|
-
const getMetaKey = () => {
|
|
724
|
-
return isMacintosh() ? "meta" : "ctrl";
|
|
725
|
-
};
|
|
726
|
-
const getDefaultDateFormat = (args = {}) => {
|
|
727
|
-
const { withTime = false } = args;
|
|
728
|
-
return withTime ? "DD.MM.YYYY HH:mm:ss" : "DD.MM.YYYY";
|
|
729
|
-
};
|
|
730
|
-
async function getRenderMarkdownFn() {
|
|
731
|
-
const { getAdditionalMarkdownPlugins } = registry.common.functions.getAll();
|
|
732
|
-
const { renderHTML } = await import(
|
|
733
|
-
/* webpackChunkName: "markdown" */
|
|
734
|
-
"../markdown.js"
|
|
735
|
-
);
|
|
736
|
-
const plugins = await getAdditionalMarkdownPlugins();
|
|
737
|
-
return function(value) {
|
|
738
|
-
const renderedMarkdown = renderHTML({
|
|
739
|
-
text: value,
|
|
740
|
-
lang: DL.USER_LANG,
|
|
741
|
-
plugins
|
|
742
|
-
});
|
|
743
|
-
return renderedMarkdown.result;
|
|
744
|
-
};
|
|
745
|
-
}
|
|
746
|
-
async function getRenderYfmFn() {
|
|
747
|
-
const renderMarkdown = await getRenderMarkdownFn();
|
|
748
|
-
const ReactDOMServer = await import(
|
|
749
|
-
/* webpackChunkName: "react-dom/server" */
|
|
750
|
-
"react-dom/server"
|
|
751
|
-
);
|
|
752
|
-
const renderToString = ReactDOMServer.renderToString;
|
|
753
|
-
const YfmWrapperContent = registry.common.components.get("YfmWrapperContent");
|
|
754
|
-
return (value) => {
|
|
755
|
-
const markdown = renderMarkdown(value);
|
|
756
|
-
return renderToString(/* @__PURE__ */ jsx(YfmWrapperContent, { content: markdown, setByInnerHtml: true }));
|
|
757
|
-
};
|
|
758
|
-
}
|
|
759
|
-
const getRenderMarkupToStringFn = async () => {
|
|
760
|
-
const ReactDOMServer = await import(
|
|
761
|
-
/* webpackChunkName: "react-dom/server" */
|
|
762
|
-
"react-dom/server"
|
|
763
|
-
);
|
|
764
|
-
const renderToString = ReactDOMServer.renderToStaticMarkup;
|
|
765
|
-
return function(value) {
|
|
766
|
-
if (!isMarkupItem(value)) {
|
|
767
|
-
return escape(String(value));
|
|
768
|
-
}
|
|
769
|
-
return renderToString(/* @__PURE__ */ jsx(Markup, { item: value }));
|
|
770
|
-
};
|
|
771
|
-
};
|
|
772
|
-
const getDefaultPaletteLabel = (defaultColorPalette) => {
|
|
773
|
-
let defaultPaletteName;
|
|
774
|
-
if ("displayName" in defaultColorPalette) {
|
|
775
|
-
defaultPaletteName = defaultColorPalette.displayName;
|
|
776
|
-
} else {
|
|
777
|
-
defaultPaletteName = i18n$4(
|
|
778
|
-
"wizard.palette",
|
|
779
|
-
`label_${defaultColorPalette.id}`
|
|
780
|
-
);
|
|
781
|
-
}
|
|
782
|
-
return /* @__PURE__ */ jsxs(React__default.Fragment, { children: [
|
|
783
|
-
i18n$4("wizard", `label_default`),
|
|
784
|
-
/* @__PURE__ */ jsx(Text, { color: "secondary", className: spacing({ ml: 1 }), children: defaultPaletteName })
|
|
785
|
-
] });
|
|
786
|
-
};
|
|
787
|
-
const getIsSharedEntry = (entry) => {
|
|
788
|
-
return "isDelegated" in entry;
|
|
789
|
-
};
|
|
790
|
-
const AUTH_EXP_COOKIE_NAME = "auth_exp";
|
|
791
|
-
const ACCESS_TOKEN_TIME_RESERVE = 120;
|
|
792
|
-
let refreshPromise;
|
|
793
|
-
const getRefreshPromise = () => {
|
|
794
|
-
const sdk2 = registry.libs.schematicSdk.get();
|
|
795
|
-
return sdk2.auth.auth.refreshTokens().catch(() => {
|
|
796
|
-
}).finally(() => {
|
|
797
|
-
refreshPromise = void 0;
|
|
798
|
-
});
|
|
799
|
-
};
|
|
800
|
-
const refreshAuthToken = async () => {
|
|
801
|
-
if (refreshPromise) {
|
|
802
|
-
await refreshPromise;
|
|
803
|
-
} else {
|
|
804
|
-
const exp = Number(Utils.getCookie(AUTH_EXP_COOKIE_NAME));
|
|
805
|
-
const now = Math.floor((/* @__PURE__ */ new Date()).getTime() / 1e3);
|
|
806
|
-
if (!exp || now + ACCESS_TOKEN_TIME_RESERVE > exp) {
|
|
807
|
-
refreshPromise = getRefreshPromise();
|
|
808
|
-
await refreshPromise;
|
|
809
|
-
}
|
|
810
|
-
}
|
|
811
|
-
};
|
|
812
|
-
const CANCEL_REQUEST_EVENT = "sdk_cancel_request";
|
|
813
|
-
class SdkEvent extends EventTarget {
|
|
814
|
-
cancelRequest(concurrentId) {
|
|
815
|
-
this.dispatchEvent(new CustomEvent(CANCEL_REQUEST_EVENT, { detail: { concurrentId } }));
|
|
816
|
-
}
|
|
817
|
-
}
|
|
818
|
-
const instance = new SdkEvent();
|
|
819
|
-
function subscribeCancelRequest(cb) {
|
|
820
|
-
function subscribe(event) {
|
|
821
|
-
const customEvent = event;
|
|
822
|
-
cb(customEvent.detail.concurrentId);
|
|
823
|
-
}
|
|
824
|
-
instance.addEventListener(CANCEL_REQUEST_EVENT, subscribe);
|
|
825
|
-
function unsubscribe() {
|
|
826
|
-
instance.removeEventListener(CANCEL_REQUEST_EVENT, subscribe);
|
|
827
|
-
}
|
|
828
|
-
return unsubscribe;
|
|
829
|
-
}
|
|
830
|
-
function emitCancelRequest(concurrentId) {
|
|
831
|
-
instance.cancelRequest(concurrentId);
|
|
832
|
-
}
|
|
833
|
-
function initBeforeRequestDecorator(beforeRequest) {
|
|
834
|
-
return (sdkActionFunc, scope, service, action) => (...sdkActionFuncArgs) => {
|
|
835
|
-
const requestOptions = sdkActionFuncArgs[1];
|
|
836
|
-
const concurrentId = requestOptions?.concurrentId;
|
|
837
|
-
let cancelled = false;
|
|
838
|
-
let actionPromise;
|
|
839
|
-
let unsubscribe;
|
|
840
|
-
if (concurrentId) {
|
|
841
|
-
unsubscribe = subscribeCancelRequest((emittedConcurrentId) => {
|
|
842
|
-
if (emittedConcurrentId === concurrentId) {
|
|
843
|
-
cancelled = true;
|
|
844
|
-
}
|
|
845
|
-
});
|
|
846
|
-
}
|
|
847
|
-
return new CancellablePromise(
|
|
848
|
-
beforeRequest({ scope, service, action }).then(() => {
|
|
849
|
-
unsubscribe?.();
|
|
850
|
-
actionPromise = sdkActionFunc(...sdkActionFuncArgs);
|
|
851
|
-
if (cancelled) {
|
|
852
|
-
actionPromise.cancel();
|
|
853
|
-
}
|
|
854
|
-
return actionPromise;
|
|
855
|
-
}),
|
|
856
|
-
() => {
|
|
857
|
-
unsubscribe?.();
|
|
858
|
-
actionPromise?.cancel();
|
|
859
|
-
cancelled = true;
|
|
860
|
-
}
|
|
861
|
-
).finally(() => {
|
|
862
|
-
unsubscribe?.();
|
|
863
|
-
});
|
|
864
|
-
};
|
|
865
|
-
}
|
|
866
|
-
const isEnabledFeature = (featureName) => {
|
|
867
|
-
const featureDynamicStatus = get(DL.DYNAMIC_FEATURES, featureName);
|
|
868
|
-
const featureStaticStatus = Boolean(get(DL.FEATURES, featureName));
|
|
869
|
-
return featureDynamicStatus ?? featureStaticStatus;
|
|
870
|
-
};
|
|
871
|
-
const DATALENS_LOGGER = "dl";
|
|
872
|
-
const CHARTKIT_LOGGER = "dl-chartkit";
|
|
873
|
-
const logger = defaultLogger.get(DATALENS_LOGGER);
|
|
874
|
-
logger.setSettings({
|
|
875
|
-
parseError
|
|
876
|
-
});
|
|
877
|
-
const chartkitLogger = logger.get(CHARTKIT_LOGGER);
|
|
878
|
-
chartkitLogger.setSettings({
|
|
879
|
-
parseError,
|
|
880
|
-
bufferSize: 100
|
|
881
|
-
});
|
|
882
|
-
function withHiddenUnmount(WrappedComponent) {
|
|
883
|
-
var _a;
|
|
884
|
-
const componentName = WrappedComponent.displayName || WrappedComponent.name || "Component";
|
|
885
|
-
return _a = class extends React__default.Component {
|
|
886
|
-
render() {
|
|
887
|
-
if (this.props.visible === false) {
|
|
888
|
-
return null;
|
|
889
|
-
}
|
|
890
|
-
return /* @__PURE__ */ jsx(WrappedComponent, { ...this.props });
|
|
891
|
-
}
|
|
892
|
-
}, _a.displayName = `withHiddenUnmount(${componentName})`, _a;
|
|
893
|
-
}
|
|
894
|
-
const useRefMounted = () => {
|
|
895
|
-
const refMounted = useRef(false);
|
|
896
|
-
useEffect(() => {
|
|
897
|
-
refMounted.current = true;
|
|
898
|
-
return () => {
|
|
899
|
-
refMounted.current = false;
|
|
900
|
-
};
|
|
901
|
-
}, []);
|
|
902
|
-
return refMounted;
|
|
903
|
-
};
|
|
904
|
-
function useMountedState(deps) {
|
|
905
|
-
const mountedRef = React__default.useRef(false);
|
|
906
|
-
const get2 = React__default.useCallback(() => mountedRef.current, []);
|
|
907
|
-
React__default.useEffect(() => {
|
|
908
|
-
mountedRef.current = true;
|
|
909
|
-
return () => {
|
|
910
|
-
mountedRef.current = false;
|
|
911
|
-
};
|
|
912
|
-
}, deps);
|
|
913
|
-
return get2;
|
|
914
|
-
}
|
|
915
|
-
function usePrevious(value) {
|
|
916
|
-
const ref = React__default.useRef();
|
|
917
|
-
React__default.useEffect(() => {
|
|
918
|
-
ref.current = value;
|
|
919
|
-
}, [value]);
|
|
920
|
-
return ref.current;
|
|
921
|
-
}
|
|
922
|
-
function useEffectOnce(effect) {
|
|
923
|
-
React__default.useEffect(effect, []);
|
|
924
|
-
}
|
|
925
|
-
function useShallowEqualSelector(selector) {
|
|
926
|
-
return useSelector(selector, shallowEqual);
|
|
927
|
-
}
|
|
928
|
-
const SET_ITEM = /* @__PURE__ */ Symbol("localStorageFallback/SET_ITEM");
|
|
929
|
-
const setLocalStorageFallbackItem = (key, value) => {
|
|
930
|
-
return {
|
|
931
|
-
type: SET_ITEM,
|
|
932
|
-
payload: { key, value }
|
|
933
|
-
};
|
|
934
|
-
};
|
|
935
|
-
const selectLocalStorageFallbackItem = (state, key) => state.localStorageFallback[key] ?? null;
|
|
936
|
-
let localStorageDiagnostic = null;
|
|
937
|
-
const initLocalStorageDiagnostic = () => {
|
|
938
|
-
const test = "test";
|
|
939
|
-
try {
|
|
940
|
-
window.localStorage.setItem(test, test);
|
|
941
|
-
localStorageDiagnostic = { isAvailable: test === window.localStorage.getItem(test) };
|
|
942
|
-
window.localStorage.removeItem(test);
|
|
943
|
-
} catch (error) {
|
|
944
|
-
localStorageDiagnostic = { isAvailable: false };
|
|
945
|
-
}
|
|
946
|
-
};
|
|
947
|
-
initLocalStorageDiagnostic();
|
|
948
|
-
const useLocalStorageFallback = ({
|
|
949
|
-
key,
|
|
950
|
-
restoreFromLocalStorage
|
|
951
|
-
}) => {
|
|
952
|
-
const dispatch2 = useDispatch();
|
|
953
|
-
const localStorageFallbackItem = useSelector((state) => selectLocalStorageFallbackItem(state, key)) ?? null;
|
|
954
|
-
const localStorageFallbackItemRef = React__default.useRef(localStorageFallbackItem);
|
|
955
|
-
React__default.useEffect(() => {
|
|
956
|
-
localStorageFallbackItemRef.current = localStorageFallbackItem;
|
|
957
|
-
}, [localStorageFallbackItem]);
|
|
958
|
-
const getItem = React__default.useCallback(() => {
|
|
959
|
-
if (localStorageDiagnostic?.isAvailable) {
|
|
960
|
-
return restoreFromLocalStorage ? restoreFromLocalStorage(key) : Utils.restore(key);
|
|
961
|
-
}
|
|
962
|
-
try {
|
|
963
|
-
const storeItem = localStorageFallbackItemRef.current;
|
|
964
|
-
return storeItem === null ? null : JSON.parse(storeItem);
|
|
965
|
-
} catch (error) {
|
|
966
|
-
return null;
|
|
967
|
-
}
|
|
968
|
-
}, [key, restoreFromLocalStorage]);
|
|
969
|
-
const setItem = React__default.useCallback(
|
|
970
|
-
(data) => {
|
|
971
|
-
if (localStorageDiagnostic?.isAvailable) {
|
|
972
|
-
Utils.store(key, data);
|
|
973
|
-
return;
|
|
974
|
-
}
|
|
975
|
-
const storeItem = JSON.stringify(data);
|
|
976
|
-
localStorageFallbackItemRef.current = storeItem;
|
|
977
|
-
dispatch2(setLocalStorageFallbackItem(key, storeItem));
|
|
978
|
-
},
|
|
979
|
-
[key, dispatch2]
|
|
980
|
-
);
|
|
981
|
-
return {
|
|
982
|
-
getItem,
|
|
983
|
-
setItem
|
|
984
|
-
};
|
|
985
|
-
};
|
|
986
|
-
const OPEN_DIALOG = /* @__PURE__ */ Symbol("dialog/OPEN_DIALOG");
|
|
987
|
-
const UPDATE_DIALOG_PROPS = /* @__PURE__ */ Symbol("dialog/UPDATE_DIALOG_PROPS");
|
|
988
|
-
const CLOSE_DIALOG = /* @__PURE__ */ Symbol("dialog/CLOSE_DIALOG");
|
|
989
|
-
const SET_CONFIRM_DIALOG_LOADING_STATUS = /* @__PURE__ */ Symbol("dialog/SET_CONFIRM_DIALOG_LOADING_STATUS");
|
|
990
|
-
const PARTIAL_UPDATE_DIALOG_PROPS = /* @__PURE__ */ Symbol("dialog/PARTIAL_UPDATE_DIALOG_PROPS");
|
|
991
|
-
const openDialog = (args) => {
|
|
992
|
-
return {
|
|
993
|
-
type: OPEN_DIALOG,
|
|
994
|
-
id: args.id,
|
|
995
|
-
props: args.props
|
|
996
|
-
};
|
|
997
|
-
};
|
|
998
|
-
function closeDialog() {
|
|
999
|
-
return {
|
|
1000
|
-
type: CLOSE_DIALOG
|
|
1001
|
-
};
|
|
1002
|
-
}
|
|
1003
|
-
function updateDialogProps(args) {
|
|
1004
|
-
return {
|
|
1005
|
-
type: UPDATE_DIALOG_PROPS,
|
|
1006
|
-
id: args.id,
|
|
1007
|
-
props: args.props
|
|
1008
|
-
};
|
|
1009
|
-
}
|
|
1010
|
-
function setDialogConfirmLoadingStatus(payload) {
|
|
1011
|
-
return {
|
|
1012
|
-
type: SET_CONFIRM_DIALOG_LOADING_STATUS,
|
|
1013
|
-
payload
|
|
1014
|
-
};
|
|
1015
|
-
}
|
|
1016
|
-
const openDialogErrorWithTabs = (params) => {
|
|
1017
|
-
return (dispatch2) => {
|
|
1018
|
-
const { error, details, title, ...restProps } = params;
|
|
1019
|
-
dispatch2(
|
|
1020
|
-
openDialog({
|
|
1021
|
-
id: DIALOG_ERROR_WITH_TABS,
|
|
1022
|
-
props: {
|
|
1023
|
-
title: title || error?.message || null,
|
|
1024
|
-
onCancel: () => dispatch2(closeDialog()),
|
|
1025
|
-
...restProps,
|
|
1026
|
-
...error ? { error } : { details }
|
|
1027
|
-
}
|
|
1028
|
-
})
|
|
1029
|
-
);
|
|
1030
|
-
};
|
|
1031
|
-
};
|
|
1032
|
-
const openDialogConfirm = (commonProps) => {
|
|
1033
|
-
return function(dispatch2) {
|
|
1034
|
-
dispatch2(
|
|
1035
|
-
openDialog({
|
|
1036
|
-
id: DIALOG_CONFIRM,
|
|
1037
|
-
props: {
|
|
1038
|
-
...commonProps,
|
|
1039
|
-
visible: true
|
|
1040
|
-
}
|
|
1041
|
-
})
|
|
1042
|
-
);
|
|
1043
|
-
};
|
|
1044
|
-
};
|
|
1045
|
-
const openWarningDialog = (commonProps) => {
|
|
1046
|
-
return function(dispatch2) {
|
|
1047
|
-
dispatch2(
|
|
1048
|
-
openDialog({
|
|
1049
|
-
id: DIALOG_WARNING,
|
|
1050
|
-
props: {
|
|
1051
|
-
...commonProps,
|
|
1052
|
-
visible: true
|
|
1053
|
-
}
|
|
1054
|
-
})
|
|
1055
|
-
);
|
|
1056
|
-
};
|
|
1057
|
-
};
|
|
1058
|
-
const openDialogSaveChartConfirm = ({
|
|
1059
|
-
onApply,
|
|
1060
|
-
message,
|
|
1061
|
-
confirmHeaderText,
|
|
1062
|
-
confirmButtonText,
|
|
1063
|
-
cancelButtonText,
|
|
1064
|
-
widthType
|
|
1065
|
-
}) => {
|
|
1066
|
-
return function(dispatch2) {
|
|
1067
|
-
const openDialogConfirmParams = {
|
|
1068
|
-
onApply: async (args) => {
|
|
1069
|
-
await onApply(args);
|
|
1070
|
-
dispatch2(closeDialog());
|
|
1071
|
-
},
|
|
1072
|
-
message,
|
|
1073
|
-
isWarningConfirm: true,
|
|
1074
|
-
cancelButtonView: "flat",
|
|
1075
|
-
onCancel: () => dispatch2(closeDialog()),
|
|
1076
|
-
confirmOnEnterPress: true,
|
|
1077
|
-
confirmHeaderText: confirmHeaderText || i18n$4("component.dl-dialog-confirm.view", "confirm-header"),
|
|
1078
|
-
cancelButtonText: cancelButtonText || i18n$4("component.dl-dialog-confirm.view", "button-save-chart_cancel"),
|
|
1079
|
-
confirmButtonText: confirmButtonText || i18n$4("component.dl-dialog-confirm.view", "button-save-chart_apply"),
|
|
1080
|
-
widthType
|
|
1081
|
-
};
|
|
1082
|
-
dispatch2(openDialogConfirm(openDialogConfirmParams));
|
|
1083
|
-
};
|
|
1084
|
-
};
|
|
1085
|
-
const openDialogSaveDraftChartAsActualConfirm = ({
|
|
1086
|
-
onApply
|
|
1087
|
-
}) => {
|
|
1088
|
-
return function(dispatch2) {
|
|
1089
|
-
dispatch2(
|
|
1090
|
-
openDialogSaveChartConfirm({
|
|
1091
|
-
onApply: (args) => {
|
|
1092
|
-
onApply(args);
|
|
1093
|
-
dispatch2(closeDialog());
|
|
1094
|
-
},
|
|
1095
|
-
message: `${i18n$4("revisions.dialog-confirm", "label_text")} ${i18n$4(
|
|
1096
|
-
"revisions.dialog-confirm",
|
|
1097
|
-
"label_text-unsaved-lost"
|
|
1098
|
-
)}`,
|
|
1099
|
-
confirmButtonText: i18n$4("revisions.dialog-confirm", "button_confirm"),
|
|
1100
|
-
cancelButtonText: i18n$4("revisions.dialog-confirm", "button_cancel"),
|
|
1101
|
-
confirmHeaderText: i18n$4("revisions.dialog-confirm", "label_title"),
|
|
1102
|
-
widthType: "medium"
|
|
1103
|
-
})
|
|
1104
|
-
);
|
|
1105
|
-
};
|
|
1106
|
-
};
|
|
1107
|
-
const openDialogParameter = ({
|
|
1108
|
-
type,
|
|
1109
|
-
onApply,
|
|
1110
|
-
field,
|
|
1111
|
-
onReset,
|
|
1112
|
-
showTemplateWarn,
|
|
1113
|
-
templateEnabled
|
|
1114
|
-
}) => {
|
|
1115
|
-
return function(dispatch2) {
|
|
1116
|
-
const openDialogParameterParams = {
|
|
1117
|
-
type,
|
|
1118
|
-
onClose: () => dispatch2(closeDialog()),
|
|
1119
|
-
onApply: (updatedField) => {
|
|
1120
|
-
const { cast, default_value } = updatedField;
|
|
1121
|
-
if (cast === "genericdatetime" && typeof default_value === "string" && default_value.endsWith("Z")) {
|
|
1122
|
-
updatedField.default_value = default_value.substring(0, 19);
|
|
1123
|
-
}
|
|
1124
|
-
onApply(updatedField);
|
|
1125
|
-
dispatch2(closeDialog());
|
|
1126
|
-
},
|
|
1127
|
-
onReset,
|
|
1128
|
-
field,
|
|
1129
|
-
showTemplateWarn,
|
|
1130
|
-
templateEnabled
|
|
1131
|
-
};
|
|
1132
|
-
dispatch2(
|
|
1133
|
-
openDialog({
|
|
1134
|
-
id: DIALOG_PARAMETER,
|
|
1135
|
-
props: openDialogParameterParams
|
|
1136
|
-
})
|
|
1137
|
-
);
|
|
1138
|
-
};
|
|
1139
|
-
};
|
|
1140
|
-
const openDialogFilter = (args) => {
|
|
1141
|
-
return function(dispatch2) {
|
|
1142
|
-
const dialogFilterArgs = {
|
|
1143
|
-
id: DIALOG_FILTER,
|
|
1144
|
-
props: {
|
|
1145
|
-
visible: true,
|
|
1146
|
-
field: args.field,
|
|
1147
|
-
datasetId: args.datasetId,
|
|
1148
|
-
workbookId: args.workbookId,
|
|
1149
|
-
options: args.options,
|
|
1150
|
-
onClose: () => {
|
|
1151
|
-
if (args.onClose) {
|
|
1152
|
-
args.onClose();
|
|
1153
|
-
}
|
|
1154
|
-
dispatch2(closeDialog());
|
|
1155
|
-
},
|
|
1156
|
-
onApply: (data) => {
|
|
1157
|
-
args.onApply(data);
|
|
1158
|
-
dispatch2(closeDialog());
|
|
1159
|
-
},
|
|
1160
|
-
filter: args.filter,
|
|
1161
|
-
fields: args.fields,
|
|
1162
|
-
hideApplyButton: Boolean(args.hideApplyButton),
|
|
1163
|
-
updates: args.updates,
|
|
1164
|
-
dashboardParameters: args.dashboardParameters,
|
|
1165
|
-
parameters: args.parameters
|
|
1166
|
-
}
|
|
1167
|
-
};
|
|
1168
|
-
dispatch2(openDialog(dialogFilterArgs));
|
|
1169
|
-
};
|
|
1170
|
-
};
|
|
1171
|
-
const i18n$3 = I18n.keyset("common.read-only");
|
|
1172
|
-
const showReadOnlyToast = () => {
|
|
1173
|
-
toaster.add({
|
|
1174
|
-
theme: "danger",
|
|
1175
|
-
name: "ReadOnlyError",
|
|
1176
|
-
title: i18n$3("toast_editing-warning")
|
|
1177
|
-
});
|
|
1178
|
-
};
|
|
1179
|
-
function isSdkError(error) {
|
|
1180
|
-
return _.isPlainObject(error) && Boolean(error._sdk);
|
|
1181
|
-
}
|
|
1182
|
-
const DEFAULT_SDK_CODE = "SDK_REQUEST_ERROR";
|
|
1183
|
-
const DEFAULT_SDK_MESSAGE = "SDK request error";
|
|
1184
|
-
let dispatch;
|
|
1185
|
-
let needResetDialogShown = false;
|
|
1186
|
-
function registerSDKDispatch(_dispatch) {
|
|
1187
|
-
dispatch = _dispatch;
|
|
1188
|
-
}
|
|
1189
|
-
const handleRequestError = (errorResponse) => {
|
|
1190
|
-
let parsedError = {};
|
|
1191
|
-
const errorData = _.get(errorResponse, "data");
|
|
1192
|
-
const requestId = _.get(errorResponse, ["headers", REQUEST_ID_HEADER], DL.REQUEST_ID || "");
|
|
1193
|
-
const traceId = _.get(errorResponse, ["headers", TRACE_ID_HEADER], "");
|
|
1194
|
-
if (errorData) {
|
|
1195
|
-
if (typeof errorData === "string") {
|
|
1196
|
-
parsedError = {
|
|
1197
|
-
status: _.get(errorResponse, "status"),
|
|
1198
|
-
code: DEFAULT_SDK_CODE,
|
|
1199
|
-
message: DEFAULT_SDK_MESSAGE,
|
|
1200
|
-
details: {
|
|
1201
|
-
title: DEFAULT_SDK_CODE,
|
|
1202
|
-
description: errorData
|
|
1203
|
-
},
|
|
1204
|
-
requestId,
|
|
1205
|
-
traceId,
|
|
1206
|
-
_sdk: true
|
|
1207
|
-
};
|
|
1208
|
-
} else {
|
|
1209
|
-
parsedError = {
|
|
1210
|
-
status: _.get(errorData, "status", 500),
|
|
1211
|
-
code: _.get(errorData, "code", DEFAULT_SDK_CODE),
|
|
1212
|
-
message: _.get(errorData, "message", DEFAULT_SDK_MESSAGE),
|
|
1213
|
-
details: _.get(errorData, "details"),
|
|
1214
|
-
debug: _.get(errorData, "debug"),
|
|
1215
|
-
requestId,
|
|
1216
|
-
traceId,
|
|
1217
|
-
_sdk: true
|
|
1218
|
-
};
|
|
1219
|
-
}
|
|
1220
|
-
} else if (_.get(errorResponse, "code") === "ECONNABORTED") {
|
|
1221
|
-
parsedError = {
|
|
1222
|
-
status: 500,
|
|
1223
|
-
code: "ECONNABORTED",
|
|
1224
|
-
message: _.get(errorResponse, "message", DEFAULT_SDK_MESSAGE),
|
|
1225
|
-
requestId: _.get(errorResponse, ["config", "headers", REQUEST_ID_HEADER], requestId),
|
|
1226
|
-
traceId,
|
|
1227
|
-
_sdk: true
|
|
1228
|
-
};
|
|
1229
|
-
} else {
|
|
1230
|
-
parsedError = {
|
|
1231
|
-
status: 500,
|
|
1232
|
-
code: DEFAULT_SDK_CODE,
|
|
1233
|
-
message: DEFAULT_SDK_MESSAGE,
|
|
1234
|
-
details: errorResponse,
|
|
1235
|
-
requestId,
|
|
1236
|
-
traceId,
|
|
1237
|
-
_sdk: true
|
|
1238
|
-
};
|
|
1239
|
-
}
|
|
1240
|
-
if ([ErrorCode.AuthNeedReset, ErrorCode.NeedReset].includes(parsedError.code) && dispatch && !needResetDialogShown) {
|
|
1241
|
-
needResetDialogShown = true;
|
|
1242
|
-
dispatch(
|
|
1243
|
-
openDialog({
|
|
1244
|
-
id: DIALOG_NEED_RESET
|
|
1245
|
-
})
|
|
1246
|
-
);
|
|
1247
|
-
}
|
|
1248
|
-
if (parsedError.code === ErrorCode.ReadOnlyMode) {
|
|
1249
|
-
showReadOnlyToast();
|
|
1250
|
-
}
|
|
1251
|
-
throw parsedError;
|
|
1252
|
-
};
|
|
1253
|
-
function isOperationError(error) {
|
|
1254
|
-
return _.isPlainObject(error) && Boolean(error._operationError);
|
|
1255
|
-
}
|
|
1256
|
-
const sdkConfig = {
|
|
1257
|
-
csrfToken: Utils.getCSRFToken() || "",
|
|
1258
|
-
axiosConfig: {
|
|
1259
|
-
"axios-retry": {
|
|
1260
|
-
retries: 3,
|
|
1261
|
-
retryDelay: () => 1e3,
|
|
1262
|
-
retryCondition: (error) => {
|
|
1263
|
-
return error?.response?.status === 498;
|
|
1264
|
-
}
|
|
1265
|
-
}
|
|
1266
|
-
},
|
|
1267
|
-
endpoint: "/gateway",
|
|
1268
|
-
handleRequestError,
|
|
1269
|
-
prepareRequestOptions(_scope, _service, _action, options) {
|
|
1270
|
-
return {
|
|
1271
|
-
...options,
|
|
1272
|
-
headers: {
|
|
1273
|
-
[REQUEST_ID_HEADER]: `dl.${DL.REQUEST_ID.slice(-5)}.${v4().slice(0, 8)}`,
|
|
1274
|
-
...options?.headers
|
|
1275
|
-
}
|
|
1276
|
-
};
|
|
1277
|
-
},
|
|
1278
|
-
decorator: DL.AUTH_ENABLED ? initBeforeRequestDecorator(({ scope }) => {
|
|
1279
|
-
return scope === "auth" ? Promise.resolve() : refreshAuthToken();
|
|
1280
|
-
}) : void 0
|
|
1281
|
-
};
|
|
1282
|
-
const preparedConfig = (options = {}) => {
|
|
1283
|
-
return {
|
|
1284
|
-
...sdkConfig,
|
|
1285
|
-
...options.baseUrl && { endpoint: options.baseUrl + sdkConfig.endpoint }
|
|
1286
|
-
};
|
|
1287
|
-
};
|
|
1288
|
-
const initSdk = (options = {}) => {
|
|
1289
|
-
const sdk2 = sdkFactory(preparedConfig(options));
|
|
1290
|
-
sdk2.setDefaultHeader({
|
|
1291
|
-
name: TIMEZONE_OFFSET_HEADER,
|
|
1292
|
-
value: (/* @__PURE__ */ new Date()).getTimezoneOffset().toString()
|
|
1293
|
-
});
|
|
1294
|
-
sdk2.setDefaultHeader({
|
|
1295
|
-
name: ACCEPT_LANGUAGE_HEADER,
|
|
1296
|
-
value: DL.USER_LANG
|
|
1297
|
-
});
|
|
1298
|
-
if (DL.CURRENT_TENANT_ID) {
|
|
1299
|
-
sdk2.setDefaultHeader({
|
|
1300
|
-
name: TENANT_ID_HEADER,
|
|
1301
|
-
value: DL.CURRENT_TENANT_ID
|
|
1302
|
-
});
|
|
1303
|
-
}
|
|
1304
|
-
if (DL.DISPLAY_SUPERUSER_SWITCH) {
|
|
1305
|
-
const superuserModeEnabled = Utils.getCookie(SUPERUSER_SWITCH_MODE_COOKIE_NAME) === ENABLE;
|
|
1306
|
-
sdk2.setDefaultHeader({
|
|
1307
|
-
name: SuperuserHeader.XDlAllowSuperuser,
|
|
1308
|
-
value: String(superuserModeEnabled)
|
|
1309
|
-
});
|
|
1310
|
-
sdk2.setDefaultHeader({
|
|
1311
|
-
name: SuperuserHeader.XDlSudo,
|
|
1312
|
-
value: String(superuserModeEnabled)
|
|
1313
|
-
});
|
|
1314
|
-
}
|
|
1315
|
-
return sdk2;
|
|
1316
|
-
};
|
|
1317
|
-
const getSdk = () => {
|
|
1318
|
-
const sdk2 = registry.libs.schematicSdk.get();
|
|
1319
|
-
return {
|
|
1320
|
-
sdk: sdk2,
|
|
1321
|
-
// Use this method instead of sdk.cancelRequest
|
|
1322
|
-
cancelRequest(concurrentId) {
|
|
1323
|
-
emitCancelRequest(concurrentId);
|
|
1324
|
-
sdk2.cancelRequest(concurrentId);
|
|
1325
|
-
}
|
|
1326
|
-
};
|
|
1327
|
-
};
|
|
1328
|
-
function getResolveUsersByIdsAction() {
|
|
1329
|
-
const resolveUsers = registry.common.functions.get("resolveUsersByIds");
|
|
1330
|
-
return resolveUsers;
|
|
1331
|
-
}
|
|
1332
|
-
function fetchEntryById(entryId, concurrentId, callback) {
|
|
1333
|
-
return async (dispatch2) => {
|
|
1334
|
-
const params = concurrentId ? { concurrentId } : {};
|
|
1335
|
-
let entry;
|
|
1336
|
-
try {
|
|
1337
|
-
entry = await getSdk().sdk.us.getEntry({ entryId, includePermissionsInfo: true }, params);
|
|
1338
|
-
} catch (error) {
|
|
1339
|
-
if (getSdk().sdk.isCancel(error)) {
|
|
1340
|
-
entry = null;
|
|
1341
|
-
}
|
|
1342
|
-
}
|
|
1343
|
-
if (!entry) {
|
|
1344
|
-
return;
|
|
1345
|
-
}
|
|
1346
|
-
dispatch2(setEntryContent(entry));
|
|
1347
|
-
if (typeof callback === "function") {
|
|
1348
|
-
callback(entry);
|
|
1349
|
-
}
|
|
1350
|
-
};
|
|
1351
|
-
}
|
|
1352
|
-
const SET_ENTRY = /* @__PURE__ */ Symbol("entryContent/SET_ENTRY");
|
|
1353
|
-
function setEntryContent(payload) {
|
|
1354
|
-
return {
|
|
1355
|
-
type: SET_ENTRY,
|
|
1356
|
-
payload
|
|
1357
|
-
};
|
|
1358
|
-
}
|
|
1359
|
-
const SET_REVISIONS = /* @__PURE__ */ Symbol("entryContent/SET_REVISIONS");
|
|
1360
|
-
function setRevisions(payload) {
|
|
1361
|
-
return {
|
|
1362
|
-
type: SET_REVISIONS,
|
|
1363
|
-
payload
|
|
1364
|
-
};
|
|
1365
|
-
}
|
|
1366
|
-
function loadRevisions({
|
|
1367
|
-
entryId,
|
|
1368
|
-
page,
|
|
1369
|
-
revId,
|
|
1370
|
-
concurrentId
|
|
1371
|
-
}) {
|
|
1372
|
-
return async (dispatch2, getState) => {
|
|
1373
|
-
const entryContent = getState().entryContent;
|
|
1374
|
-
const { currentPageEntry } = getState().asideHeader;
|
|
1375
|
-
const { revisions, currentRevId } = entryContent;
|
|
1376
|
-
if (currentPageEntry?.entryId !== entryContent.entryId) {
|
|
1377
|
-
dispatch2(cleanRevisions());
|
|
1378
|
-
}
|
|
1379
|
-
let hasNextPage = false;
|
|
1380
|
-
let entries = [];
|
|
1381
|
-
try {
|
|
1382
|
-
const getRevisionsResponse = await getSdk().sdk.us.getRevisions(
|
|
1383
|
-
{
|
|
1384
|
-
entryId,
|
|
1385
|
-
pageSize: REVISIONS_LIST_PART_SIZE,
|
|
1386
|
-
page
|
|
1387
|
-
},
|
|
1388
|
-
{ concurrentId }
|
|
1389
|
-
);
|
|
1390
|
-
hasNextPage = getRevisionsResponse.hasNextPage;
|
|
1391
|
-
entries = getRevisionsResponse.entries;
|
|
1392
|
-
} catch (error) {
|
|
1393
|
-
if (getSdk().sdk.isCancel(error)) {
|
|
1394
|
-
return;
|
|
1395
|
-
}
|
|
1396
|
-
throw error;
|
|
1397
|
-
}
|
|
1398
|
-
const loadedRevisions = revisions || [];
|
|
1399
|
-
const fetchedRevisions = [...entries];
|
|
1400
|
-
if (!hasNextPage) {
|
|
1401
|
-
const publishedId = entryContent.publishedId;
|
|
1402
|
-
const savedId = entryContent.savedId;
|
|
1403
|
-
const fetchedRevIdsSet = new Set(
|
|
1404
|
-
[...loadedRevisions, ...fetchedRevisions].map((item) => item.revId)
|
|
1405
|
-
);
|
|
1406
|
-
const revIdsSet = /* @__PURE__ */ new Set();
|
|
1407
|
-
if (savedId && !fetchedRevIdsSet.has(savedId)) {
|
|
1408
|
-
revIdsSet.add(savedId);
|
|
1409
|
-
}
|
|
1410
|
-
if (publishedId && !fetchedRevIdsSet.has(publishedId)) {
|
|
1411
|
-
revIdsSet.add(publishedId);
|
|
1412
|
-
}
|
|
1413
|
-
if (revIdsSet.size > 0) {
|
|
1414
|
-
let extraEntries = [];
|
|
1415
|
-
try {
|
|
1416
|
-
const getRevisionsResponse = await getSdk().sdk.us.getRevisions(
|
|
1417
|
-
{
|
|
1418
|
-
entryId,
|
|
1419
|
-
pageSize: REVISIONS_LIST_PART_SIZE,
|
|
1420
|
-
page: 0,
|
|
1421
|
-
revIds: Array.from(revIdsSet)
|
|
1422
|
-
},
|
|
1423
|
-
{ concurrentId }
|
|
1424
|
-
);
|
|
1425
|
-
extraEntries = getRevisionsResponse.entries;
|
|
1426
|
-
} catch (error) {
|
|
1427
|
-
if (getSdk().sdk.isCancel(error)) {
|
|
1428
|
-
return;
|
|
1429
|
-
}
|
|
1430
|
-
throw error;
|
|
1431
|
-
}
|
|
1432
|
-
fetchedRevisions.push(...extraEntries);
|
|
1433
|
-
}
|
|
1434
|
-
}
|
|
1435
|
-
const ids = filterUsersIds(fetchedRevisions.map((item) => item.updatedBy));
|
|
1436
|
-
const resolveUsersByIds = getResolveUsersByIdsAction();
|
|
1437
|
-
const dispatchResolveUsersByIds = resolveUsersByIds(ids);
|
|
1438
|
-
if (dispatchResolveUsersByIds) {
|
|
1439
|
-
dispatch2(dispatchResolveUsersByIds);
|
|
1440
|
-
}
|
|
1441
|
-
dispatch2(
|
|
1442
|
-
setRevisions({
|
|
1443
|
-
revisions: [...loadedRevisions, ...fetchedRevisions],
|
|
1444
|
-
currentRevId: revId || currentRevId || "",
|
|
1445
|
-
hasRevisionsNextPage: hasNextPage
|
|
1446
|
-
})
|
|
1447
|
-
);
|
|
1448
|
-
};
|
|
1449
|
-
}
|
|
1450
|
-
function reloadRevisions() {
|
|
1451
|
-
return async (dispatch2, getState) => {
|
|
1452
|
-
await dispatch2(revisionsLoadingStatus("loading"));
|
|
1453
|
-
const state = getState();
|
|
1454
|
-
const { entryContent } = state;
|
|
1455
|
-
if (entryContent.revisionsMode === RevisionsMode.Opened) {
|
|
1456
|
-
await dispatch2(
|
|
1457
|
-
loadRevisions({
|
|
1458
|
-
entryId: entryContent.entryId,
|
|
1459
|
-
page: 0
|
|
1460
|
-
})
|
|
1461
|
-
);
|
|
1462
|
-
}
|
|
1463
|
-
await dispatch2(revisionsLoadingStatus("ready"));
|
|
1464
|
-
};
|
|
1465
|
-
}
|
|
1466
|
-
const REVISIONS_LOADING_STATUS = /* @__PURE__ */ Symbol("entryContent/REVISIONS_LOADING_STATUS");
|
|
1467
|
-
function revisionsLoadingStatus(status) {
|
|
1468
|
-
return {
|
|
1469
|
-
type: REVISIONS_LOADING_STATUS,
|
|
1470
|
-
payload: status
|
|
1471
|
-
};
|
|
1472
|
-
}
|
|
1473
|
-
const CLEAN_REVISIONS = /* @__PURE__ */ Symbol("entryContent/CLEAN_REVISIONS");
|
|
1474
|
-
function cleanRevisions() {
|
|
1475
|
-
return {
|
|
1476
|
-
type: CLEAN_REVISIONS
|
|
1477
|
-
};
|
|
1478
|
-
}
|
|
1479
|
-
const SET_REVISIONS_MODE = /* @__PURE__ */ Symbol("entryContent/SET_REVISIONS_MODE");
|
|
1480
|
-
function setRevisionsMode(payload) {
|
|
1481
|
-
return {
|
|
1482
|
-
type: SET_REVISIONS_MODE,
|
|
1483
|
-
payload
|
|
1484
|
-
};
|
|
1485
|
-
}
|
|
1486
|
-
const SET_REVISIONS_LIST_MODE = /* @__PURE__ */ Symbol("entryContent/SET_REVISIONS_LIST_MODE");
|
|
1487
|
-
function setRevisionsListMode(payload) {
|
|
1488
|
-
return {
|
|
1489
|
-
type: SET_REVISIONS_LIST_MODE,
|
|
1490
|
-
payload
|
|
1491
|
-
};
|
|
1492
|
-
}
|
|
1493
|
-
const TOGGLE_REVISIONS_MODE = /* @__PURE__ */ Symbol("entryContent/TOGGLE_REVISIONS_MODE");
|
|
1494
|
-
function toggleRevisionsMode() {
|
|
1495
|
-
return {
|
|
1496
|
-
type: TOGGLE_REVISIONS_MODE
|
|
1497
|
-
};
|
|
1498
|
-
}
|
|
1499
|
-
const SET_ENTRY_CURRENT_REVID = /* @__PURE__ */ Symbol("entryContent/SET_ENTRY_CURRENT_REVID");
|
|
1500
|
-
function setEntryCurrentRevId(payload) {
|
|
1501
|
-
return {
|
|
1502
|
-
type: SET_ENTRY_CURRENT_REVID,
|
|
1503
|
-
payload
|
|
1504
|
-
};
|
|
1505
|
-
}
|
|
1506
|
-
const SET_IS_RENAME_WITHOUT_RELOAD = /* @__PURE__ */ Symbol("entryContent/SET_IS_RENAME_WITHOUT_RELOAD");
|
|
1507
|
-
const setIsRenameWithoutReload = (isRenameWithoutReload) => {
|
|
1508
|
-
return {
|
|
1509
|
-
type: SET_IS_RENAME_WITHOUT_RELOAD,
|
|
1510
|
-
isRenameWithoutReload
|
|
1511
|
-
};
|
|
1512
|
-
};
|
|
1513
|
-
function reloadRevisionsOnSave(needClose) {
|
|
1514
|
-
return async (dispatch2) => {
|
|
1515
|
-
if (needClose) {
|
|
1516
|
-
await dispatch2(setRevisionsMode(RevisionsMode.Closed));
|
|
1517
|
-
}
|
|
1518
|
-
await dispatch2(reloadRevisions());
|
|
1519
|
-
};
|
|
1520
|
-
}
|
|
1521
|
-
function setChartsEntryContent(entry) {
|
|
1522
|
-
return (dispatch2) => {
|
|
1523
|
-
dispatch2(setEntryContent(entry));
|
|
1524
|
-
const router = getRouter();
|
|
1525
|
-
const search = router.location().params();
|
|
1526
|
-
search.delete(URL_QUERY.UNRELEASED);
|
|
1527
|
-
if (entry.publishedId) {
|
|
1528
|
-
if (entry.revId === entry.publishedId) {
|
|
1529
|
-
search.delete(URL_QUERY.REV_ID);
|
|
1530
|
-
} else {
|
|
1531
|
-
search.set(URL_QUERY.REV_ID, entry.revId);
|
|
1532
|
-
}
|
|
1533
|
-
router.push({ search });
|
|
1534
|
-
}
|
|
1535
|
-
};
|
|
1536
|
-
}
|
|
1537
|
-
const selectAsideHeaderData = (state) => state.asideHeader.asideHeaderData;
|
|
1538
|
-
const selectAsideHeaderIsCompact = (state) => state.asideHeader.isCompact;
|
|
1539
|
-
const selectAsideHeaderIsHidden = (state) => state.asideHeader.isHidden;
|
|
1540
|
-
const selectEntryContent = (state) => state.entryContent || null;
|
|
1541
|
-
const selectEntryContentRevId = (state) => state.entryContent?.revId || "";
|
|
1542
|
-
const selectEntryContentCurrentRevId = (state) => state.entryContent?.currentRevId || "";
|
|
1543
|
-
const selectRevisionsListMode = (state) => state.entryContent?.revisionsListMode;
|
|
1544
|
-
const selectIsRevisionsListCollapsed = createSelector(
|
|
1545
|
-
selectRevisionsListMode,
|
|
1546
|
-
(mode) => mode === RevisionsListMode.Collapsed
|
|
1547
|
-
);
|
|
1548
|
-
const selectRevisionsMode = (state) => state.entryContent?.revisionsMode;
|
|
1549
|
-
const selectIsRevisionsOpened = createSelector(
|
|
1550
|
-
selectRevisionsMode,
|
|
1551
|
-
(mode) => mode === RevisionsMode.Opened
|
|
1552
|
-
);
|
|
1553
|
-
const selectIsEditMode = (state) => {
|
|
1554
|
-
const scope = state.entryContent?.scope;
|
|
1555
|
-
if (scope === "dash") {
|
|
1556
|
-
return state.dash.mode;
|
|
1557
|
-
}
|
|
1558
|
-
return false;
|
|
1559
|
-
};
|
|
1560
|
-
const selectRevisions = (state) => state.entryContent?.revisions || [];
|
|
1561
|
-
const selectRevisionsItems = createSelector(
|
|
1562
|
-
selectRevisions,
|
|
1563
|
-
(items) => groupRevisionsByDate(items || [])
|
|
1564
|
-
);
|
|
1565
|
-
const selectLockToken = (state) => state.dash?.lockToken || null;
|
|
1566
|
-
const selectIsRenameWithoutReload = (state) => state.entryContent.isRenameWithoutReload;
|
|
1567
|
-
function isParsedError(error) {
|
|
1568
|
-
return isObject$1(error) && "_parsedError" in error && error._parsedError === true;
|
|
1569
|
-
}
|
|
1570
|
-
function initBeforeRequestInterceptor(axiosInstance, beforeRequest) {
|
|
1571
|
-
const requestInterceptorId = axiosInstance.interceptors.request.use(
|
|
1572
|
-
async (config2) => {
|
|
1573
|
-
await beforeRequest();
|
|
1574
|
-
return config2;
|
|
1575
|
-
},
|
|
1576
|
-
(error) => Promise.reject(error)
|
|
1577
|
-
);
|
|
1578
|
-
return { requestInterceptorId };
|
|
1579
|
-
}
|
|
1580
|
-
const NULL_HEADER = "__null__";
|
|
1581
|
-
const csrfMetaTag = document.querySelector("meta[name=csrf-token]");
|
|
1582
|
-
const client = axios.create({
|
|
1583
|
-
withCredentials: true,
|
|
1584
|
-
xsrfCookieName: ""
|
|
1585
|
-
});
|
|
1586
|
-
client.interceptors.request.use((config2) => {
|
|
1587
|
-
if (config2.headers["x-csrf-token"] === NULL_HEADER) {
|
|
1588
|
-
delete config2.headers["x-csrf-token"];
|
|
1589
|
-
} else if (csrfMetaTag) {
|
|
1590
|
-
config2.headers["x-csrf-token"] = csrfMetaTag.content;
|
|
1591
|
-
}
|
|
1592
|
-
return config2;
|
|
1593
|
-
});
|
|
1594
|
-
client.interceptors.response.use(
|
|
1595
|
-
(data) => data,
|
|
1596
|
-
(error) => {
|
|
1597
|
-
if (error?.response?.status === 451) {
|
|
1598
|
-
showReadOnlyToast();
|
|
1599
|
-
}
|
|
1600
|
-
throw error;
|
|
1601
|
-
}
|
|
1602
|
-
);
|
|
1603
|
-
axiosRetry(client, {
|
|
1604
|
-
retries: 0,
|
|
1605
|
-
retryDelay: (retryCount) => retryCount * 3e3,
|
|
1606
|
-
retryCondition: (error) => axiosRetry.isNetworkError(error) || axiosRetry.isRetryableError(error)
|
|
1607
|
-
});
|
|
1608
|
-
if (DL.AUTH_ENABLED) {
|
|
1609
|
-
initBeforeRequestInterceptor(client, refreshAuthToken);
|
|
1610
|
-
}
|
|
1611
|
-
class SDK {
|
|
1612
|
-
constructor(config2) {
|
|
1613
|
-
this._cancelableRequests = {};
|
|
1614
|
-
this.getRequestCallback = (method, schemaMethod, parentName) => (data, options) => {
|
|
1615
|
-
let requestConfig;
|
|
1616
|
-
if (parentName === "charts" && schemaMethod) {
|
|
1617
|
-
requestConfig = this.getChartsRequestConfig(data, schemaMethod);
|
|
1618
|
-
} else {
|
|
1619
|
-
requestConfig = this.getGatewayRequestConfig(method, data);
|
|
1620
|
-
}
|
|
1621
|
-
return this.sendRequest({ requestConfig, method, data, options });
|
|
1622
|
-
};
|
|
1623
|
-
if (!config2) {
|
|
1624
|
-
throw new Error("SDK needs a config");
|
|
1625
|
-
}
|
|
1626
|
-
this.config = config2;
|
|
1627
|
-
this.initSchema(this, oldSchema);
|
|
1628
|
-
}
|
|
1629
|
-
createCancelSource() {
|
|
1630
|
-
return axios.CancelToken.source();
|
|
1631
|
-
}
|
|
1632
|
-
isCancel(error) {
|
|
1633
|
-
return axios.isCancel(error);
|
|
1634
|
-
}
|
|
1635
|
-
getHeaders() {
|
|
1636
|
-
const { config: config2 } = this;
|
|
1637
|
-
const headers = {};
|
|
1638
|
-
const { setOldSdkDefaultHeaders } = registry.common.functions.getAll();
|
|
1639
|
-
setOldSdkDefaultHeaders(config2, headers);
|
|
1640
|
-
headers[ACCEPT_LANGUAGE_HEADER] = DL.USER_LANG;
|
|
1641
|
-
return headers;
|
|
1642
|
-
}
|
|
1643
|
-
getGatewayRequestConfig(method, data) {
|
|
1644
|
-
return {
|
|
1645
|
-
method: "post",
|
|
1646
|
-
url: `${this.config.endpoints.gateway}/private/rpc/v1/${method}`,
|
|
1647
|
-
responseType: "json",
|
|
1648
|
-
data,
|
|
1649
|
-
headers: this.getHeaders()
|
|
1650
|
-
};
|
|
1651
|
-
}
|
|
1652
|
-
getChartsRequestConfig(data, schemaMethod) {
|
|
1653
|
-
return schemaMethod(this.getHeaders(), this.config.endpoints, data);
|
|
1654
|
-
}
|
|
1655
|
-
initSchema(parent, initialSchema, parentName) {
|
|
1656
|
-
Object.entries(initialSchema).forEach(([method, value]) => {
|
|
1657
|
-
if (typeof value === "function") {
|
|
1658
|
-
if (!parent[method]) {
|
|
1659
|
-
parent[method] = this.getRequestCallback(method, value, parentName);
|
|
1660
|
-
}
|
|
1661
|
-
} else if (typeof value === "object") {
|
|
1662
|
-
parent[method] = {};
|
|
1663
|
-
this.initSchema(parent[method], value, method);
|
|
1664
|
-
}
|
|
1665
|
-
});
|
|
1666
|
-
}
|
|
1667
|
-
// TODO: save not only method, but data and query
|
|
1668
|
-
makeRequestCancelable({ method = "custom", requestConfig }) {
|
|
1669
|
-
const currentCancelableRequest = this._cancelableRequests[method];
|
|
1670
|
-
if (currentCancelableRequest) {
|
|
1671
|
-
currentCancelableRequest.cancel(`${method} was cancelled`);
|
|
1672
|
-
}
|
|
1673
|
-
const cancellation = this.createCancelSource();
|
|
1674
|
-
this._cancelableRequests[method] = cancellation;
|
|
1675
|
-
requestConfig.cancelToken = cancellation.token;
|
|
1676
|
-
}
|
|
1677
|
-
passTimezoneOffsetHeader(requestConfig) {
|
|
1678
|
-
if (!requestConfig.headers) {
|
|
1679
|
-
requestConfig.headers = {};
|
|
1680
|
-
}
|
|
1681
|
-
requestConfig.headers[TIMEZONE_OFFSET_HEADER] = (/* @__PURE__ */ new Date()).getTimezoneOffset().toString();
|
|
1682
|
-
}
|
|
1683
|
-
sendRequest({ requestConfig, method, options = {} }) {
|
|
1684
|
-
const { cancelable, passTimezoneOffset = true } = options;
|
|
1685
|
-
if (cancelable) {
|
|
1686
|
-
this.makeRequestCancelable({ method, requestConfig });
|
|
1687
|
-
}
|
|
1688
|
-
if (passTimezoneOffset) {
|
|
1689
|
-
this.passTimezoneOffsetHeader(requestConfig);
|
|
1690
|
-
}
|
|
1691
|
-
return client(requestConfig).then((response) => response.data);
|
|
1692
|
-
}
|
|
1693
|
-
sendFileInConnectionUploaderV2({ formData, useComEndpoint = false }, options) {
|
|
1694
|
-
const { uploaderV2, uploaderComV2 } = this.config.endpoints;
|
|
1695
|
-
const endpoint = useComEndpoint && uploaderComV2 ? uploaderComV2 : uploaderV2;
|
|
1696
|
-
const requestConfig = {
|
|
1697
|
-
method: "post",
|
|
1698
|
-
url: `${endpoint}/api/v2/files`,
|
|
1699
|
-
headers: {
|
|
1700
|
-
...this.getHeaders(),
|
|
1701
|
-
"Content-Type": "multipart/form-data",
|
|
1702
|
-
"x-request-id": `dl.${(DL.REQUEST_ID || "").slice(0, 6)}_conn`
|
|
1703
|
-
},
|
|
1704
|
-
data: formData
|
|
1705
|
-
};
|
|
1706
|
-
return this.sendRequest({ requestConfig, options });
|
|
1707
|
-
}
|
|
1708
|
-
}
|
|
1709
|
-
const sdk = new SDK(
|
|
1710
|
-
window.DL ? {
|
|
1711
|
-
endpoints: DL.ENDPOINTS,
|
|
1712
|
-
useGlobalProjectId: true,
|
|
1713
|
-
currentTenantId: DL.CURRENT_TENANT_ID
|
|
1714
|
-
} : {
|
|
1715
|
-
endpoints: {}
|
|
1716
|
-
}
|
|
1717
|
-
);
|
|
1718
|
-
const _MarkdownProvider = class _MarkdownProvider {
|
|
1719
|
-
static async init(data) {
|
|
1720
|
-
const texts = data.tabs.reduce((result, { items }) => {
|
|
1721
|
-
items.forEach((item) => {
|
|
1722
|
-
if (item.type === DashTabItemType.Text && item.data.text) {
|
|
1723
|
-
result[item.id] = item.data.text;
|
|
1724
|
-
}
|
|
1725
|
-
if (item.type === DashTabItemType.Widget) {
|
|
1726
|
-
item.data.tabs.forEach(({ id, description }) => {
|
|
1727
|
-
if (description) {
|
|
1728
|
-
result[id] = description;
|
|
1729
|
-
}
|
|
1730
|
-
});
|
|
1731
|
-
}
|
|
1732
|
-
});
|
|
1733
|
-
return result;
|
|
1734
|
-
}, {});
|
|
1735
|
-
if (Object.keys(texts).length) {
|
|
1736
|
-
try {
|
|
1737
|
-
const fetchBatchRenderedMarkdown = registry.common.functions.get(
|
|
1738
|
-
"fetchBatchRenderedMarkdown"
|
|
1739
|
-
);
|
|
1740
|
-
const markdowns = await fetchBatchRenderedMarkdown(texts);
|
|
1741
|
-
Object.entries(markdowns).forEach(([key, value]) => {
|
|
1742
|
-
_MarkdownProvider.cache[texts[key]] = value.result;
|
|
1743
|
-
_MarkdownProvider.cacheMeta[texts[key]] = value.meta;
|
|
1744
|
-
});
|
|
1745
|
-
} catch (error) {
|
|
1746
|
-
logger.logError("MarkdownProvider: batchRenderMarkdown failed", error);
|
|
1747
|
-
console.error("MARKDOWN_PROVIDER_INIT_FAILED", error);
|
|
1748
|
-
}
|
|
1749
|
-
}
|
|
1750
|
-
}
|
|
1751
|
-
// we accept {text} and give {result} for compatibility with plugins/Text in dashkit
|
|
1752
|
-
static async getMarkdown({ text }) {
|
|
1753
|
-
const cached = _MarkdownProvider.cache[text];
|
|
1754
|
-
if (cached) {
|
|
1755
|
-
return {
|
|
1756
|
-
result: cached,
|
|
1757
|
-
meta: _MarkdownProvider.cacheMeta[text]
|
|
1758
|
-
};
|
|
1759
|
-
}
|
|
1760
|
-
try {
|
|
1761
|
-
const fetchRenderedMarkdown = registry.common.functions.get("fetchRenderedMarkdown");
|
|
1762
|
-
const { result, meta } = await fetchRenderedMarkdown(text);
|
|
1763
|
-
_MarkdownProvider.cache[text] = result;
|
|
1764
|
-
_MarkdownProvider.cacheMeta[text] = meta;
|
|
1765
|
-
return { result, meta };
|
|
1766
|
-
} catch (error) {
|
|
1767
|
-
logger.logError("MarkdownProvider: renderMarkdown failed", error);
|
|
1768
|
-
console.error("MARKDOWN_PROVIDER_GET_MARKDOWN_FAILED", error);
|
|
1769
|
-
throw error;
|
|
1770
|
-
}
|
|
1771
|
-
}
|
|
1772
|
-
};
|
|
1773
|
-
_MarkdownProvider.cache = {};
|
|
1774
|
-
_MarkdownProvider.cacheMeta = {};
|
|
1775
|
-
let MarkdownProvider = _MarkdownProvider;
|
|
1776
|
-
const formUrl = (url) => {
|
|
1777
|
-
return new URL(url, window.location.origin).toString();
|
|
1778
|
-
};
|
|
1779
|
-
const navigateHelper = {
|
|
1780
|
-
redirectUrlSwitcher({ entryId, scope, type, key }) {
|
|
1781
|
-
const { getUIEntryRoute: getUIEntryRoute2 } = registry.common.functions.getAll();
|
|
1782
|
-
if (DL.IS_MOBILE && scope === EntryScope.Widget) {
|
|
1783
|
-
const name = getEntryNameByKey({ key });
|
|
1784
|
-
const slugName = makeSlugName(entryId, name);
|
|
1785
|
-
return `/preview/${slugName}`;
|
|
1786
|
-
}
|
|
1787
|
-
return getUIEntryRoute2({
|
|
1788
|
-
origin: window.location.origin,
|
|
1789
|
-
installationType: window.DL.installationType,
|
|
1790
|
-
endpoints: DL.ENDPOINTS,
|
|
1791
|
-
entry: { entryId, scope, type, key }
|
|
1792
|
-
});
|
|
1793
|
-
},
|
|
1794
|
-
open(entry) {
|
|
1795
|
-
getRouter().open(this.redirectUrlSwitcher(entry));
|
|
1796
|
-
},
|
|
1797
|
-
openNavigation() {
|
|
1798
|
-
getRouter().open(formUrl(DL.NAVIGATION_ENDPOINT));
|
|
1799
|
-
},
|
|
1800
|
-
openPlace(entry) {
|
|
1801
|
-
getRouter().open(this.redirectToPlace(entry));
|
|
1802
|
-
},
|
|
1803
|
-
redirectToPlace({ scope }) {
|
|
1804
|
-
const endpoints = DL.ENDPOINTS;
|
|
1805
|
-
const defaultUrl = DL.NAVIGATION_ENDPOINT;
|
|
1806
|
-
const url = (() => {
|
|
1807
|
-
switch (scope) {
|
|
1808
|
-
case "connection":
|
|
1809
|
-
return endpoints.connections;
|
|
1810
|
-
case "dataset":
|
|
1811
|
-
return endpoints.dataset;
|
|
1812
|
-
case "dash":
|
|
1813
|
-
return endpoints.dash;
|
|
1814
|
-
case "widget":
|
|
1815
|
-
return endpoints.widgets;
|
|
1816
|
-
default:
|
|
1817
|
-
return defaultUrl;
|
|
1818
|
-
}
|
|
1819
|
-
})();
|
|
1820
|
-
return formUrl(url);
|
|
1821
|
-
},
|
|
1822
|
-
getRedirectLocation(entry) {
|
|
1823
|
-
const hasWorkbook = entry.workbookId;
|
|
1824
|
-
if (hasWorkbook) {
|
|
1825
|
-
return `/workbooks/${entry.workbookId}`;
|
|
1826
|
-
}
|
|
1827
|
-
const urlStr = this.redirectToPlace(entry);
|
|
1828
|
-
try {
|
|
1829
|
-
const url = new URL(urlStr);
|
|
1830
|
-
return url.pathname;
|
|
1831
|
-
} catch (e) {
|
|
1832
|
-
return `/${NAVIGATION_ROUTE}`;
|
|
1833
|
-
}
|
|
1834
|
-
}
|
|
1835
|
-
};
|
|
1836
|
-
var navigateHelper_default = navigateHelper;
|
|
1837
|
-
class DatasetSDK {
|
|
1838
|
-
requiredPropertiesOnCreate = ["guid", "title", "calc_mode", "type"];
|
|
1839
|
-
requiredPropertiesOnModify = ["guid"];
|
|
1840
|
-
requiredPropertiesOnDuplicate = ["guid"];
|
|
1841
|
-
requiredPropertiesOnRemove = ["guid"];
|
|
1842
|
-
validation({ mode, field }) {
|
|
1843
|
-
const processedMode = mode.slice(0, 1).toUpperCase() + mode.slice(1);
|
|
1844
|
-
const missingRequireProperties = this[`requiredPropertiesOn${processedMode}`].reduce(
|
|
1845
|
-
(missingProperties, requiredProperty) => {
|
|
1846
|
-
if (!field[requiredProperty]) {
|
|
1847
|
-
missingProperties.push(requiredProperty);
|
|
1848
|
-
}
|
|
1849
|
-
return missingProperties;
|
|
1850
|
-
},
|
|
1851
|
-
[]
|
|
1852
|
-
);
|
|
1853
|
-
if (missingRequireProperties.length) {
|
|
1854
|
-
throw new Error(`You should specify ${missingRequireProperties.join(", ")}`);
|
|
1855
|
-
}
|
|
1856
|
-
}
|
|
1857
|
-
modifyFieldSettings({ field }) {
|
|
1858
|
-
const { title } = field;
|
|
1859
|
-
return {
|
|
1860
|
-
...field,
|
|
1861
|
-
title: title.trim()
|
|
1862
|
-
};
|
|
1863
|
-
}
|
|
1864
|
-
createField({ field, fields }) {
|
|
1865
|
-
this.validation({ mode: "create", field, fields });
|
|
1866
|
-
const fieldPrepared = this.modifyFieldSettings({ field });
|
|
1867
|
-
return [fieldPrepared, ...fields];
|
|
1868
|
-
}
|
|
1869
|
-
modifyField({ field, fields }) {
|
|
1870
|
-
this.validation({ mode: "modify", field, fields });
|
|
1871
|
-
const { guid: modifiedFieldId } = field;
|
|
1872
|
-
return fields.map((fieldCurrent) => {
|
|
1873
|
-
const { guid: fieldId } = fieldCurrent;
|
|
1874
|
-
let fieldNext = fieldCurrent;
|
|
1875
|
-
if (fieldId === modifiedFieldId) {
|
|
1876
|
-
fieldNext = this.modifyFieldSettings({
|
|
1877
|
-
field: {
|
|
1878
|
-
...fieldCurrent,
|
|
1879
|
-
...field
|
|
1880
|
-
}
|
|
1881
|
-
});
|
|
1882
|
-
}
|
|
1883
|
-
return fieldNext;
|
|
1884
|
-
});
|
|
1885
|
-
}
|
|
1886
|
-
duplicateField({ field, fields }) {
|
|
1887
|
-
this.validation({ mode: "duplicate", field, fields });
|
|
1888
|
-
const { guid: duplicatedFieldId } = field;
|
|
1889
|
-
return fields.reduce(
|
|
1890
|
-
(duplicationField, fieldCurrent) => {
|
|
1891
|
-
const { guid: fieldId } = fieldCurrent;
|
|
1892
|
-
const { fieldsNext } = duplicationField;
|
|
1893
|
-
fieldsNext.push(fieldCurrent);
|
|
1894
|
-
if (fieldId === duplicatedFieldId) {
|
|
1895
|
-
const fieldNext = {
|
|
1896
|
-
...fieldCurrent,
|
|
1897
|
-
guid: v1(),
|
|
1898
|
-
title: this.getNextTitleField({ field, fields })
|
|
1899
|
-
};
|
|
1900
|
-
duplicationField.fieldNext = fieldNext;
|
|
1901
|
-
fieldsNext.push(fieldNext);
|
|
1902
|
-
}
|
|
1903
|
-
return duplicationField;
|
|
1904
|
-
},
|
|
1905
|
-
{
|
|
1906
|
-
fieldNext: null,
|
|
1907
|
-
fieldsNext: []
|
|
1908
|
-
}
|
|
1909
|
-
);
|
|
1910
|
-
}
|
|
1911
|
-
removeField({ field, fields }) {
|
|
1912
|
-
this.validation({ mode: "remove", field, fields });
|
|
1913
|
-
const { guid: removedFieldId } = field;
|
|
1914
|
-
return fields.filter((fieldCurrent) => {
|
|
1915
|
-
const { guid: fieldId } = fieldCurrent;
|
|
1916
|
-
return fieldId !== removedFieldId;
|
|
1917
|
-
});
|
|
1918
|
-
}
|
|
1919
|
-
getNextTitleField({ field, fields }) {
|
|
1920
|
-
const { title } = field;
|
|
1921
|
-
const getTitleInfo = (currentTitle) => {
|
|
1922
|
-
const regexNameByNumberDivider = /(.*)\s\((\d+)\)$/;
|
|
1923
|
-
const matchedTitle = currentTitle.match(regexNameByNumberDivider);
|
|
1924
|
-
let name, number;
|
|
1925
|
-
if (matchedTitle) {
|
|
1926
|
-
name = matchedTitle[1];
|
|
1927
|
-
number = Number(matchedTitle[2]);
|
|
1928
|
-
} else {
|
|
1929
|
-
name = currentTitle;
|
|
1930
|
-
number = 0;
|
|
1931
|
-
}
|
|
1932
|
-
return {
|
|
1933
|
-
name,
|
|
1934
|
-
number
|
|
1935
|
-
};
|
|
1936
|
-
};
|
|
1937
|
-
const { name: currentName } = getTitleInfo(title);
|
|
1938
|
-
const allTitlesInfo = fields.map(({ title: title2 }) => getTitleInfo(title2));
|
|
1939
|
-
const nameWithoutSpaces = currentName.replace(/\s/g, "");
|
|
1940
|
-
const filteredTitlesInfo = allTitlesInfo.filter((titlesInfo) => {
|
|
1941
|
-
const { name } = titlesInfo;
|
|
1942
|
-
const currentNameWithoutSpaces = name.replace(/\s/g, "");
|
|
1943
|
-
return currentNameWithoutSpaces === nameWithoutSpaces;
|
|
1944
|
-
});
|
|
1945
|
-
const duplicationNumbers = filteredTitlesInfo.map(({ number }) => number);
|
|
1946
|
-
let duplicationNumber = Math.max(...duplicationNumbers);
|
|
1947
|
-
return `${currentName} (${++duplicationNumber})`;
|
|
1948
|
-
}
|
|
1949
|
-
}
|
|
1950
|
-
var datasetSdk_default = new DatasetSDK();
|
|
1951
|
-
const i18n$2 = I18n.keyset("component.toaster.view");
|
|
1952
|
-
const showToast = (opt) => {
|
|
1953
|
-
return (dispatch2) => {
|
|
1954
|
-
if (isEnabledFeature(Feature.ReadOnlyMode)) {
|
|
1955
|
-
return;
|
|
1956
|
-
}
|
|
1957
|
-
const { title, error, withReport, content } = opt;
|
|
1958
|
-
let actions;
|
|
1959
|
-
let type = opt.type || "info";
|
|
1960
|
-
if (error) {
|
|
1961
|
-
type = opt.type ?? "danger";
|
|
1962
|
-
actions = opt.actions || [
|
|
1963
|
-
{
|
|
1964
|
-
label: i18n$2("label_details"),
|
|
1965
|
-
onClick() {
|
|
1966
|
-
dispatch2(openDialogErrorWithTabs({ title, error, withReport }));
|
|
1967
|
-
}
|
|
1968
|
-
}
|
|
1969
|
-
];
|
|
1970
|
-
} else {
|
|
1971
|
-
actions = opt.actions;
|
|
1972
|
-
}
|
|
1973
|
-
const titleStr = title.replace(/\s/g, "");
|
|
1974
|
-
const name = opt.name || `toast-${type || "success"}-store-${titleStr}`;
|
|
1975
|
-
toaster.add({
|
|
1976
|
-
name,
|
|
1977
|
-
title,
|
|
1978
|
-
theme: type,
|
|
1979
|
-
actions,
|
|
1980
|
-
content
|
|
1981
|
-
});
|
|
1982
|
-
};
|
|
1983
|
-
};
|
|
1984
|
-
const getFakeEntry = (entryData) => {
|
|
1985
|
-
return { fake: true, ...Boolean(entryData) && { ...entryData } };
|
|
1986
|
-
};
|
|
1987
|
-
var CounterName = /* @__PURE__ */ ((CounterName2) => {
|
|
1988
|
-
CounterName2["Cross"] = "cross";
|
|
1989
|
-
CounterName2["Main"] = "main";
|
|
1990
|
-
return CounterName2;
|
|
1991
|
-
})(CounterName || {});
|
|
1992
|
-
var GoalId = /* @__PURE__ */ ((GoalId2) => {
|
|
1993
|
-
GoalId2["ShowHiddenFieldsFirstClick"] = "DL_DS_SHOW-HIDDEN-FIELDS-FIRST_CLICK";
|
|
1994
|
-
GoalId2["ShowHiddenFieldsSecondClick"] = "DL_DS_SHOW-HIDDEN-FIELDS-SECOND_CLICK";
|
|
1995
|
-
GoalId2["ChartInsightsIconShow"] = "CHART_INSIGHTS_ICON_SHOW";
|
|
1996
|
-
GoalId2["ChartsInsightsIconClck"] = "CHARTS_INSIGHTS_ICON_CLCK";
|
|
1997
|
-
GoalId2["CreatingCloudScreen"] = "CREATINGCLOUD_SCREEN";
|
|
1998
|
-
GoalId2["ChooseFolderScreen"] = "CHOOSEFOLDER_SCREEN";
|
|
1999
|
-
GoalId2["FederationUserWithoutSources"] = "FEDERATION_USER_WITHOUT_SOURCES";
|
|
2000
|
-
GoalId2["DashboardPublicAccessClick"] = "DL_DASHBOARD_PUBLIC-ACCESS_CLICK";
|
|
2001
|
-
GoalId2["DashboardPublicAccessSubmit"] = "DL_DASHBOARD_PUBLIC-ACCESS_SUBMIT";
|
|
2002
|
-
GoalId2["ConnectionCreateSubmit"] = "DL_CONNECTION-CREATE_SUBMIT";
|
|
2003
|
-
GoalId2["ConnectionEditSubmit"] = "DL_CONNECTION-EDIT_SUBMIT";
|
|
2004
|
-
GoalId2["ConnectionDeleteSubmit"] = "DL_CONNECTION-DELETE_SUBMIT";
|
|
2005
|
-
return GoalId2;
|
|
2006
|
-
})(GoalId || {});
|
|
2007
|
-
const getCounterConfigByName = (counterName) => {
|
|
2008
|
-
return DL.METRICA_COUNTERS?.find(({ name }) => name === counterName);
|
|
2009
|
-
};
|
|
2010
|
-
const reachMetricaGoalGeneric = (counterName, goalId, params) => {
|
|
2011
|
-
const counter = getCounterConfigByName(counterName);
|
|
2012
|
-
if (counter) {
|
|
2013
|
-
window.ym?.(counter.id, "reachGoal", goalId, params);
|
|
2014
|
-
}
|
|
2015
|
-
};
|
|
2016
|
-
const reachMetricaGoal = reachMetricaGoalGeneric;
|
|
2017
|
-
const fireMetricaHit = (counterName, url) => {
|
|
2018
|
-
const counter = getCounterConfigByName(counterName);
|
|
2019
|
-
if (counter) {
|
|
2020
|
-
window.ym?.(counter.id, "hit", url);
|
|
2021
|
-
}
|
|
2022
|
-
};
|
|
2023
|
-
const GET_WORKBOOK_LOADING = /* @__PURE__ */ Symbol("workbooks/GET_WORKBOOK_LOADING");
|
|
2024
|
-
const GET_WORKBOOK_SUCCESS = /* @__PURE__ */ Symbol("workbooks/GET_WORKBOOK_SUCCESS");
|
|
2025
|
-
const GET_WORKBOOK_FAILED = /* @__PURE__ */ Symbol("workbooks/GET_WORKBOOK_FAILED");
|
|
2026
|
-
const GET_WORKBOOK_ENTRIES_LOADING = /* @__PURE__ */ Symbol("workbooks/GET_WORKBOOK_ENTRIES_LOADING");
|
|
2027
|
-
const GET_WORKBOOK_ENTRIES_SUCCESS = /* @__PURE__ */ Symbol("workbooks/GET_WORKBOOK_ENTRIES_SUCCESS");
|
|
2028
|
-
const GET_WORKBOOK_ENTRIES_FAILED = /* @__PURE__ */ Symbol("workbooks/GET_WORKBOOK_ENTRIES_FAILED");
|
|
2029
|
-
const GET_WORKBOOK_SHARED_ENTRIES_LOADING = /* @__PURE__ */ Symbol(
|
|
2030
|
-
"workbooks/GET_WORKBOOK_SHARED_ENTRIES_LOADING"
|
|
2031
|
-
);
|
|
2032
|
-
const GET_WORKBOOK_SHARED_ENTRIES_SUCCESS = /* @__PURE__ */ Symbol(
|
|
2033
|
-
"workbooks/GET_WORKBOOK_SHARED_ENTRIES_SUCCESS"
|
|
2034
|
-
);
|
|
2035
|
-
const GET_WORKBOOK_SHARED_ENTRIES_FAILED = /* @__PURE__ */ Symbol(
|
|
2036
|
-
"workbooks/GET_WORKBOOK_SHARED_ENTRIES_FAILED"
|
|
2037
|
-
);
|
|
2038
|
-
const BIND_SHARED_ENTRY_TO_WORKBOOK_LOADING = /* @__PURE__ */ Symbol(
|
|
2039
|
-
"workbooks/BIND_SHARED_ENTRY_TO_WORKBOOK_LOADING"
|
|
2040
|
-
);
|
|
2041
|
-
const BIND_SHARED_ENTRY_TO_WORKBOOK_SUCCESS = /* @__PURE__ */ Symbol(
|
|
2042
|
-
"workbooks/BIND_SHARED_ENTRY_TO_WORKBOOK_SUCCESS"
|
|
2043
|
-
);
|
|
2044
|
-
const BIND_SHARED_ENTRY_TO_WORKBOOK_FAILED = /* @__PURE__ */ Symbol(
|
|
2045
|
-
"workbooks/BIND_SHARED_ENTRY_TO_WORKBOOK_FAILED"
|
|
2046
|
-
);
|
|
2047
|
-
const GET_ALL_WORKBOOK_ENTRIES_SEPARATELY_SUCCESS = /* @__PURE__ */ Symbol(
|
|
2048
|
-
"workbooks/GET_ALL_WORKBOOK_ENTRIES_SEPARATELY_SUCCESS"
|
|
2049
|
-
);
|
|
2050
|
-
const RESET_WORKBOOK_ENTRIES = /* @__PURE__ */ Symbol("workbooks/RESET_WORKBOOK_ENTRIES");
|
|
2051
|
-
const RESET_WORKBOOK_SHARED_ENTRIES = /* @__PURE__ */ Symbol("workbooks/RESET_WORKBOOK_SHARED_ENTRIES");
|
|
2052
|
-
const RESET_WORKBOOK_ENTRIES_BY_SCOPE = /* @__PURE__ */ Symbol("workbooks/RESET_WORKBOOK_ENTRIES_BY_SCOPE");
|
|
2053
|
-
const GET_WORKBOOK_BREADCRUMBS_LOADING = /* @__PURE__ */ Symbol(
|
|
2054
|
-
"workbooks/GET_WORKBOOK_BREADCRUMBS_LOADING"
|
|
2055
|
-
);
|
|
2056
|
-
const GET_WORKBOOK_BREADCRUMBS_SUCCESS = /* @__PURE__ */ Symbol(
|
|
2057
|
-
"workbooks/GET_WORKBOOK_BREADCRUMBS_SUCCESS"
|
|
2058
|
-
);
|
|
2059
|
-
const GET_WORKBOOK_BREADCRUMBS_FAILED = /* @__PURE__ */ Symbol("workbooks/GET_WORKBOOK_BREADCRUMBS_FAILED");
|
|
2060
|
-
const SET_CREATE_WORKBOOK_ENTRY_TYPE = /* @__PURE__ */ Symbol("workbooks/SET_CREATE_WORKBOOK_ENTRY_TYPE");
|
|
2061
|
-
const RESET_CREATE_WORKBOOK_ENTRY_TYPE = /* @__PURE__ */ Symbol(
|
|
2062
|
-
"workbooks/RESET_CREATE_WORKBOOK_ENTRY_TYPE"
|
|
2063
|
-
);
|
|
2064
|
-
const RENAME_ENTRY_LOADING = /* @__PURE__ */ Symbol("workbooks/RENAME_ENTRY_LOADING");
|
|
2065
|
-
const RENAME_ENTRY_SUCCESS = /* @__PURE__ */ Symbol("workbooks/RENAME_ENTRY_SUCCESS");
|
|
2066
|
-
const RENAME_ENTRY_FAILED = /* @__PURE__ */ Symbol("workbooks/RENAME_ENTRY_FAILED");
|
|
2067
|
-
const RENAME_ENTRY_INLINE = /* @__PURE__ */ Symbol("workbooks/RENAME_ENTRY_INLINE");
|
|
2068
|
-
const DELETE_ENTRY_LOADING = /* @__PURE__ */ Symbol("workbooks/DELETE_ENTRY_LOADING");
|
|
2069
|
-
const DELETE_ENTRY_SUCCESS = /* @__PURE__ */ Symbol("workbooks/DELETE_ENTRY_SUCCESS");
|
|
2070
|
-
const DELETE_ENTRY_FAILED = /* @__PURE__ */ Symbol("workbooks/DELETE_ENTRY_FAILED");
|
|
2071
|
-
const DELETE_ENTRY_INLINE = /* @__PURE__ */ Symbol("workbooks/DELETE_ENTRY_INLINE");
|
|
2072
|
-
const CHANGE_FAVORITE_ENTRY_LOADING = /* @__PURE__ */ Symbol("workbooks/CHANGE_FAVORITE_ENTRY_LOADING");
|
|
2073
|
-
const CHANGE_FAVORITE_ENTRY_SUCCESS = /* @__PURE__ */ Symbol("workbooks/CHANGE_FAVORITE_ENTRY_SUCCESS");
|
|
2074
|
-
const CHANGE_FAVORITE_ENTRY_FAILED = /* @__PURE__ */ Symbol("workbooks/CHANGE_FAVORITE_ENTRY_FAILED");
|
|
2075
|
-
const CHANGE_FAVORITE_ENTRY_INLINE = /* @__PURE__ */ Symbol("workbooks/CHANGE_FAVORITE_ENTRY_INLINE");
|
|
2076
|
-
const RESET_WORKBOOK_STATE = /* @__PURE__ */ Symbol("workbooks/RESET_WORKBOOK_STATE");
|
|
2077
|
-
const CHANGE_FILTERS = /* @__PURE__ */ Symbol("workbooks/CHANGE_FILTERS");
|
|
2078
|
-
const ADD_WORKBOOK_INFO = /* @__PURE__ */ Symbol("workbooks/ADD_WORKBOOK_INFO");
|
|
2079
|
-
const ADD_COLLECTION_BREADCRUMBS = /* @__PURE__ */ Symbol("workbooks/ADD_COLLECTION_BREADCRUMBS");
|
|
2080
|
-
const RESET_WORKBOOK_PERMISSIONS = /* @__PURE__ */ Symbol("workbooks/RESET_WORKBOOK_PERMISSIONS");
|
|
2081
|
-
const SET_WORKBOOK = /* @__PURE__ */ Symbol("workbooks/SET_WORKBOOK");
|
|
2082
|
-
const getWorkbook = ({ workbookId }) => {
|
|
2083
|
-
return async (dispatch2) => {
|
|
2084
|
-
dispatch2({
|
|
2085
|
-
type: GET_WORKBOOK_LOADING
|
|
2086
|
-
});
|
|
2087
|
-
try {
|
|
2088
|
-
const data = await getSdk().sdk.us.getWorkbook(
|
|
2089
|
-
{
|
|
2090
|
-
workbookId,
|
|
2091
|
-
includePermissionsInfo: true
|
|
2092
|
-
},
|
|
2093
|
-
{ concurrentId: "workbooks/getWorkbook" }
|
|
2094
|
-
);
|
|
2095
|
-
dispatch2({
|
|
2096
|
-
type: GET_WORKBOOK_SUCCESS,
|
|
2097
|
-
data
|
|
2098
|
-
});
|
|
2099
|
-
} catch (error) {
|
|
2100
|
-
if (getSdk().sdk.isCancel(error)) {
|
|
2101
|
-
return;
|
|
2102
|
-
}
|
|
2103
|
-
logger.logError("workbooks/getWorkbook failed", error);
|
|
2104
|
-
dispatch2({
|
|
2105
|
-
type: GET_WORKBOOK_FAILED,
|
|
2106
|
-
error
|
|
2107
|
-
});
|
|
2108
|
-
}
|
|
2109
|
-
};
|
|
2110
|
-
};
|
|
2111
|
-
const getWorkbookEntries = ({
|
|
2112
|
-
workbookId,
|
|
2113
|
-
filters,
|
|
2114
|
-
scope,
|
|
2115
|
-
nextPageToken,
|
|
2116
|
-
pageSize = 200,
|
|
2117
|
-
ignoreConcurrentId = false
|
|
2118
|
-
}) => {
|
|
2119
|
-
return async (dispatch2) => {
|
|
2120
|
-
dispatch2({
|
|
2121
|
-
type: GET_WORKBOOK_ENTRIES_LOADING
|
|
2122
|
-
});
|
|
2123
|
-
const args = {
|
|
2124
|
-
workbookId,
|
|
2125
|
-
pageSize,
|
|
2126
|
-
page: Number(nextPageToken || 0),
|
|
2127
|
-
orderBy: {
|
|
2128
|
-
field: filters.orderField,
|
|
2129
|
-
direction: filters.orderDirection
|
|
2130
|
-
},
|
|
2131
|
-
scope
|
|
2132
|
-
};
|
|
2133
|
-
if (filters.filterString) {
|
|
2134
|
-
args.filters = {
|
|
2135
|
-
name: filters.filterString
|
|
2136
|
-
};
|
|
2137
|
-
}
|
|
2138
|
-
try {
|
|
2139
|
-
const data = await getSdk().sdk.us.getWorkbookEntries(args, {
|
|
2140
|
-
concurrentId: ignoreConcurrentId ? void 0 : "workbooks/getWorkbookEntries"
|
|
2141
|
-
});
|
|
2142
|
-
dispatch2({
|
|
2143
|
-
type: GET_WORKBOOK_ENTRIES_SUCCESS,
|
|
2144
|
-
data
|
|
2145
|
-
});
|
|
2146
|
-
return data;
|
|
2147
|
-
} catch (error) {
|
|
2148
|
-
if (getSdk().sdk.isCancel(error)) {
|
|
2149
|
-
return null;
|
|
2150
|
-
}
|
|
2151
|
-
logger.logError("workbooks/getWorkbookEntries failed", error);
|
|
2152
|
-
dispatch2(
|
|
2153
|
-
showToast({
|
|
2154
|
-
title: error.message,
|
|
2155
|
-
error
|
|
2156
|
-
})
|
|
2157
|
-
);
|
|
2158
|
-
dispatch2({
|
|
2159
|
-
type: GET_WORKBOOK_ENTRIES_FAILED,
|
|
2160
|
-
error
|
|
2161
|
-
});
|
|
2162
|
-
return null;
|
|
2163
|
-
}
|
|
2164
|
-
};
|
|
2165
|
-
};
|
|
2166
|
-
const getWorkbookSharedEntries = ({
|
|
2167
|
-
workbookId,
|
|
2168
|
-
filters,
|
|
2169
|
-
scope,
|
|
2170
|
-
nextPageToken,
|
|
2171
|
-
pageSize = 200,
|
|
2172
|
-
ignoreConcurrentId = false
|
|
2173
|
-
}) => {
|
|
2174
|
-
return async (dispatch2) => {
|
|
2175
|
-
dispatch2({
|
|
2176
|
-
type: GET_WORKBOOK_SHARED_ENTRIES_LOADING
|
|
2177
|
-
});
|
|
2178
|
-
const args = {
|
|
2179
|
-
workbookId,
|
|
2180
|
-
pageSize,
|
|
2181
|
-
includePermissionsInfo: true,
|
|
2182
|
-
page: Number(nextPageToken || 0),
|
|
2183
|
-
orderBy: {
|
|
2184
|
-
field: filters.orderField,
|
|
2185
|
-
direction: filters.orderDirection
|
|
2186
|
-
},
|
|
2187
|
-
scope
|
|
2188
|
-
};
|
|
2189
|
-
if (filters.filterString) {
|
|
2190
|
-
args.filters = {
|
|
2191
|
-
name: filters.filterString
|
|
2192
|
-
};
|
|
2193
|
-
}
|
|
2194
|
-
try {
|
|
2195
|
-
const data = await getSdk().sdk.us.getWorkbookSharedEntries(args, {
|
|
2196
|
-
concurrentId: ignoreConcurrentId ? void 0 : "workbooks/getWorkbookSharedEntries"
|
|
2197
|
-
});
|
|
2198
|
-
dispatch2({
|
|
2199
|
-
type: GET_WORKBOOK_SHARED_ENTRIES_SUCCESS,
|
|
2200
|
-
data
|
|
2201
|
-
});
|
|
2202
|
-
return data;
|
|
2203
|
-
} catch (error) {
|
|
2204
|
-
if (getSdk().sdk.isCancel(error)) {
|
|
2205
|
-
return null;
|
|
2206
|
-
}
|
|
2207
|
-
logger.logError("workbooks/getWorkbookSharedEntries failed", error);
|
|
2208
|
-
dispatch2(
|
|
2209
|
-
showToast({
|
|
2210
|
-
title: error.message,
|
|
2211
|
-
error
|
|
2212
|
-
})
|
|
2213
|
-
);
|
|
2214
|
-
dispatch2({
|
|
2215
|
-
type: GET_WORKBOOK_SHARED_ENTRIES_FAILED,
|
|
2216
|
-
error
|
|
2217
|
-
});
|
|
2218
|
-
return null;
|
|
2219
|
-
}
|
|
2220
|
-
};
|
|
2221
|
-
};
|
|
2222
|
-
const bindSharedEntryToWorkbook = ({
|
|
2223
|
-
sourceId,
|
|
2224
|
-
targetId,
|
|
2225
|
-
delegation
|
|
2226
|
-
}) => {
|
|
2227
|
-
return async (dispatch2) => {
|
|
2228
|
-
dispatch2({
|
|
2229
|
-
type: BIND_SHARED_ENTRY_TO_WORKBOOK_LOADING
|
|
2230
|
-
});
|
|
2231
|
-
try {
|
|
2232
|
-
await getSdk().sdk.us.createSharedEntryBinding(
|
|
2233
|
-
{
|
|
2234
|
-
sourceId,
|
|
2235
|
-
targetId,
|
|
2236
|
-
delegation
|
|
2237
|
-
},
|
|
2238
|
-
{ concurrentId: "workbooks/bindSharedEntryToWorkbook", retries: 2 }
|
|
2239
|
-
);
|
|
2240
|
-
dispatch2({
|
|
2241
|
-
type: BIND_SHARED_ENTRY_TO_WORKBOOK_SUCCESS
|
|
2242
|
-
});
|
|
2243
|
-
return true;
|
|
2244
|
-
} catch (error) {
|
|
2245
|
-
logger.logError("workbooks/bindSharedEntryToWorkbook failed", error);
|
|
2246
|
-
dispatch2(
|
|
2247
|
-
showToast({
|
|
2248
|
-
title: error.message,
|
|
2249
|
-
error
|
|
2250
|
-
})
|
|
2251
|
-
);
|
|
2252
|
-
dispatch2({
|
|
2253
|
-
type: BIND_SHARED_ENTRY_TO_WORKBOOK_FAILED,
|
|
2254
|
-
error
|
|
2255
|
-
});
|
|
2256
|
-
}
|
|
2257
|
-
return false;
|
|
2258
|
-
};
|
|
2259
|
-
};
|
|
2260
|
-
const getAllWorkbookEntriesSeparately = ({
|
|
2261
|
-
workbookId,
|
|
2262
|
-
filters,
|
|
2263
|
-
scopes,
|
|
2264
|
-
pageSize = 200
|
|
2265
|
-
}) => {
|
|
2266
|
-
return async (dispatch2) => {
|
|
2267
|
-
dispatch2({
|
|
2268
|
-
type: GET_WORKBOOK_ENTRIES_LOADING
|
|
2269
|
-
});
|
|
2270
|
-
const args = {
|
|
2271
|
-
workbookId,
|
|
2272
|
-
pageSize,
|
|
2273
|
-
page: 0,
|
|
2274
|
-
orderBy: {
|
|
2275
|
-
field: filters.orderField,
|
|
2276
|
-
direction: filters.orderDirection
|
|
2277
|
-
}
|
|
2278
|
-
};
|
|
2279
|
-
if (filters.filterString) {
|
|
2280
|
-
args.filters = {
|
|
2281
|
-
name: filters.filterString
|
|
2282
|
-
};
|
|
2283
|
-
}
|
|
2284
|
-
const promises = scopes.map((scope) => {
|
|
2285
|
-
return getSdk().sdk.us.getWorkbookEntries({
|
|
2286
|
-
...args,
|
|
2287
|
-
scope
|
|
2288
|
-
});
|
|
2289
|
-
});
|
|
2290
|
-
const results = await Promise.allSettled(promises);
|
|
2291
|
-
const data = results.map((result) => {
|
|
2292
|
-
if (result.status === "fulfilled") {
|
|
2293
|
-
return result.value;
|
|
2294
|
-
}
|
|
2295
|
-
if (result.status === "rejected") {
|
|
2296
|
-
logger.logError("workbooks/getWorkbookEntries failed", result.reason);
|
|
2297
|
-
return null;
|
|
2298
|
-
}
|
|
2299
|
-
return null;
|
|
2300
|
-
});
|
|
2301
|
-
dispatch2({
|
|
2302
|
-
type: GET_ALL_WORKBOOK_ENTRIES_SEPARATELY_SUCCESS,
|
|
2303
|
-
data
|
|
2304
|
-
});
|
|
2305
|
-
return data;
|
|
2306
|
-
};
|
|
2307
|
-
};
|
|
2308
|
-
const resetWorkbookEntries = () => {
|
|
2309
|
-
return (dispatch2) => {
|
|
2310
|
-
dispatch2({ type: RESET_WORKBOOK_ENTRIES });
|
|
2311
|
-
};
|
|
2312
|
-
};
|
|
2313
|
-
const resetWorkbookSharedEntries = () => {
|
|
2314
|
-
return (dispatch2) => {
|
|
2315
|
-
dispatch2({ type: RESET_WORKBOOK_SHARED_ENTRIES });
|
|
2316
|
-
};
|
|
2317
|
-
};
|
|
2318
|
-
const resetWorkbookEntriesByScope = (scope) => {
|
|
2319
|
-
return (dispatch2) => {
|
|
2320
|
-
dispatch2({ type: RESET_WORKBOOK_ENTRIES_BY_SCOPE, data: scope });
|
|
2321
|
-
};
|
|
2322
|
-
};
|
|
2323
|
-
const setCreateWorkbookEntryType = (type) => {
|
|
2324
|
-
return (dispatch2) => {
|
|
2325
|
-
dispatch2({
|
|
2326
|
-
type: SET_CREATE_WORKBOOK_ENTRY_TYPE,
|
|
2327
|
-
data: type
|
|
2328
|
-
});
|
|
2329
|
-
};
|
|
2330
|
-
};
|
|
2331
|
-
const resetCreateWorkbookEntryType = () => {
|
|
2332
|
-
return (dispatch2) => {
|
|
2333
|
-
dispatch2({ type: RESET_CREATE_WORKBOOK_ENTRY_TYPE });
|
|
2334
|
-
};
|
|
2335
|
-
};
|
|
2336
|
-
const renameEntry = ({
|
|
2337
|
-
entryId,
|
|
2338
|
-
name,
|
|
2339
|
-
updateInline = false
|
|
2340
|
-
}) => {
|
|
2341
|
-
return (dispatch2) => {
|
|
2342
|
-
dispatch2({
|
|
2343
|
-
type: RENAME_ENTRY_LOADING
|
|
2344
|
-
});
|
|
2345
|
-
return getSdk().sdk.us.renameEntry({
|
|
2346
|
-
entryId,
|
|
2347
|
-
name
|
|
2348
|
-
}).then((data) => {
|
|
2349
|
-
dispatch2({
|
|
2350
|
-
type: RENAME_ENTRY_SUCCESS,
|
|
2351
|
-
data
|
|
2352
|
-
});
|
|
2353
|
-
if (updateInline) {
|
|
2354
|
-
dispatch2({
|
|
2355
|
-
type: RENAME_ENTRY_INLINE,
|
|
2356
|
-
data
|
|
2357
|
-
});
|
|
2358
|
-
}
|
|
2359
|
-
return data;
|
|
2360
|
-
}).catch((error) => {
|
|
2361
|
-
if (!getSdk().sdk.isCancel(error)) {
|
|
2362
|
-
logger.logError("workbooks/renameEntry failed", error);
|
|
2363
|
-
dispatch2(
|
|
2364
|
-
showToast({
|
|
2365
|
-
title: error.message,
|
|
2366
|
-
error
|
|
2367
|
-
})
|
|
2368
|
-
);
|
|
2369
|
-
}
|
|
2370
|
-
dispatch2({
|
|
2371
|
-
type: RENAME_ENTRY_FAILED,
|
|
2372
|
-
error
|
|
2373
|
-
});
|
|
2374
|
-
return null;
|
|
2375
|
-
});
|
|
2376
|
-
};
|
|
2377
|
-
};
|
|
2378
|
-
const changeFavoriteEntry = ({
|
|
2379
|
-
entryId,
|
|
2380
|
-
isFavorite = false,
|
|
2381
|
-
updateInline = false
|
|
2382
|
-
}) => {
|
|
2383
|
-
return (dispatch2) => {
|
|
2384
|
-
const thenHandler = (data) => {
|
|
2385
|
-
dispatch2({
|
|
2386
|
-
type: CHANGE_FAVORITE_ENTRY_SUCCESS,
|
|
2387
|
-
data
|
|
2388
|
-
});
|
|
2389
|
-
return data;
|
|
2390
|
-
};
|
|
2391
|
-
const catchHandler = (error) => {
|
|
2392
|
-
if (!getSdk().sdk.isCancel(error)) {
|
|
2393
|
-
logger.logError("workbooks/changeFavoriteEntry failed", error);
|
|
2394
|
-
dispatch2(
|
|
2395
|
-
showToast({
|
|
2396
|
-
title: error.message,
|
|
2397
|
-
error
|
|
2398
|
-
})
|
|
2399
|
-
);
|
|
2400
|
-
}
|
|
2401
|
-
dispatch2({
|
|
2402
|
-
type: CHANGE_FAVORITE_ENTRY_FAILED,
|
|
2403
|
-
error
|
|
2404
|
-
});
|
|
2405
|
-
if (updateInline) {
|
|
2406
|
-
dispatch2({
|
|
2407
|
-
type: CHANGE_FAVORITE_ENTRY_INLINE,
|
|
2408
|
-
data: {
|
|
2409
|
-
entryId,
|
|
2410
|
-
isFavorite: !isFavorite
|
|
2411
|
-
}
|
|
2412
|
-
});
|
|
2413
|
-
}
|
|
2414
|
-
return null;
|
|
2415
|
-
};
|
|
2416
|
-
dispatch2({
|
|
2417
|
-
type: CHANGE_FAVORITE_ENTRY_LOADING
|
|
2418
|
-
});
|
|
2419
|
-
if (updateInline) {
|
|
2420
|
-
dispatch2({
|
|
2421
|
-
type: CHANGE_FAVORITE_ENTRY_INLINE,
|
|
2422
|
-
data: {
|
|
2423
|
-
entryId,
|
|
2424
|
-
isFavorite
|
|
2425
|
-
}
|
|
2426
|
-
});
|
|
2427
|
-
}
|
|
2428
|
-
if (isFavorite) {
|
|
2429
|
-
return getSdk().sdk.us.addFavorite({
|
|
2430
|
-
entryId
|
|
2431
|
-
}).then(thenHandler).catch(catchHandler);
|
|
2432
|
-
} else {
|
|
2433
|
-
return getSdk().sdk.us.deleteFavorite({
|
|
2434
|
-
entryId
|
|
2435
|
-
}).then(thenHandler).catch(catchHandler);
|
|
2436
|
-
}
|
|
2437
|
-
};
|
|
2438
|
-
};
|
|
2439
|
-
const deleteEntry = ({
|
|
2440
|
-
entry,
|
|
2441
|
-
deleteInline = false
|
|
2442
|
-
}) => {
|
|
2443
|
-
return (dispatch2) => {
|
|
2444
|
-
const { entryId, scope } = entry;
|
|
2445
|
-
dispatch2({
|
|
2446
|
-
type: DELETE_ENTRY_LOADING
|
|
2447
|
-
});
|
|
2448
|
-
return getSdk().sdk.mix.deleteEntry({
|
|
2449
|
-
entryId,
|
|
2450
|
-
scope
|
|
2451
|
-
}).then((data) => {
|
|
2452
|
-
if (scope === EntryScope.Connection) {
|
|
2453
|
-
reachMetricaGoal(CounterName.Main, GoalId.ConnectionDeleteSubmit, {
|
|
2454
|
-
type: entry.type
|
|
2455
|
-
});
|
|
2456
|
-
}
|
|
2457
|
-
dispatch2({
|
|
2458
|
-
type: DELETE_ENTRY_SUCCESS,
|
|
2459
|
-
data
|
|
2460
|
-
});
|
|
2461
|
-
if (deleteInline) {
|
|
2462
|
-
dispatch2({
|
|
2463
|
-
type: DELETE_ENTRY_INLINE,
|
|
2464
|
-
data: {
|
|
2465
|
-
entryId
|
|
2466
|
-
}
|
|
2467
|
-
});
|
|
2468
|
-
}
|
|
2469
|
-
return data;
|
|
2470
|
-
}).catch((error) => {
|
|
2471
|
-
if (!getSdk().sdk.isCancel(error)) {
|
|
2472
|
-
logger.logError("workbooks/deleteEntry failed", error);
|
|
2473
|
-
dispatch2(
|
|
2474
|
-
showToast({
|
|
2475
|
-
title: error.message,
|
|
2476
|
-
error
|
|
2477
|
-
})
|
|
2478
|
-
);
|
|
2479
|
-
}
|
|
2480
|
-
dispatch2({
|
|
2481
|
-
type: DELETE_ENTRY_FAILED,
|
|
2482
|
-
error
|
|
2483
|
-
});
|
|
2484
|
-
return null;
|
|
2485
|
-
});
|
|
2486
|
-
};
|
|
2487
|
-
};
|
|
2488
|
-
const resetWorkbookState = () => {
|
|
2489
|
-
return (dispatch2) => {
|
|
2490
|
-
dispatch2({ type: RESET_WORKBOOK_STATE });
|
|
2491
|
-
};
|
|
2492
|
-
};
|
|
2493
|
-
const changeFilters = (data) => {
|
|
2494
|
-
return (dispatch2) => {
|
|
2495
|
-
dispatch2({ type: CHANGE_FILTERS, data });
|
|
2496
|
-
};
|
|
2497
|
-
};
|
|
2498
|
-
const addWorkbookInfo = (workbookId, withBreadcrumbs = false) => {
|
|
2499
|
-
return async (dispatch2) => {
|
|
2500
|
-
const workbook = await getSdk().sdk.us.getWorkbook({
|
|
2501
|
-
workbookId,
|
|
2502
|
-
includePermissionsInfo: true
|
|
2503
|
-
});
|
|
2504
|
-
let workbookBreadcrumbs = null;
|
|
2505
|
-
let requestedWithBreadcrumbs = false;
|
|
2506
|
-
if (withBreadcrumbs && workbook.collectionId) {
|
|
2507
|
-
try {
|
|
2508
|
-
workbookBreadcrumbs = await getSdk().sdk.us.getCollectionBreadcrumbs(
|
|
2509
|
-
{
|
|
2510
|
-
collectionId: workbook.collectionId
|
|
2511
|
-
},
|
|
2512
|
-
{ concurrentId: "workbooks/getCollectionBreadcrumbs" }
|
|
2513
|
-
);
|
|
2514
|
-
dispatch2({
|
|
2515
|
-
type: ADD_WORKBOOK_INFO,
|
|
2516
|
-
data: {
|
|
2517
|
-
workbookId,
|
|
2518
|
-
workbookName: workbook.title,
|
|
2519
|
-
workbookPermissions: workbook.permissions,
|
|
2520
|
-
workbookBreadcrumbs
|
|
2521
|
-
}
|
|
2522
|
-
});
|
|
2523
|
-
requestedWithBreadcrumbs = true;
|
|
2524
|
-
} catch (e) {
|
|
2525
|
-
logger.logError("workbooks/getCollectionBreadcrumbs failed", e);
|
|
2526
|
-
}
|
|
2527
|
-
}
|
|
2528
|
-
if (!requestedWithBreadcrumbs) {
|
|
2529
|
-
dispatch2({
|
|
2530
|
-
type: ADD_WORKBOOK_INFO,
|
|
2531
|
-
data: {
|
|
2532
|
-
workbookId,
|
|
2533
|
-
workbookName: workbook.title,
|
|
2534
|
-
workbookPermissions: workbook.permissions
|
|
2535
|
-
}
|
|
2536
|
-
});
|
|
2537
|
-
}
|
|
2538
|
-
};
|
|
2539
|
-
};
|
|
2540
|
-
const addCollectionBreadcrumbs = ({ collectionId }) => {
|
|
2541
|
-
return async (dispatch2) => {
|
|
2542
|
-
try {
|
|
2543
|
-
const breadcrumbs = await getSdk().sdk.us.getCollectionBreadcrumbs(
|
|
2544
|
-
{
|
|
2545
|
-
collectionId
|
|
2546
|
-
},
|
|
2547
|
-
{ concurrentId: "workbooks/getCollectionBreadcrumbs" }
|
|
2548
|
-
);
|
|
2549
|
-
dispatch2({
|
|
2550
|
-
type: ADD_COLLECTION_BREADCRUMBS,
|
|
2551
|
-
data: breadcrumbs
|
|
2552
|
-
});
|
|
2553
|
-
} catch (e) {
|
|
2554
|
-
logger.logError("workbooks/getCollectionBreadcrumbs failed", e);
|
|
2555
|
-
}
|
|
2556
|
-
};
|
|
2557
|
-
};
|
|
2558
|
-
const resetWorkbookPermissions = () => {
|
|
2559
|
-
return (dispatch2) => {
|
|
2560
|
-
dispatch2({ type: RESET_WORKBOOK_PERMISSIONS });
|
|
2561
|
-
};
|
|
2562
|
-
};
|
|
2563
|
-
const selectGetWorkbook = (state) => state.workbooks.getWorkbook;
|
|
2564
|
-
const selectGetWorkbookEntries = (state) => state.workbooks.getWorkbookEntries;
|
|
2565
|
-
const selectGetWorkbookSharedEntries = (state) => state.workbooks.getWorkbookSharedEntries;
|
|
2566
|
-
const selectGetWorkbookBreadcrumbs = (state) => state.workbooks.getWorkbookBreadcrumbs;
|
|
2567
|
-
const selectCreateWorkbookEntry = (state) => state.workbooks.createWorkbookEntry;
|
|
2568
|
-
const selectWorkbookItems = (state) => state.workbooks.items;
|
|
2569
|
-
const selectWorkbookSharedItems = (state) => state.workbooks.sharedItems;
|
|
2570
|
-
const selectRenameEntry = (state) => state.workbooks.renameEntry;
|
|
2571
|
-
const selectDeleteEntry = (state) => state.workbooks.deleteEntry;
|
|
2572
|
-
const selectWorkbookPermissions = (state) => state.workbooks.workbookPermissions;
|
|
2573
|
-
const selectEntityBreadcrumbs = (state) => state.workbooks.entityBreadcrumbs;
|
|
2574
|
-
createSelector(
|
|
2575
|
-
[selectGetWorkbook, selectGetWorkbookBreadcrumbs],
|
|
2576
|
-
(getWorkbook2, getWorkbookBreadcrumbs) => getWorkbook2.isLoading || getWorkbookBreadcrumbs.isLoading
|
|
2577
|
-
);
|
|
2578
|
-
const selectPageError = createSelector(
|
|
2579
|
-
[selectGetWorkbook],
|
|
2580
|
-
(getWorkbook2) => getWorkbook2.error
|
|
2581
|
-
);
|
|
2582
|
-
const selectWorkbook = createSelector(
|
|
2583
|
-
[selectGetWorkbook],
|
|
2584
|
-
(getWorkbook2) => getWorkbook2.data
|
|
2585
|
-
);
|
|
2586
|
-
const selectCollectionId = createSelector(
|
|
2587
|
-
[selectGetWorkbook],
|
|
2588
|
-
(getWorkbook2) => getWorkbook2.data?.collectionId || null
|
|
2589
|
-
);
|
|
2590
|
-
const selectWorkbookId = createSelector(
|
|
2591
|
-
[selectGetWorkbook],
|
|
2592
|
-
(getWorkbook2) => getWorkbook2.data?.workbookId || null
|
|
2593
|
-
);
|
|
2594
|
-
createSelector(
|
|
2595
|
-
[selectGetWorkbookBreadcrumbs],
|
|
2596
|
-
(getWorkbookBreadcrumbs) => getWorkbookBreadcrumbs.data
|
|
2597
|
-
);
|
|
2598
|
-
createSelector(
|
|
2599
|
-
[selectGetWorkbookBreadcrumbs],
|
|
2600
|
-
(getWorkbookBreadcrumbs) => getWorkbookBreadcrumbs.error
|
|
2601
|
-
);
|
|
2602
|
-
const selectWorkbookEntriesIsLoading = createSelector(
|
|
2603
|
-
[selectGetWorkbookEntries],
|
|
2604
|
-
(getWorkbookEntries2) => getWorkbookEntries2.isLoading
|
|
2605
|
-
);
|
|
2606
|
-
const selectWorkbookSharedEntriesIsLoading = createSelector(
|
|
2607
|
-
[selectGetWorkbookSharedEntries],
|
|
2608
|
-
(getWorkbookSharedEntries2) => getWorkbookSharedEntries2.isLoading
|
|
2609
|
-
);
|
|
2610
|
-
const selectNextPageToken = createSelector(
|
|
2611
|
-
[selectGetWorkbookEntries],
|
|
2612
|
-
(getWorkbookEntries2) => getWorkbookEntries2.data?.nextPageToken
|
|
2613
|
-
);
|
|
2614
|
-
const selectSharedNextPageToken = createSelector(
|
|
2615
|
-
[selectGetWorkbookSharedEntries],
|
|
2616
|
-
(getWorkbookSharedEntries2) => getWorkbookSharedEntries2.data?.nextPageToken
|
|
2617
|
-
);
|
|
2618
|
-
const selectWorkbookEntriesError = createSelector(
|
|
2619
|
-
[selectGetWorkbookEntries],
|
|
2620
|
-
(getWorkbookEntries2) => getWorkbookEntries2.error
|
|
2621
|
-
);
|
|
2622
|
-
const selectWorkbookSharedEntriesError = createSelector(
|
|
2623
|
-
[selectGetWorkbookSharedEntries],
|
|
2624
|
-
(getWorkbookSharedEntries2) => getWorkbookSharedEntries2.error
|
|
2625
|
-
);
|
|
2626
|
-
const selectCreateWorkbookEntryType = createSelector(
|
|
2627
|
-
[selectCreateWorkbookEntry],
|
|
2628
|
-
(createWorkbookEntry) => createWorkbookEntry.type
|
|
2629
|
-
);
|
|
2630
|
-
const selectRenameEntryIsLoading = createSelector(
|
|
2631
|
-
selectRenameEntry,
|
|
2632
|
-
(result) => result.isLoading
|
|
2633
|
-
);
|
|
2634
|
-
const selectDeleteEntryIsLoading = createSelector(
|
|
2635
|
-
selectDeleteEntry,
|
|
2636
|
-
(result) => result.isLoading
|
|
2637
|
-
);
|
|
2638
|
-
const selectWorkbookFilters = (state) => state.workbooks.filters;
|
|
2639
|
-
const selectWorkbookName = (state, workbooksId) => state.workbooks.workbooksNames[workbooksId] || workbooksId;
|
|
2640
|
-
const selectWorkbookEditPermission = createSelector(
|
|
2641
|
-
[selectWorkbookPermissions],
|
|
2642
|
-
(permissions) => permissions ? permissions.update : true
|
|
2643
|
-
);
|
|
2644
|
-
const selectWorkbookLimitedView = createSelector(
|
|
2645
|
-
[selectWorkbookPermissions],
|
|
2646
|
-
(permissions) => permissions ? !permissions.view : false
|
|
2647
|
-
);
|
|
2648
|
-
const i18n$1 = I18n.keyset("component.action-panel.view");
|
|
2649
|
-
const b$4 = block("dl-entry-panel");
|
|
2650
|
-
const _EntryPanel = class _EntryPanel extends React__default.Component {
|
|
2651
|
-
constructor() {
|
|
2652
|
-
super(...arguments);
|
|
2653
|
-
this.state = {
|
|
2654
|
-
entry: void 0,
|
|
2655
|
-
visibleEntryContextMenu: false
|
|
2656
|
-
};
|
|
2657
|
-
this.btnEntryContextMenuRef = React__default.createRef();
|
|
2658
|
-
this.entryDialogsRef = React__default.createRef();
|
|
2659
|
-
this.entryContextMenuRef = React__default.createRef();
|
|
2660
|
-
this.toggleFavorite = () => {
|
|
2661
|
-
const entry = this.state.entry;
|
|
2662
|
-
const { entryId, isFavorite } = entry;
|
|
2663
|
-
try {
|
|
2664
|
-
if (isFavorite) {
|
|
2665
|
-
getSdk().sdk.us.deleteFavorite({ entryId }).then(
|
|
2666
|
-
() => this.setState({
|
|
2667
|
-
entry: {
|
|
2668
|
-
...entry,
|
|
2669
|
-
isFavorite: false
|
|
2670
|
-
}
|
|
2671
|
-
})
|
|
2672
|
-
);
|
|
2673
|
-
return;
|
|
2674
|
-
}
|
|
2675
|
-
getSdk().sdk.us.addFavorite({ entryId }).then(
|
|
2676
|
-
() => this.setState({
|
|
2677
|
-
entry: {
|
|
2678
|
-
...entry,
|
|
2679
|
-
isFavorite: true
|
|
2680
|
-
}
|
|
2681
|
-
})
|
|
2682
|
-
);
|
|
2683
|
-
} catch (error) {
|
|
2684
|
-
logger.logError("EntryPanel: toggleFavorite failed", error);
|
|
2685
|
-
this.setState({
|
|
2686
|
-
error
|
|
2687
|
-
});
|
|
2688
|
-
}
|
|
2689
|
-
};
|
|
2690
|
-
this.onChangePublicClick = async () => {
|
|
2691
|
-
if (!this.state.entry || !this.entryDialogsRef.current) {
|
|
2692
|
-
return;
|
|
2693
|
-
}
|
|
2694
|
-
if (this.state.entry.scope === EntryScope.Dash) {
|
|
2695
|
-
reachMetricaGoal(CounterName.Main, GoalId.DashboardPublicAccessClick);
|
|
2696
|
-
}
|
|
2697
|
-
const result = await this.entryDialogsRef.current.open({
|
|
2698
|
-
dialog: EntryDialogName.SwitchPublic,
|
|
2699
|
-
dialogProps: {
|
|
2700
|
-
entry: this.state.entry
|
|
2701
|
-
}
|
|
2702
|
-
});
|
|
2703
|
-
if (result.status === EntryDialogResolveStatus.Success && result.data) {
|
|
2704
|
-
this.setState({
|
|
2705
|
-
entry: {
|
|
2706
|
-
...this.state.entry,
|
|
2707
|
-
public: Boolean(result.data?.publish)
|
|
2708
|
-
}
|
|
2709
|
-
});
|
|
2710
|
-
}
|
|
2711
|
-
};
|
|
2712
|
-
this.onCloseEntryContextMenu = () => this.setState({ visibleEntryContextMenu: false });
|
|
2713
|
-
this.toggleEntryContextMenu = () => this.setState({ visibleEntryContextMenu: !this.state.visibleEntryContextMenu });
|
|
2714
|
-
this.renderRootContent = (rootItem) => {
|
|
2715
|
-
if (rootItem.href) {
|
|
2716
|
-
return /* @__PURE__ */ jsx(
|
|
2717
|
-
Link,
|
|
2718
|
-
{
|
|
2719
|
-
view: "secondary",
|
|
2720
|
-
href: rootItem.href,
|
|
2721
|
-
title: rootItem.text,
|
|
2722
|
-
onClick: rootItem.action,
|
|
2723
|
-
className: b$4("item", { link: true }),
|
|
2724
|
-
children: rootItem.text
|
|
2725
|
-
},
|
|
2726
|
-
rootItem.text
|
|
2727
|
-
);
|
|
2728
|
-
}
|
|
2729
|
-
return /* @__PURE__ */ jsx("div", { className: b$4("item"), children: rootItem.text }, rootItem.text);
|
|
2730
|
-
};
|
|
2731
|
-
this.renderEntryTitle = () => {
|
|
2732
|
-
const { ActionPanelEntrySelect } = registry.common.components.getAll();
|
|
2733
|
-
return /* @__PURE__ */ jsx(ActionPanelEntrySelect, { className: b$4("entry-title") });
|
|
2734
|
-
};
|
|
2735
|
-
}
|
|
2736
|
-
static getDerivedStateFromProps(props, state) {
|
|
2737
|
-
const { entry: entryState } = state;
|
|
2738
|
-
const { entry: entryProps } = props;
|
|
2739
|
-
if (entryState) {
|
|
2740
|
-
if (entryProps && (entryState.entryId !== entryProps.entryId || entryState.key !== entryProps.key || entryState.collectionId !== entryProps.collectionId)) {
|
|
2741
|
-
return {
|
|
2742
|
-
entry: {
|
|
2743
|
-
...entryProps
|
|
2744
|
-
}
|
|
2745
|
-
};
|
|
2746
|
-
}
|
|
2747
|
-
if (!entryState.fake) {
|
|
2748
|
-
return null;
|
|
2749
|
-
}
|
|
2750
|
-
}
|
|
2751
|
-
return {
|
|
2752
|
-
entry: {
|
|
2753
|
-
...entryProps
|
|
2754
|
-
}
|
|
2755
|
-
};
|
|
2756
|
-
}
|
|
2757
|
-
componentDidMount() {
|
|
2758
|
-
const workbookId = this.state.entry?.workbookId;
|
|
2759
|
-
const collectionId = this.state.entry?.collectionId;
|
|
2760
|
-
if (workbookId) {
|
|
2761
|
-
this.props.actions.addWorkbookInfo(workbookId, true);
|
|
2762
|
-
} else if (collectionId) {
|
|
2763
|
-
this.props.actions.addCollectionBreadcrumbs({ collectionId });
|
|
2764
|
-
}
|
|
2765
|
-
}
|
|
2766
|
-
componentDidUpdate(prevProps) {
|
|
2767
|
-
const workbookId = this.props.entry?.workbookId;
|
|
2768
|
-
const collectionId = this.props.entry?.collectionId;
|
|
2769
|
-
const prevWorkbookId = prevProps.entry?.workbookId;
|
|
2770
|
-
const prevCollectionId = prevProps.entry?.collectionId;
|
|
2771
|
-
if (prevWorkbookId !== workbookId && workbookId) {
|
|
2772
|
-
this.props.actions.addWorkbookInfo(workbookId, true);
|
|
2773
|
-
} else if (prevCollectionId !== collectionId && collectionId) {
|
|
2774
|
-
this.props.actions.addCollectionBreadcrumbs({ collectionId });
|
|
2775
|
-
}
|
|
2776
|
-
if (prevWorkbookId && !workbookId) {
|
|
2777
|
-
this.props.actions.resetWorkbookPermissions();
|
|
2778
|
-
}
|
|
2779
|
-
}
|
|
2780
|
-
render() {
|
|
2781
|
-
const { children, workbookName, entityBreadcrumbs, lastCrumbAdditionalContent } = this.props;
|
|
2782
|
-
const { EntryBreadcrumbs } = registry.common.components.getAll();
|
|
2783
|
-
return /* @__PURE__ */ jsxs(React__default.Fragment, { children: [
|
|
2784
|
-
this.renderEntryTitle(),
|
|
2785
|
-
/* @__PURE__ */ jsx(
|
|
2786
|
-
EntryBreadcrumbs,
|
|
2787
|
-
{
|
|
2788
|
-
renderRootContent: this.renderRootContent,
|
|
2789
|
-
entry: this.state.entry,
|
|
2790
|
-
workbookName,
|
|
2791
|
-
entityBreadcrumbs,
|
|
2792
|
-
endContent: /* @__PURE__ */ jsxs(React__default.Fragment, { children: [
|
|
2793
|
-
lastCrumbAdditionalContent,
|
|
2794
|
-
this.renderControls(),
|
|
2795
|
-
/* @__PURE__ */ jsx("div", { className: b$4(), children })
|
|
2796
|
-
] })
|
|
2797
|
-
}
|
|
2798
|
-
)
|
|
2799
|
-
] });
|
|
2800
|
-
}
|
|
2801
|
-
renderControls() {
|
|
2802
|
-
if (DL.IS_MOBILE) {
|
|
2803
|
-
return null;
|
|
2804
|
-
}
|
|
2805
|
-
const { entry: { isFavorite } = { isFavorite: void 0 }, entry } = this.state;
|
|
2806
|
-
const isFakeEntry = entry?.fake;
|
|
2807
|
-
const additionalItems = this.getEntryContextMenuItems();
|
|
2808
|
-
const { ButtonFavorite } = registry.common.components.getAll();
|
|
2809
|
-
return /* @__PURE__ */ jsxs("div", { className: b$4("entry-actions"), children: [
|
|
2810
|
-
!isFakeEntry && /* @__PURE__ */ jsx(
|
|
2811
|
-
ButtonFavorite,
|
|
2812
|
-
{
|
|
2813
|
-
className: b$4("action-btn", { active: isFavorite }),
|
|
2814
|
-
onClick: this.toggleFavorite,
|
|
2815
|
-
isFavorite
|
|
2816
|
-
}
|
|
2817
|
-
),
|
|
2818
|
-
!isFakeEntry || additionalItems.length ? /* @__PURE__ */ jsx(
|
|
2819
|
-
Button,
|
|
2820
|
-
{
|
|
2821
|
-
className: b$4("action-btn", b$4("more-dropdown")),
|
|
2822
|
-
qa: ActionPanelQA.MoreBtn,
|
|
2823
|
-
size: "m",
|
|
2824
|
-
view: "flat",
|
|
2825
|
-
onClick: this.toggleEntryContextMenu,
|
|
2826
|
-
ref: this.btnEntryContextMenuRef,
|
|
2827
|
-
children: /* @__PURE__ */ jsx(Icon, { className: b$4("more"), data: Ellipsis, size: 18 })
|
|
2828
|
-
}
|
|
2829
|
-
) : null,
|
|
2830
|
-
this.btnEntryContextMenuRef.current && /* @__PURE__ */ jsx(
|
|
2831
|
-
EntryContextMenu,
|
|
2832
|
-
{
|
|
2833
|
-
entryDialogsRef: this.entryDialogsRef,
|
|
2834
|
-
forwardRef: this.entryContextMenuRef,
|
|
2835
|
-
onClose: this.onCloseEntryContextMenu,
|
|
2836
|
-
anchorElement: this.btnEntryContextMenuRef.current,
|
|
2837
|
-
visible: this.state.visibleEntryContextMenu,
|
|
2838
|
-
entry,
|
|
2839
|
-
additionalItems,
|
|
2840
|
-
showSpecificItems: true,
|
|
2841
|
-
filterEntryContextMenuItems: this.props.filterEntryContextMenuItems
|
|
2842
|
-
}
|
|
2843
|
-
)
|
|
2844
|
-
] });
|
|
2845
|
-
}
|
|
2846
|
-
getEntryContextMenuItems() {
|
|
2847
|
-
const { enablePublish, additionalEntryItems } = this.props;
|
|
2848
|
-
const entry = this.state.entry;
|
|
2849
|
-
const isAdmin = Boolean(entry.permissions?.admin);
|
|
2850
|
-
let disabled = false;
|
|
2851
|
-
if (entry.fake) {
|
|
2852
|
-
disabled = true;
|
|
2853
|
-
}
|
|
2854
|
-
const items = [...additionalEntryItems];
|
|
2855
|
-
if (isAdmin && enablePublish && !disabled) {
|
|
2856
|
-
items.push({
|
|
2857
|
-
icon: /* @__PURE__ */ jsx(
|
|
2858
|
-
Icon,
|
|
2859
|
-
{
|
|
2860
|
-
data: Globe,
|
|
2861
|
-
className: ICONS_ENTRY_MENU_DEFAULT_CLASSNAME,
|
|
2862
|
-
width: ICONS_ENTRY_MENU_DEFAULT_SIZE,
|
|
2863
|
-
height: ICONS_ENTRY_MENU_DEFAULT_SIZE
|
|
2864
|
-
}
|
|
2865
|
-
),
|
|
2866
|
-
text: i18n$1("button_switch-public"),
|
|
2867
|
-
action: this.onChangePublicClick,
|
|
2868
|
-
id: "public"
|
|
2869
|
-
});
|
|
2870
|
-
}
|
|
2871
|
-
return items;
|
|
2872
|
-
}
|
|
2873
|
-
};
|
|
2874
|
-
_EntryPanel.defaultProps = {
|
|
2875
|
-
additionalEntryItems: [],
|
|
2876
|
-
enablePublish: false
|
|
2877
|
-
};
|
|
2878
|
-
let EntryPanel = _EntryPanel;
|
|
2879
|
-
const mapStateToProps$1 = (state, ownProps) => {
|
|
2880
|
-
const workbookId = ownProps.entry?.workbookId || "";
|
|
2881
|
-
return {
|
|
2882
|
-
workbookName: selectWorkbookName(state, workbookId),
|
|
2883
|
-
entityBreadcrumbs: selectEntityBreadcrumbs(state)
|
|
2884
|
-
};
|
|
2885
|
-
};
|
|
2886
|
-
const mapDispatchToProps$1 = (dispatch2) => {
|
|
2887
|
-
return {
|
|
2888
|
-
actions: bindActionCreators(
|
|
2889
|
-
{
|
|
2890
|
-
addCollectionBreadcrumbs,
|
|
2891
|
-
addWorkbookInfo,
|
|
2892
|
-
resetWorkbookPermissions
|
|
2893
|
-
},
|
|
2894
|
-
dispatch2
|
|
2895
|
-
)
|
|
2896
|
-
};
|
|
2897
|
-
};
|
|
2898
|
-
const EntryPanel$1 = withRouter(connect(mapStateToProps$1, mapDispatchToProps$1)(EntryPanel));
|
|
2899
|
-
const b$3 = block("action-panel");
|
|
2900
|
-
const i18n = I18n.keyset("component.action-panel.view");
|
|
2901
|
-
const _ActionPanel = class _ActionPanel extends React__default.Component {
|
|
2902
|
-
constructor() {
|
|
2903
|
-
super(...arguments);
|
|
2904
|
-
this.state = {
|
|
2905
|
-
isEditing: false
|
|
2906
|
-
};
|
|
2907
|
-
this.concurrentId = null;
|
|
2908
|
-
this.handleOpenDraftRevision = () => {
|
|
2909
|
-
this.props.actions.setEntryCurrentRevId(this.getEntry()?.savedId || "");
|
|
2910
|
-
};
|
|
2911
|
-
this.handleOpenCurrentRevision = () => {
|
|
2912
|
-
this.props.actions.setEntryCurrentRevId(this.getEntry()?.publishedId || "");
|
|
2913
|
-
};
|
|
2914
|
-
this.handleExpandablePanelClose = () => {
|
|
2915
|
-
const { setRevisionsListMode: setRevisionsListMode2, setRevisionsMode: setRevisionsMode2, cleanRevisions: cleanRevisions2 } = this.props.actions;
|
|
2916
|
-
setRevisionsListMode2(RevisionsListMode.Expanded);
|
|
2917
|
-
setRevisionsMode2(RevisionsMode.Closed);
|
|
2918
|
-
cleanRevisions2();
|
|
2919
|
-
};
|
|
2920
|
-
}
|
|
2921
|
-
componentDidMount() {
|
|
2922
|
-
const { entryId, actions } = this.props;
|
|
2923
|
-
if (entryId) {
|
|
2924
|
-
this.concurrentId = `fetchEntryById-${entryId}`;
|
|
2925
|
-
actions.fetchEntryById(entryId, this.concurrentId, (entry) => {
|
|
2926
|
-
this.setState({
|
|
2927
|
-
entry
|
|
2928
|
-
});
|
|
2929
|
-
this.setEntryContent();
|
|
2930
|
-
});
|
|
2931
|
-
} else {
|
|
2932
|
-
this.setEntryContent();
|
|
2933
|
-
}
|
|
2934
|
-
actions.cleanRevisions();
|
|
2935
|
-
actions.setRevisionsMode(RevisionsMode.Closed);
|
|
2936
|
-
}
|
|
2937
|
-
componentDidUpdate(prevProps) {
|
|
2938
|
-
const { entry, actions, match } = this.props;
|
|
2939
|
-
const entryId = entry?.entryId;
|
|
2940
|
-
const prevEntryId = prevProps.entry?.entryId;
|
|
2941
|
-
const hasEntryChanged = entryId && prevEntryId && entryId !== prevEntryId;
|
|
2942
|
-
const { extractEntryId } = registry.common.functions.getAll();
|
|
2943
|
-
const oldPageEntryId = extractEntryId(prevProps.match.url);
|
|
2944
|
-
const newPageEntryId = extractEntryId(match.url);
|
|
2945
|
-
const hasPageEntryChanged = oldPageEntryId !== newPageEntryId;
|
|
2946
|
-
const hasPageEntryChangedWithId = hasPageEntryChanged && newPageEntryId;
|
|
2947
|
-
const hasEntryChangedWithId = entryId && !prevEntryId;
|
|
2948
|
-
const needCleanRevisions = hasEntryChanged || hasPageEntryChangedWithId;
|
|
2949
|
-
if (needCleanRevisions) {
|
|
2950
|
-
actions.cleanRevisions();
|
|
2951
|
-
actions.setRevisionsMode(RevisionsMode.Closed);
|
|
2952
|
-
}
|
|
2953
|
-
if (entryId !== null && (hasEntryChangedWithId || hasPageEntryChangedWithId)) {
|
|
2954
|
-
this.concurrentId = `fetchEntryById-${entryId}`;
|
|
2955
|
-
const fetchEntryId = hasPageEntryChangedWithId ? newPageEntryId : entryId;
|
|
2956
|
-
actions.fetchEntryById(fetchEntryId, this.concurrentId, (entryItem) => {
|
|
2957
|
-
this.concurrentId = null;
|
|
2958
|
-
this.setState({
|
|
2959
|
-
entry: entryItem
|
|
2960
|
-
});
|
|
2961
|
-
this.setEntryContent();
|
|
2962
|
-
});
|
|
2963
|
-
} else if (hasEntryChanged) {
|
|
2964
|
-
this.setEntryContent();
|
|
2965
|
-
}
|
|
2966
|
-
}
|
|
2967
|
-
componentWillUnmount() {
|
|
2968
|
-
if (this.concurrentId) {
|
|
2969
|
-
getSdk().cancelRequest(this.concurrentId);
|
|
2970
|
-
}
|
|
2971
|
-
this.props.actions.cleanRevisions();
|
|
2972
|
-
this.props.actions.setRevisionsMode(RevisionsMode.Closed);
|
|
2973
|
-
}
|
|
2974
|
-
render() {
|
|
2975
|
-
const {
|
|
2976
|
-
additionalEntryItems = [],
|
|
2977
|
-
leftItems,
|
|
2978
|
-
centerItems = [],
|
|
2979
|
-
rightItems,
|
|
2980
|
-
className: mix,
|
|
2981
|
-
sidebarSize,
|
|
2982
|
-
entryContent,
|
|
2983
|
-
isRevisionsOpened,
|
|
2984
|
-
setActualVersion,
|
|
2985
|
-
isEditing,
|
|
2986
|
-
deprecationWarning,
|
|
2987
|
-
renderRevisionItemActions,
|
|
2988
|
-
wrapperRef,
|
|
2989
|
-
style: externalStyle,
|
|
2990
|
-
expandablePanelDescription,
|
|
2991
|
-
getRevisionRowExtendedProps,
|
|
2992
|
-
filterEntryContextMenuItems,
|
|
2993
|
-
lastCrumbAdditionalContent
|
|
2994
|
-
} = this.props;
|
|
2995
|
-
const style = { left: sidebarSize, ...externalStyle };
|
|
2996
|
-
const entry = this.getEntry();
|
|
2997
|
-
const revisionsListDescription = isEnabledFeature(Feature.RevisionsListNoLimit) ? void 0 : i18n("label_history-changes-date-limit");
|
|
2998
|
-
const description = expandablePanelDescription ?? revisionsListDescription;
|
|
2999
|
-
return /* @__PURE__ */ jsxs("div", { className: b$3(), ref: wrapperRef, children: [
|
|
3000
|
-
/* @__PURE__ */ jsx("div", { className: b$3("wrapper"), "data-qa": ActionPanelQA.ActionPanel, children: /* @__PURE__ */ jsxs("div", { className: b$3("container", { mobile: DL.IS_MOBILE }, mix), style, children: [
|
|
3001
|
-
Array.isArray(leftItems) ? leftItems.map((LeftItems) => LeftItems) : leftItems,
|
|
3002
|
-
entry && /* @__PURE__ */ jsx(
|
|
3003
|
-
EntryPanel$1,
|
|
3004
|
-
{
|
|
3005
|
-
entry,
|
|
3006
|
-
lastCrumbAdditionalContent,
|
|
3007
|
-
additionalEntryItems,
|
|
3008
|
-
enablePublish: this.getEnablePublish(),
|
|
3009
|
-
filterEntryContextMenuItems,
|
|
3010
|
-
children: centerItems
|
|
3011
|
-
}
|
|
3012
|
-
),
|
|
3013
|
-
Array.isArray(rightItems) ? rightItems.map((RightItems) => RightItems) : rightItems
|
|
3014
|
-
] }) }),
|
|
3015
|
-
entry && entryContent && setActualVersion && /* @__PURE__ */ jsxs(React__default.Fragment, { children: [
|
|
3016
|
-
/* @__PURE__ */ jsx(
|
|
3017
|
-
RevisionsPanel,
|
|
3018
|
-
{
|
|
3019
|
-
className: b$3("revisions-panel"),
|
|
3020
|
-
entry,
|
|
3021
|
-
leftStyle: style,
|
|
3022
|
-
onSetActualRevision: setActualVersion,
|
|
3023
|
-
onOpenActualRevision: this.handleOpenCurrentRevision,
|
|
3024
|
-
onOpenDraftRevision: this.handleOpenDraftRevision,
|
|
3025
|
-
isEditing: isEditing || false,
|
|
3026
|
-
deprecationMessage: deprecationWarning?.message,
|
|
3027
|
-
onDeprecationConfirm: deprecationWarning?.onConfirm
|
|
3028
|
-
}
|
|
3029
|
-
),
|
|
3030
|
-
/* @__PURE__ */ jsx(
|
|
3031
|
-
ExpandablePanel,
|
|
3032
|
-
{
|
|
3033
|
-
className: b$3("expandable-panel"),
|
|
3034
|
-
title: i18n("label_history-changes"),
|
|
3035
|
-
description,
|
|
3036
|
-
active: isRevisionsOpened || false,
|
|
3037
|
-
onClose: this.handleExpandablePanelClose,
|
|
3038
|
-
children: /* @__PURE__ */ jsx(
|
|
3039
|
-
Revisions,
|
|
3040
|
-
{
|
|
3041
|
-
getRevisionRowExtendedProps,
|
|
3042
|
-
renderItemActions: renderRevisionItemActions
|
|
3043
|
-
}
|
|
3044
|
-
)
|
|
3045
|
-
}
|
|
3046
|
-
)
|
|
3047
|
-
] })
|
|
3048
|
-
] });
|
|
3049
|
-
}
|
|
3050
|
-
getEntry() {
|
|
3051
|
-
return this.props.entry || this.state.entry;
|
|
3052
|
-
}
|
|
3053
|
-
getEnablePublish() {
|
|
3054
|
-
const getGloballyEntrySettings = registry.common.functions.get("getGloballyEntrySettings");
|
|
3055
|
-
const globallyEntrySettings = getGloballyEntrySettings();
|
|
3056
|
-
if (globallyEntrySettings?.isPublishDisabled) {
|
|
3057
|
-
return false;
|
|
3058
|
-
}
|
|
3059
|
-
return Boolean(this.props.enablePublish);
|
|
3060
|
-
}
|
|
3061
|
-
setEntryContent() {
|
|
3062
|
-
const entry = this.getEntry();
|
|
3063
|
-
if (!entry?.entryId) {
|
|
3064
|
-
return;
|
|
3065
|
-
}
|
|
3066
|
-
this.props.actions.setEntry(entry);
|
|
3067
|
-
}
|
|
3068
|
-
};
|
|
3069
|
-
_ActionPanel.EntryPanel = EntryPanel$1;
|
|
3070
|
-
let ActionPanel = _ActionPanel;
|
|
3071
|
-
const mapStateToProps = (state) => {
|
|
3072
|
-
return {
|
|
3073
|
-
sidebarSize: selectAsideHeaderData(state).size || 0,
|
|
3074
|
-
entryContent: selectEntryContent(state),
|
|
3075
|
-
isRevisionsOpened: selectIsRevisionsOpened(state)
|
|
3076
|
-
};
|
|
3077
|
-
};
|
|
3078
|
-
const mapDispatchToProps = (dispatch2) => {
|
|
3079
|
-
return {
|
|
3080
|
-
actions: bindActionCreators(
|
|
3081
|
-
{
|
|
3082
|
-
setEntry: setEntryContent,
|
|
3083
|
-
setEntryCurrentRevId,
|
|
3084
|
-
setRevisionsMode,
|
|
3085
|
-
setRevisionsListMode,
|
|
3086
|
-
cleanRevisions,
|
|
3087
|
-
fetchEntryById
|
|
3088
|
-
},
|
|
3089
|
-
dispatch2
|
|
3090
|
-
)
|
|
3091
|
-
};
|
|
3092
|
-
};
|
|
3093
|
-
const ActionPanel$1 = withRouter(connect(mapStateToProps, mapDispatchToProps)(ActionPanel));
|
|
3094
|
-
const iconLock = "data:image/svg+xml,%3csvg%20width='16'%20height='16'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M5.75%206.232C5.75%203.811%206.953%203.5%208%203.5s2.25.31%202.25%202.732V7h-4.5v-.768zm6%20.768v-.768C11.75%202.55%209.4%202%208%202s-3.75.55-3.75%204.232V7H3v7h10V7h-1.25z'%20fill='currentColor'%20fill-rule='evenodd'/%3e%3c/svg%3e";
|
|
3095
|
-
const b$2 = block("action-panel-save-button");
|
|
3096
|
-
const SaveButton = (props) => {
|
|
3097
|
-
const { disabled, canEdit, isSaveAsDraft } = props;
|
|
3098
|
-
let buttonText;
|
|
3099
|
-
if (disabled) {
|
|
3100
|
-
buttonText = "button_saved";
|
|
3101
|
-
} else {
|
|
3102
|
-
buttonText = isSaveAsDraft ? "button_save-as-draft" : "button_save";
|
|
3103
|
-
}
|
|
3104
|
-
return /* @__PURE__ */ jsxs(
|
|
3105
|
-
Button,
|
|
3106
|
-
{
|
|
3107
|
-
view: "action",
|
|
3108
|
-
size: "m",
|
|
3109
|
-
onClick: () => {
|
|
3110
|
-
if (isSaveAsDraft) {
|
|
3111
|
-
props.onClick(EntryUpdateMode.Save);
|
|
3112
|
-
return;
|
|
3113
|
-
}
|
|
3114
|
-
props.onClick(EntryUpdateMode.Publish);
|
|
3115
|
-
},
|
|
3116
|
-
disabled,
|
|
3117
|
-
className: b$2("save-btn"),
|
|
3118
|
-
qa: SaveChartControlsQa.SaveButton,
|
|
3119
|
-
children: [
|
|
3120
|
-
canEdit ? null : /* @__PURE__ */ jsx(Icon, { data: iconLock }),
|
|
3121
|
-
i18n$4("component.chart-save-controls", buttonText)
|
|
3122
|
-
]
|
|
3123
|
-
},
|
|
3124
|
-
"button-save"
|
|
3125
|
-
);
|
|
3126
|
-
};
|
|
3127
|
-
const b$1 = block("action-panel-save-dropdown");
|
|
3128
|
-
const SaveDropdown = (props) => {
|
|
3129
|
-
const { disabled, dropdownItems } = props;
|
|
3130
|
-
return /* @__PURE__ */ jsx(
|
|
3131
|
-
DropdownMenu,
|
|
3132
|
-
{
|
|
3133
|
-
size: "s",
|
|
3134
|
-
disabled,
|
|
3135
|
-
items: dropdownItems,
|
|
3136
|
-
renderSwitcher: ({ onClick, onKeyDown }) => /* @__PURE__ */ jsx(
|
|
3137
|
-
Button,
|
|
3138
|
-
{
|
|
3139
|
-
className: b$1("switcher"),
|
|
3140
|
-
view: "action",
|
|
3141
|
-
disabled,
|
|
3142
|
-
size: "m",
|
|
3143
|
-
qa: ChartSaveControlsQA.SaveMoreDropdown,
|
|
3144
|
-
onClick,
|
|
3145
|
-
onKeyDown,
|
|
3146
|
-
children: /* @__PURE__ */ jsx(Icon, { data: ChevronDown, size: 16 })
|
|
3147
|
-
}
|
|
3148
|
-
),
|
|
3149
|
-
popupProps: { placement: "bottom-end" }
|
|
3150
|
-
},
|
|
3151
|
-
"save-more-dropdown"
|
|
3152
|
-
);
|
|
3153
|
-
};
|
|
3154
|
-
const renderItemButton = (itemProps) => {
|
|
3155
|
-
return /* @__PURE__ */ jsxs(
|
|
3156
|
-
Button,
|
|
3157
|
-
{
|
|
3158
|
-
disabled: itemProps.disabled || false,
|
|
3159
|
-
qa: itemProps.qa,
|
|
3160
|
-
className: itemProps.className,
|
|
3161
|
-
view: itemProps.view || "flat",
|
|
3162
|
-
size: "m",
|
|
3163
|
-
loading: itemProps.loading,
|
|
3164
|
-
onClick: () => itemProps.action(),
|
|
3165
|
-
children: [
|
|
3166
|
-
itemProps.icon && /* @__PURE__ */ jsx(Icon, { ...itemProps.icon }),
|
|
3167
|
-
itemProps.text && /* @__PURE__ */ jsx("span", { className: itemProps.textClassName, children: itemProps.text })
|
|
3168
|
-
]
|
|
3169
|
-
},
|
|
3170
|
-
itemProps.key
|
|
3171
|
-
);
|
|
3172
|
-
};
|
|
3173
|
-
const useAdditionalItems = (args) => {
|
|
3174
|
-
const { items } = args;
|
|
3175
|
-
if (!items) {
|
|
3176
|
-
return [];
|
|
3177
|
-
}
|
|
3178
|
-
return items.map((itemProps) => {
|
|
3179
|
-
if (itemProps.hidden) {
|
|
3180
|
-
return null;
|
|
3181
|
-
}
|
|
3182
|
-
if (itemProps.title) {
|
|
3183
|
-
return /* @__PURE__ */ jsx(
|
|
3184
|
-
ActionTooltip,
|
|
3185
|
-
{
|
|
3186
|
-
hotkey: itemProps.hotkey,
|
|
3187
|
-
title: itemProps.title,
|
|
3188
|
-
children: renderItemButton(itemProps)
|
|
3189
|
-
},
|
|
3190
|
-
`${itemProps.key}-tooltip`
|
|
3191
|
-
);
|
|
3192
|
-
} else {
|
|
3193
|
-
return renderItemButton(itemProps);
|
|
3194
|
-
}
|
|
3195
|
-
}).filter(Boolean);
|
|
3196
|
-
};
|
|
3197
|
-
const b = block("action-panel-chart-save-controls");
|
|
3198
|
-
const ChartSaveControls = (props) => {
|
|
3199
|
-
const {
|
|
3200
|
-
className,
|
|
3201
|
-
additionalControls,
|
|
3202
|
-
needSplitMainAndAdditionalButtons,
|
|
3203
|
-
canEdit,
|
|
3204
|
-
isSaveButtonDisabled,
|
|
3205
|
-
isCurrentRevisionActual,
|
|
3206
|
-
dropdownItems,
|
|
3207
|
-
isDropdownDisabled,
|
|
3208
|
-
hideSaveButton,
|
|
3209
|
-
hideSaveDropdown,
|
|
3210
|
-
onSaveAndPublishClick,
|
|
3211
|
-
onSaveAsDraftClick,
|
|
3212
|
-
onSaveAsNewClick,
|
|
3213
|
-
onClickButtonSave,
|
|
3214
|
-
onOpenNoRightsDialog,
|
|
3215
|
-
isNewChart
|
|
3216
|
-
} = props;
|
|
3217
|
-
const additionalItems = useAdditionalItems({ items: additionalControls });
|
|
3218
|
-
const isRenameWithoutReload = useSelector(selectIsRenameWithoutReload);
|
|
3219
|
-
const mainDropdownItems = React__default.useMemo(() => {
|
|
3220
|
-
const saveAsDraftItem = {
|
|
3221
|
-
action: () => onSaveAsDraftClick(),
|
|
3222
|
-
text: i18n$4("component.chart-save-controls", "button_save-as-draft"),
|
|
3223
|
-
extraProps: {
|
|
3224
|
-
"data-qa": "save-as-draft"
|
|
3225
|
-
},
|
|
3226
|
-
hidden: isNewChart || !canEdit
|
|
3227
|
-
};
|
|
3228
|
-
const saveAndPublishItem = {
|
|
3229
|
-
action: () => onSaveAndPublishClick(),
|
|
3230
|
-
text: i18n$4("component.chart-save-controls", "button_save-as-published"),
|
|
3231
|
-
hidden: isNewChart,
|
|
3232
|
-
extraProps: {
|
|
3233
|
-
"data-qa": "save-and-publish"
|
|
3234
|
-
}
|
|
3235
|
-
};
|
|
3236
|
-
const items = [];
|
|
3237
|
-
items.push(isCurrentRevisionActual ? saveAsDraftItem : saveAndPublishItem);
|
|
3238
|
-
return [
|
|
3239
|
-
{
|
|
3240
|
-
action: () => onSaveAsNewClick(),
|
|
3241
|
-
text: i18n$4("component.chart-save-controls", "button_save-as-new"),
|
|
3242
|
-
hidden: isNewChart,
|
|
3243
|
-
qa: "save-as-new-chart"
|
|
3244
|
-
},
|
|
3245
|
-
...items
|
|
3246
|
-
];
|
|
3247
|
-
}, [
|
|
3248
|
-
isNewChart,
|
|
3249
|
-
canEdit,
|
|
3250
|
-
isCurrentRevisionActual,
|
|
3251
|
-
onSaveAsDraftClick,
|
|
3252
|
-
onSaveAndPublishClick,
|
|
3253
|
-
onSaveAsNewClick
|
|
3254
|
-
]);
|
|
3255
|
-
const allDropdownItems = React__default.useMemo(
|
|
3256
|
-
() => [...mainDropdownItems, ...dropdownItems || []],
|
|
3257
|
-
[mainDropdownItems, dropdownItems]
|
|
3258
|
-
);
|
|
3259
|
-
return /* @__PURE__ */ jsxs("div", { className: b({ mobile: DL.IS_MOBILE }, className), children: [
|
|
3260
|
-
additionalItems,
|
|
3261
|
-
Boolean(needSplitMainAndAdditionalButtons) && /* @__PURE__ */ jsx("div", { className: b("splitter") }),
|
|
3262
|
-
!hideSaveButton && /* @__PURE__ */ jsxs(React__default.Fragment, { children: [
|
|
3263
|
-
/* @__PURE__ */ jsxs("div", { className: b("save-btn-wrapper"), children: [
|
|
3264
|
-
/* @__PURE__ */ jsx(
|
|
3265
|
-
"div",
|
|
3266
|
-
{
|
|
3267
|
-
className: b("pseudosave-btn", { active: !canEdit }),
|
|
3268
|
-
onClick: () => onOpenNoRightsDialog()
|
|
3269
|
-
},
|
|
3270
|
-
"pseudosave-btn"
|
|
3271
|
-
),
|
|
3272
|
-
/* @__PURE__ */ jsx(
|
|
3273
|
-
SaveButton,
|
|
3274
|
-
{
|
|
3275
|
-
onClick: onClickButtonSave,
|
|
3276
|
-
canEdit,
|
|
3277
|
-
disabled: isSaveButtonDisabled,
|
|
3278
|
-
isSaveAsDraft: !isCurrentRevisionActual && !isNewChart
|
|
3279
|
-
}
|
|
3280
|
-
)
|
|
3281
|
-
] }),
|
|
3282
|
-
/* @__PURE__ */ jsx(
|
|
3283
|
-
NavigationPrompt,
|
|
3284
|
-
{
|
|
3285
|
-
when: !isSaveButtonDisabled && !isRenameWithoutReload
|
|
3286
|
-
},
|
|
3287
|
-
"navigation-prompt"
|
|
3288
|
-
)
|
|
3289
|
-
] }),
|
|
3290
|
-
!hideSaveDropdown && /* @__PURE__ */ jsx(SaveDropdown, { dropdownItems: allDropdownItems, disabled: isDropdownDisabled })
|
|
3291
|
-
] });
|
|
3292
|
-
};
|
|
3293
|
-
class ActionPanelHelpers {
|
|
3294
|
-
static getNameByKey({ key = "" }) {
|
|
3295
|
-
const matchedValues = key.match(/\/([^/]*)$/);
|
|
3296
|
-
return matchedValues ? matchedValues[1] : key;
|
|
3297
|
-
}
|
|
3298
|
-
}
|
|
3299
|
-
export {
|
|
3300
|
-
selectWorkbookLimitedView as $,
|
|
3301
|
-
setEntryContent as A,
|
|
3302
|
-
loadRevisions as B,
|
|
3303
|
-
getFilteredObject as C,
|
|
3304
|
-
sdk as D,
|
|
3305
|
-
EMBEDDED_MODE as E,
|
|
3306
|
-
getRenderYfmFn as F,
|
|
3307
|
-
getRenderMarkupToStringFn as G,
|
|
3308
|
-
toQueryString as H,
|
|
3309
|
-
isMacintosh as I,
|
|
3310
|
-
reachMetricaGoal as J,
|
|
3311
|
-
GoalId as K,
|
|
3312
|
-
CounterName as L,
|
|
3313
|
-
MarkdownProvider as M,
|
|
3314
|
-
selectWorkbookId as N,
|
|
3315
|
-
navigateHelper_default as O,
|
|
3316
|
-
toSearchParams as P,
|
|
3317
|
-
usePrevious as Q,
|
|
3318
|
-
RevisionsMode as R,
|
|
3319
|
-
SHEET_IDS as S,
|
|
3320
|
-
withHiddenUnmount as T,
|
|
3321
|
-
Utils as U,
|
|
3322
|
-
useEffectOnce as V,
|
|
3323
|
-
replaceRelativeLinksToAbsoluteInHTML as W,
|
|
3324
|
-
getDatasetLabelValue as X,
|
|
3325
|
-
YFM_MARKDOWN_CLASSNAME as Y,
|
|
3326
|
-
groupEntitiesByScope as Z,
|
|
3327
|
-
S3_BASED_CONNECTORS as _,
|
|
3328
|
-
selectAsideHeaderIsCompact as a,
|
|
3329
|
-
setDialogConfirmLoadingStatus as a$,
|
|
3330
|
-
selectIsEditMode as a0,
|
|
3331
|
-
toggleRevisionsMode as a1,
|
|
3332
|
-
selectEntryContent as a2,
|
|
3333
|
-
selectLockToken as a3,
|
|
3334
|
-
useRefMounted as a4,
|
|
3335
|
-
getConnectorIconData as a5,
|
|
3336
|
-
isParsedError as a6,
|
|
3337
|
-
selectIsRevisionsListCollapsed as a7,
|
|
3338
|
-
setRevisionsListMode as a8,
|
|
3339
|
-
RevisionsListMode as a9,
|
|
3340
|
-
selectWorkbookSharedEntriesIsLoading as aA,
|
|
3341
|
-
selectWorkbookSharedEntriesError as aB,
|
|
3342
|
-
selectSharedNextPageToken as aC,
|
|
3343
|
-
selectWorkbookItems as aD,
|
|
3344
|
-
selectWorkbookSharedItems as aE,
|
|
3345
|
-
selectWorkbookEntriesIsLoading as aF,
|
|
3346
|
-
resetWorkbookEntries as aG,
|
|
3347
|
-
resetWorkbookSharedEntries as aH,
|
|
3348
|
-
getAllWorkbookEntriesSeparately as aI,
|
|
3349
|
-
getWorkbookEntries as aJ,
|
|
3350
|
-
resetWorkbookEntriesByScope as aK,
|
|
3351
|
-
selectWorkbook as aL,
|
|
3352
|
-
changeFilters as aM,
|
|
3353
|
-
selectWorkbookEntriesError as aN,
|
|
3354
|
-
selectNextPageToken as aO,
|
|
3355
|
-
selectPageError as aP,
|
|
3356
|
-
selectCollectionId as aQ,
|
|
3357
|
-
getWorkbook as aR,
|
|
3358
|
-
resetWorkbookState as aS,
|
|
3359
|
-
ManualError as aT,
|
|
3360
|
-
getEntityIdFromPathname as aU,
|
|
3361
|
-
getConnectorIconDataByAlias as aV,
|
|
3362
|
-
selectIsRenameWithoutReload as aW,
|
|
3363
|
-
updateDialogProps as aX,
|
|
3364
|
-
openDialogSaveDraftChartAsActualConfirm as aY,
|
|
3365
|
-
ActionPanel$1 as aZ,
|
|
3366
|
-
ConnectorAlias as a_,
|
|
3367
|
-
getRenderMarkdownFn as aa,
|
|
3368
|
-
getResolveUsersByIdsAction as ab,
|
|
3369
|
-
getDefaultDateFormat as ac,
|
|
3370
|
-
setEntryCurrentRevId as ad,
|
|
3371
|
-
selectRevisionsItems as ae,
|
|
3372
|
-
selectEntryContentCurrentRevId as af,
|
|
3373
|
-
isUnreleasedByUrlParams as ag,
|
|
3374
|
-
setRevisionsMode as ah,
|
|
3375
|
-
isManualError as ai,
|
|
3376
|
-
selectWorkbookEditPermission as aj,
|
|
3377
|
-
YFM_CUT_MARKDOWN_CLASSNAME as ak,
|
|
3378
|
-
getIsSharedEntry as al,
|
|
3379
|
-
YFM_LATEX_CLASSNAME as am,
|
|
3380
|
-
YFM_MERMAID_CLASSNAME as an,
|
|
3381
|
-
useLocation as ao,
|
|
3382
|
-
selectWorkbookFilters as ap,
|
|
3383
|
-
setCreateWorkbookEntryType as aq,
|
|
3384
|
-
bindSharedEntryToWorkbook as ar,
|
|
3385
|
-
getWorkbookSharedEntries as as,
|
|
3386
|
-
changeFavoriteEntry as at,
|
|
3387
|
-
selectCreateWorkbookEntryType as au,
|
|
3388
|
-
resetCreateWorkbookEntryType as av,
|
|
3389
|
-
selectDeleteEntryIsLoading as aw,
|
|
3390
|
-
deleteEntry as ax,
|
|
3391
|
-
selectRenameEntryIsLoading as ay,
|
|
3392
|
-
renameEntry as az,
|
|
3393
|
-
selectAsideHeaderIsHidden as b,
|
|
3394
|
-
RESET_WORKBOOK_STATE as b$,
|
|
3395
|
-
reloadRevisionsOnSave as b0,
|
|
3396
|
-
setChartsEntryContent as b1,
|
|
3397
|
-
getPaletteColors as b2,
|
|
3398
|
-
openDialogFilter as b3,
|
|
3399
|
-
getMetaKey as b4,
|
|
3400
|
-
ActionPanelHelpers as b5,
|
|
3401
|
-
selectEntryContentRevId as b6,
|
|
3402
|
-
openWarningDialog as b7,
|
|
3403
|
-
resetWorkbookPermissions as b8,
|
|
3404
|
-
addWorkbookInfo as b9,
|
|
3405
|
-
CHANGE_FAVORITE_ENTRY_SUCCESS as bA,
|
|
3406
|
-
CHANGE_FAVORITE_ENTRY_LOADING as bB,
|
|
3407
|
-
RENAME_ENTRY_INLINE as bC,
|
|
3408
|
-
RENAME_ENTRY_FAILED as bD,
|
|
3409
|
-
RENAME_ENTRY_SUCCESS as bE,
|
|
3410
|
-
RENAME_ENTRY_LOADING as bF,
|
|
3411
|
-
RESET_CREATE_WORKBOOK_ENTRY_TYPE as bG,
|
|
3412
|
-
SET_CREATE_WORKBOOK_ENTRY_TYPE as bH,
|
|
3413
|
-
RESET_WORKBOOK_ENTRIES_BY_SCOPE as bI,
|
|
3414
|
-
RESET_WORKBOOK_SHARED_ENTRIES as bJ,
|
|
3415
|
-
RESET_WORKBOOK_ENTRIES as bK,
|
|
3416
|
-
BIND_SHARED_ENTRY_TO_WORKBOOK_FAILED as bL,
|
|
3417
|
-
BIND_SHARED_ENTRY_TO_WORKBOOK_SUCCESS as bM,
|
|
3418
|
-
BIND_SHARED_ENTRY_TO_WORKBOOK_LOADING as bN,
|
|
3419
|
-
GET_WORKBOOK_SHARED_ENTRIES_FAILED as bO,
|
|
3420
|
-
GET_WORKBOOK_SHARED_ENTRIES_SUCCESS as bP,
|
|
3421
|
-
GET_WORKBOOK_SHARED_ENTRIES_LOADING as bQ,
|
|
3422
|
-
GET_WORKBOOK_ENTRIES_FAILED as bR,
|
|
3423
|
-
GET_ALL_WORKBOOK_ENTRIES_SEPARATELY_SUCCESS as bS,
|
|
3424
|
-
GET_WORKBOOK_ENTRIES_SUCCESS as bT,
|
|
3425
|
-
GET_WORKBOOK_ENTRIES_LOADING as bU,
|
|
3426
|
-
GET_WORKBOOK_BREADCRUMBS_FAILED as bV,
|
|
3427
|
-
GET_WORKBOOK_BREADCRUMBS_SUCCESS as bW,
|
|
3428
|
-
GET_WORKBOOK_BREADCRUMBS_LOADING as bX,
|
|
3429
|
-
GET_WORKBOOK_FAILED as bY,
|
|
3430
|
-
GET_WORKBOOK_SUCCESS as bZ,
|
|
3431
|
-
GET_WORKBOOK_LOADING as b_,
|
|
3432
|
-
cleanRevisions as ba,
|
|
3433
|
-
client as bb,
|
|
3434
|
-
NULL_HEADER as bc,
|
|
3435
|
-
openDialogParameter as bd,
|
|
3436
|
-
datasetSdk_default as be,
|
|
3437
|
-
getSelectedValueForSelect as bf,
|
|
3438
|
-
matchDatasetFieldFilter as bg,
|
|
3439
|
-
useAdditionalItems as bh,
|
|
3440
|
-
fetchEntryById as bi,
|
|
3441
|
-
absurd as bj,
|
|
3442
|
-
openDialogSaveChartConfirm as bk,
|
|
3443
|
-
iconVisLines as bl,
|
|
3444
|
-
iconVisColumn as bm,
|
|
3445
|
-
iconVisArea as bn,
|
|
3446
|
-
ChartSaveControls as bo,
|
|
3447
|
-
SET_WORKBOOK as bp,
|
|
3448
|
-
RESET_WORKBOOK_PERMISSIONS as bq,
|
|
3449
|
-
ADD_COLLECTION_BREADCRUMBS as br,
|
|
3450
|
-
ADD_WORKBOOK_INFO as bs,
|
|
3451
|
-
CHANGE_FILTERS as bt,
|
|
3452
|
-
DELETE_ENTRY_INLINE as bu,
|
|
3453
|
-
DELETE_ENTRY_FAILED as bv,
|
|
3454
|
-
DELETE_ENTRY_SUCCESS as bw,
|
|
3455
|
-
DELETE_ENTRY_LOADING as bx,
|
|
3456
|
-
CHANGE_FAVORITE_ENTRY_INLINE as by,
|
|
3457
|
-
CHANGE_FAVORITE_ENTRY_FAILED as bz,
|
|
3458
|
-
closeDialog as c,
|
|
3459
|
-
PARTIAL_UPDATE_DIALOG_PROPS as c0,
|
|
3460
|
-
UPDATE_DIALOG_PROPS as c1,
|
|
3461
|
-
CLOSE_DIALOG as c2,
|
|
3462
|
-
OPEN_DIALOG as c3,
|
|
3463
|
-
SET_IS_RENAME_WITHOUT_RELOAD as c4,
|
|
3464
|
-
REVISIONS_LOADING_STATUS as c5,
|
|
3465
|
-
SET_ENTRY_CURRENT_REVID as c6,
|
|
3466
|
-
CLEAN_REVISIONS as c7,
|
|
3467
|
-
SET_REVISIONS as c8,
|
|
3468
|
-
TOGGLE_REVISIONS_MODE as c9,
|
|
3469
|
-
SET_REVISIONS_LIST_MODE as ca,
|
|
3470
|
-
SET_REVISIONS_MODE as cb,
|
|
3471
|
-
SET_ENTRY as cc,
|
|
3472
|
-
SET_ITEM as cd,
|
|
3473
|
-
fireMetricaHit as ce,
|
|
3474
|
-
initSdk as cf,
|
|
3475
|
-
setIsRenameWithoutReload as cg,
|
|
3476
|
-
getUIEntryRoute as ch,
|
|
3477
|
-
getIconDataById as ci,
|
|
3478
|
-
CHARTKIT_LOGGER as cj,
|
|
3479
|
-
setHistory as ck,
|
|
3480
|
-
getHistory as cl,
|
|
3481
|
-
registerSDKDispatch as cm,
|
|
3482
|
-
useShallowEqualSelector as cn,
|
|
3483
|
-
useLocalStorageFallback as co,
|
|
3484
|
-
showToast as d,
|
|
3485
|
-
isSdkError as e,
|
|
3486
|
-
openDialogErrorWithTabs as f,
|
|
3487
|
-
getSdk as g,
|
|
3488
|
-
formDocsEndpointDL as h,
|
|
3489
|
-
isEnabledFeature as i,
|
|
3490
|
-
useMountedState as j,
|
|
3491
|
-
openDialogConfirm as k,
|
|
3492
|
-
logger as l,
|
|
3493
|
-
getDefaultColorPalette as m,
|
|
3494
|
-
getDefaultPaletteLabel as n,
|
|
3495
|
-
openDialog as o,
|
|
3496
|
-
iconUndefined as p,
|
|
3497
|
-
parseError as q,
|
|
3498
|
-
getLocation as r,
|
|
3499
|
-
selectAsideHeaderData as s,
|
|
3500
|
-
showReadOnlyToast as t,
|
|
3501
|
-
useRouter as u,
|
|
3502
|
-
initBeforeRequestInterceptor as v,
|
|
3503
|
-
refreshAuthToken as w,
|
|
3504
|
-
getFakeEntry as x,
|
|
3505
|
-
getUrlParamFromStr as y,
|
|
3506
|
-
getRouter as z
|
|
3507
|
-
};
|