@retailcrm/datalens-ui 0.0.0 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +3 -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 +4 -0
- package/ui/assets/icons/arr-reverse.svg.js +4 -0
- package/ui/assets/icons/arr-right.svg.js +4 -0
- package/ui/assets/icons/arrow-left.svg.js +4 -0
- package/ui/assets/icons/arrow-right.svg.js +4 -0
- package/ui/assets/icons/avatar-middle.png.js +4 -0
- package/ui/assets/icons/broken.svg.js +4 -0
- package/ui/assets/icons/charts-visualisations/vis-flat-table.svg.js +4 -0
- package/ui/assets/icons/charts-visualisations/vis-geolayers.svg.js +4 -0
- package/ui/assets/icons/charts-visualisations/vis-metric.svg.js +4 -0
- package/ui/assets/icons/check-folder.svg.js +4 -0
- package/ui/assets/icons/collections/collection-colored-big-dark.svg.js +4 -0
- package/ui/assets/icons/collections/collection-colored-big.svg.js +4 -0
- package/ui/assets/icons/collections/collection-colored-dark.svg.js +4 -0
- package/ui/assets/icons/collections/collection-colored.svg.js +4 -0
- package/ui/assets/icons/collections/collection.svg.js +4 -0
- package/ui/assets/icons/collections/grid.svg.js +4 -0
- package/ui/assets/icons/collections/workbook-colored.svg.js +4 -0
- package/ui/assets/icons/collections/workbook.svg.js +4 -0
- package/ui/assets/icons/connections/choveryt.svg.js +4 -0
- package/ui/assets/icons/connections/undefined.svg.js +4 -0
- package/ui/assets/icons/copy-xmark.svg.js +4 -0
- package/ui/assets/icons/cross.svg.js +4 -0
- package/ui/assets/icons/dl-auth-logo-dark.svg.js +4 -0
- package/ui/assets/icons/dl-auth-logo-light.svg.js +4 -0
- package/ui/assets/icons/error.svg.js +4 -0
- package/ui/assets/icons/filter-tooltip.svg.js +4 -0
- package/ui/assets/icons/folder.svg.js +4 -0
- package/ui/assets/icons/funnel-clear.svg.js +4 -0
- package/ui/assets/icons/gradients/blue-gray-red.svg.js +4 -0
- package/ui/assets/icons/gradients/blue-yellow-red.svg.js +4 -0
- package/ui/assets/icons/gradients/blue.svg.js +4 -0
- package/ui/assets/icons/gradients/cyan.svg.js +4 -0
- package/ui/assets/icons/gradients/golden.svg.js +4 -0
- package/ui/assets/icons/gradients/gray.svg.js +4 -0
- package/ui/assets/icons/gradients/green-blue.svg.js +4 -0
- package/ui/assets/icons/gradients/green.svg.js +4 -0
- package/ui/assets/icons/gradients/oceanic.svg.js +4 -0
- package/ui/assets/icons/gradients/orange-blue-green.svg.js +4 -0
- package/ui/assets/icons/gradients/orange-gray-blue.svg.js +4 -0
- package/ui/assets/icons/gradients/orange-violet-blue.svg.js +4 -0
- package/ui/assets/icons/gradients/orange-yellow.svg.js +4 -0
- package/ui/assets/icons/gradients/pink-gray-green.svg.js +4 -0
- package/ui/assets/icons/gradients/red-blue.svg.js +4 -0
- package/ui/assets/icons/gradients/red-orange-green.svg.js +4 -0
- package/ui/assets/icons/gradients/red.svg.js +4 -0
- package/ui/assets/icons/gradients/traffic-light.svg.js +4 -0
- package/ui/assets/icons/gradients/violet-blue-green.svg.js +4 -0
- package/ui/assets/icons/gradients/violet-orange.svg.js +4 -0
- package/ui/assets/icons/gradients/violet.svg.js +4 -0
- package/ui/assets/icons/gradients/yellow-green-blue.svg.js +4 -0
- package/ui/assets/icons/gradients/yellow.svg.js +4 -0
- package/ui/assets/icons/id-square.svg.js +4 -0
- package/ui/assets/icons/info.svg.js +4 -0
- package/ui/assets/icons/lock.svg.js +4 -0
- package/ui/assets/icons/monitoring.svg.js +4 -0
- package/ui/assets/icons/mono-collection.svg.js +4 -0
- package/ui/assets/icons/okay.svg.js +4 -0
- package/ui/assets/icons/os-logo.svg.js +4 -0
- package/ui/assets/icons/palettes/datalens-classic20.svg.js +4 -0
- package/ui/assets/icons/palettes/datalens-default20.svg.js +4 -0
- package/ui/assets/icons/palettes/datalens-neo20.svg.js +4 -0
- package/ui/assets/icons/palettes/emerald-20.svg.js +4 -0
- package/ui/assets/icons/palettes/golden-20.svg.js +4 -0
- package/ui/assets/icons/palettes/neutral-20.svg.js +4 -0
- package/ui/assets/icons/palettes/oceanic-20.svg.js +4 -0
- package/ui/assets/icons/palettes/traffic-light-9.svg.js +4 -0
- package/ui/assets/icons/parameter-section.svg.js +4 -0
- package/ui/assets/icons/placeholder-tooltip.svg.js +4 -0
- package/ui/assets/icons/plus.svg.js +4 -0
- package/ui/assets/icons/ql-chart.svg.js +4 -0
- package/ui/assets/icons/relations-any.svg.js +4 -0
- package/ui/assets/icons/relations-controls.svg.js +4 -0
- package/ui/assets/icons/relations-no-data.svg.js +4 -0
- package/ui/assets/icons/relations-no-link.svg.js +4 -0
- package/ui/assets/icons/relations.svg.js +4 -0
- package/ui/assets/icons/source-table.svg.js +4 -0
- package/ui/assets/icons/sync.svg.js +4 -0
- package/ui/assets/icons/vis-area-100p.svg.js +4 -0
- package/ui/assets/icons/vis-area.svg.js +4 -0
- package/ui/assets/icons/vis-bar-100p.svg.js +4 -0
- package/ui/assets/icons/vis-bar.svg.js +4 -0
- package/ui/assets/icons/vis-column-100p.svg.js +4 -0
- package/ui/assets/icons/vis-column.svg.js +4 -0
- package/ui/assets/icons/vis-combined.svg.js +4 -0
- package/ui/assets/icons/vis-donut.svg.js +4 -0
- package/ui/assets/icons/vis-flat-table.svg.js +4 -0
- package/ui/assets/icons/vis-geolayers.svg.js +4 -0
- package/ui/assets/icons/vis-heatmap.svg.js +4 -0
- package/ui/assets/icons/vis-lines.svg.js +4 -0
- package/ui/assets/icons/vis-metric.svg.js +4 -0
- package/ui/assets/icons/vis-pie.svg.js +4 -0
- package/ui/assets/icons/vis-pivot.svg.js +4 -0
- package/ui/assets/icons/vis-scatter.svg.js +4 -0
- package/ui/assets/icons/vis-treemap.svg.js +4 -0
- package/ui/assets/icons/visualization.svg.js +4 -0
- package/ui/assets/icons/warning-colored.svg.js +4 -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/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 +4 -0
- package/ui/units/connections/assets/icons/gauth-btn-dark-en.svg.js +4 -0
- package/ui/units/connections/assets/icons/gauth-btn-dark-ru.svg.js +4 -0
- package/ui/units/connections/assets/icons/gauth-btn-light-en.svg.js +4 -0
- package/ui/units/connections/assets/icons/gauth-btn-light-ru.svg.js +4 -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 +4 -0
- package/ui/units/datasets/icons/join-inner.svg.js +4 -0
- package/ui/units/datasets/icons/join-left.svg.js +4 -0
- package/ui/units/datasets/icons/join-right.svg.js +4 -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/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/{assets/images/dark/403.js → ui/assets/images/illustration/dark/403.svg.js} +0 -0
- /package/{assets/images/dark/404.js → ui/assets/images/illustration/dark/404.svg.js} +0 -0
- /package/{assets/images/dark/500.js → ui/assets/images/illustration/dark/500.svg.js} +0 -0
- /package/{assets/images/dark/bad_request.js → ui/assets/images/illustration/dark/bad_request.svg.js} +0 -0
- /package/{assets/images/dark/empty_directory.js → ui/assets/images/illustration/dark/empty_directory.svg.js} +0 -0
- /package/{assets/images/dark/empty_state.js → ui/assets/images/illustration/dark/empty_state.svg.js} +0 -0
- /package/{assets/images/dark/no_accounts.js → ui/assets/images/illustration/dark/no_accounts.svg.js} +0 -0
- /package/{assets/images/dark/no_permission.js → ui/assets/images/illustration/dark/no_permission.svg.js} +0 -0
- /package/{assets/images/dark/project.js → ui/assets/images/illustration/dark/project.svg.js} +0 -0
- /package/{assets/images/dark/success_operation.js → ui/assets/images/illustration/dark/success_operation.svg.js} +0 -0
- /package/{assets/images/light/403.js → ui/assets/images/illustration/light/403.svg.js} +0 -0
- /package/{assets/images/light/404.js → ui/assets/images/illustration/light/404.svg.js} +0 -0
- /package/{assets/images/light/500.js → ui/assets/images/illustration/light/500.svg.js} +0 -0
- /package/{assets/images/light/bad_request.js → ui/assets/images/illustration/light/bad_request.svg.js} +0 -0
- /package/{assets/images/light/empty_directory.js → ui/assets/images/illustration/light/empty_directory.svg.js} +0 -0
- /package/{assets/images/light/empty_state.js → ui/assets/images/illustration/light/empty_state.svg.js} +0 -0
- /package/{assets/images/light/no_accounts.js → ui/assets/images/illustration/light/no_accounts.svg.js} +0 -0
- /package/{assets/images/light/no_permission.js → ui/assets/images/illustration/light/no_permission.svg.js} +0 -0
- /package/{assets/images/light/project.js → ui/assets/images/illustration/light/project.svg.js} +0 -0
- /package/{assets/images/light/success_operation.js → ui/assets/images/illustration/light/success_operation.svg.js} +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
|
@@ -0,0 +1,3359 @@
|
|
|
1
|
+
(function (root, factory) {
|
|
2
|
+
if (typeof define === 'function' && define.amd) {
|
|
3
|
+
define([], factory);
|
|
4
|
+
} else if (typeof exports === 'object') {
|
|
5
|
+
module.exports = factory();
|
|
6
|
+
} else {
|
|
7
|
+
root.CLOUD_I18N = factory();
|
|
8
|
+
}
|
|
9
|
+
}(typeof self !== 'undefined' ? self : this, function () {
|
|
10
|
+
return {
|
|
11
|
+
"auth.dialog-change-password": {
|
|
12
|
+
"button_cancel": "Cancel",
|
|
13
|
+
"button_save": "Save",
|
|
14
|
+
"label_admin-notification": "Set a temporary password and ask the user to change it in the account settings",
|
|
15
|
+
"label_error-incorrect-old-password": "Incorrect current password",
|
|
16
|
+
"label_error-passwords-not-match": "These passwords don't match",
|
|
17
|
+
"label_error-required-fields": "You must fill out the required fields",
|
|
18
|
+
"label_new-password": "New password",
|
|
19
|
+
"label_old-password": "Current password",
|
|
20
|
+
"label_password": "Password",
|
|
21
|
+
"label_repeat-password": "Repeat password",
|
|
22
|
+
"label_success-change": "Password successfully changed",
|
|
23
|
+
"title_change-password": "Change password"
|
|
24
|
+
},
|
|
25
|
+
"auth.dialog-change-user-role": {
|
|
26
|
+
"action_user-roles-change-apply": "Save",
|
|
27
|
+
"action_user-roles-change-cancel": "Cancel",
|
|
28
|
+
"label_base-role": "Base role for service access",
|
|
29
|
+
"label_includes-permissions-from": "Includes permissions granted by the role",
|
|
30
|
+
"label_roles-change-failure": "An error occurred while editing the user's access rights",
|
|
31
|
+
"label_roles-change-success": "Role assigned successfully",
|
|
32
|
+
"label_select-role": "Select role",
|
|
33
|
+
"title_update-role": "Setting up access rights"
|
|
34
|
+
},
|
|
35
|
+
"auth.dialog-delete-user": {
|
|
36
|
+
"action_user-profile-deletion-cancel": "Cancel",
|
|
37
|
+
"action_user-profile-deletion-confirm": "Delete user",
|
|
38
|
+
"label_delete-user-confirmation": "Are you sure you want to delete the user? After deletion, it will not be able to use the DataLens service.",
|
|
39
|
+
"label_delete-user-failure": "An error occurred when deleting the user",
|
|
40
|
+
"label_delete-user-success": "User deleted successfully",
|
|
41
|
+
"title_delete-user": "Deleting a user"
|
|
42
|
+
},
|
|
43
|
+
"auth.dialog-edit-profile": {
|
|
44
|
+
"button_cancel": "Cancel",
|
|
45
|
+
"button_save": "Save",
|
|
46
|
+
"label_success-edit": "Profile edited successfully",
|
|
47
|
+
"title_edit-profile": "Edit profile"
|
|
48
|
+
},
|
|
49
|
+
"auth.form-controls": {
|
|
50
|
+
"button_generate-password": "Generate password",
|
|
51
|
+
"label_email": "Email",
|
|
52
|
+
"label_first-name": "First name",
|
|
53
|
+
"label_last-name": "Last name",
|
|
54
|
+
"label_login": "Username",
|
|
55
|
+
"label_password": "Password",
|
|
56
|
+
"label_repeat-password": "Repeat password",
|
|
57
|
+
"label_roles": "Role"
|
|
58
|
+
},
|
|
59
|
+
"auth.sign-in": {
|
|
60
|
+
"button_sign-in": "Sign in",
|
|
61
|
+
"label_error-incorrect-fields": "Incorrect username or password. Check that everything is correct and try again.",
|
|
62
|
+
"label_error-required-fields": "Enter username and password",
|
|
63
|
+
"label_login-placeholder": "Username",
|
|
64
|
+
"label_password-placeholder": "Password",
|
|
65
|
+
"label_sign-up-hint": "Don't have an account?",
|
|
66
|
+
"label_sing-up-link": "Sign up"
|
|
67
|
+
},
|
|
68
|
+
"auth.sign-up": {
|
|
69
|
+
"button_back": "Back",
|
|
70
|
+
"button_sign-up": "Sign up",
|
|
71
|
+
"title_sign-up": "Sign up"
|
|
72
|
+
},
|
|
73
|
+
"auth.user-form-validation": {
|
|
74
|
+
"label_error-email-invalid": "Incorrect email format",
|
|
75
|
+
"label_error-first-name-max": "First name can be up to {{max}} characters in length",
|
|
76
|
+
"label_error-last-name-max": "Last name can be up to {{max}} characters in length",
|
|
77
|
+
"label_error-login-email-invalid": "Incorrect email address format in login",
|
|
78
|
+
"label_error-login-invalid": "The login can consist of Latin letters, numbers, and the symbols - and _. It must start with a letter and end with a letter or a number. It can also be in the correct email format.",
|
|
79
|
+
"label_error-login-max": "Login can be up to {{max}} characters in length",
|
|
80
|
+
"label_error-login-min": "Login must be at least {{min}} characters in length",
|
|
81
|
+
"label_error-password-invalid": "Create a strong password:<br></br>– minimum length: {{min}} characters<br></br>– contains at least one upper and lowercase letter and a number<br></br>– contains at least one special character: !@#$%^&*-_",
|
|
82
|
+
"label_error-password-max": "Password can be up to {{max}} characters in length",
|
|
83
|
+
"label_error-password-not-match": "Passwords do not match",
|
|
84
|
+
"label_error-required-fields": "Please fill in all required fields"
|
|
85
|
+
},
|
|
86
|
+
"auth.user-profile.view": {
|
|
87
|
+
"action_assign-role": "Assign role",
|
|
88
|
+
"action_change-password": "Change password",
|
|
89
|
+
"action_delete-user": "Delete user",
|
|
90
|
+
"action_edit-profile": "Edit account",
|
|
91
|
+
"label_email": "Email",
|
|
92
|
+
"label_failed-to-load-user": "An error occurred while loading the account. The user may have been deleted",
|
|
93
|
+
"label_first-name": "First name",
|
|
94
|
+
"label_last-name": "Last name",
|
|
95
|
+
"label_login": "Login",
|
|
96
|
+
"label_role": "Role",
|
|
97
|
+
"label_user-id": "ID",
|
|
98
|
+
"title_administration": "Administration",
|
|
99
|
+
"title_permissions": "Permissions",
|
|
100
|
+
"title_profile": "Account"
|
|
101
|
+
},
|
|
102
|
+
"chartkit": {
|
|
103
|
+
"categories": "Categories",
|
|
104
|
+
"date": "Date"
|
|
105
|
+
},
|
|
106
|
+
"chartkit.button-spin-input": {
|
|
107
|
+
"error": "Error"
|
|
108
|
+
},
|
|
109
|
+
"chartkit.control": {
|
|
110
|
+
"label_error": "An error occured while executing the selector"
|
|
111
|
+
},
|
|
112
|
+
"chartkit.control.items": {
|
|
113
|
+
"apply": "Apply",
|
|
114
|
+
"close": "Close",
|
|
115
|
+
"close-confirm": "You have unapplied changes. Are you sure you want to close the dialog?",
|
|
116
|
+
"value_undefined": "Not defined"
|
|
117
|
+
},
|
|
118
|
+
"chartkit.custom-error": {
|
|
119
|
+
"close": "Close",
|
|
120
|
+
"copy": "Copy",
|
|
121
|
+
"draw-anyway": "Draw anyway",
|
|
122
|
+
"error": "Error",
|
|
123
|
+
"error-data-provider": "Data fetching error",
|
|
124
|
+
"error-no-data": "No data",
|
|
125
|
+
"error-timeout": "The server response waiting time has been exceeded",
|
|
126
|
+
"error-too-many-lines": "Too many series on the chart",
|
|
127
|
+
"error-ui-sandbox-timeout": "The allowed chart execution time has been exceeded",
|
|
128
|
+
"error-unknown-extension": "Unknown chart type",
|
|
129
|
+
"more": "More",
|
|
130
|
+
"retry": "Retry"
|
|
131
|
+
},
|
|
132
|
+
"chartkit.data-provider": {
|
|
133
|
+
"categories": "Categories",
|
|
134
|
+
"date": "Date",
|
|
135
|
+
"error-authorization": "Authorization error",
|
|
136
|
+
"error-chyt-table-access": "No access to YT table",
|
|
137
|
+
"error-data-fetching": "Data fetching error",
|
|
138
|
+
"error-execution": "Chart execution error",
|
|
139
|
+
"error-network": "Network error",
|
|
140
|
+
"error-no-view-rights": "No view rights",
|
|
141
|
+
"error-not-found": "Not found",
|
|
142
|
+
"error-not-loaded": "Chart loading error",
|
|
143
|
+
"error-oversize-segments": "The maximum number of splits is {{maxNumber}}",
|
|
144
|
+
"error-oversize-table": "Maximum number of {{type}} exceeded",
|
|
145
|
+
"error-oversize_cells": "cells",
|
|
146
|
+
"error-oversize_columns": "columns",
|
|
147
|
+
"error-processing": "Chart processing error",
|
|
148
|
+
"error-runtime-timeout": "Response processing timeout",
|
|
149
|
+
"error-secrets-access": "No write access on chart with secrets",
|
|
150
|
+
"error-too-many-rows": "Too many series on the chart",
|
|
151
|
+
"error-unsupported-data-type": "Unsupported data type",
|
|
152
|
+
"error-unsupported-type": "Unsupported chart type"
|
|
153
|
+
},
|
|
154
|
+
"chartkit.error-details": {
|
|
155
|
+
"close": "Close",
|
|
156
|
+
"copy": "Copy",
|
|
157
|
+
"more": "More"
|
|
158
|
+
},
|
|
159
|
+
"chartkit.insights": {
|
|
160
|
+
"ok": "Ok"
|
|
161
|
+
},
|
|
162
|
+
"chartkit.menu": {
|
|
163
|
+
"button_apply": "Apply",
|
|
164
|
+
"button_cancel": "Cancel",
|
|
165
|
+
"compare-last-day": "Compare with yesterday",
|
|
166
|
+
"compare-last-year": "Compare with last year",
|
|
167
|
+
"data-export": "Export data",
|
|
168
|
+
"embedded": "Embed code",
|
|
169
|
+
"get-code": "Share",
|
|
170
|
+
"hide-comments": "Hide comments",
|
|
171
|
+
"hide-compare": "Disable compare",
|
|
172
|
+
"hide-full-period": "Disable full period",
|
|
173
|
+
"hide-holidays": "Hide weekends",
|
|
174
|
+
"hide-normalize": "Disable",
|
|
175
|
+
"manage-comments": "Comments",
|
|
176
|
+
"normalize": "First point normalization",
|
|
177
|
+
"normalize-division": "Division",
|
|
178
|
+
"normalize-subtraction": "Substraction",
|
|
179
|
+
"open-as-table": "Open as a table",
|
|
180
|
+
"open-edit": "Edit",
|
|
181
|
+
"open-fullscreen": "Open in full screen",
|
|
182
|
+
"open-in-window": "Open in a new tab",
|
|
183
|
+
"show-comments": "Show comments",
|
|
184
|
+
"show-full-period": "Show full period",
|
|
185
|
+
"show-holidays": "Show weekends",
|
|
186
|
+
"show-sources": "Sources",
|
|
187
|
+
"title_select-action": "Select action"
|
|
188
|
+
},
|
|
189
|
+
"chartkit.menu.download-dialog": {
|
|
190
|
+
"button_cancel": "Cancel",
|
|
191
|
+
"button_download": "Save",
|
|
192
|
+
"label_decimal-delimiter": "Fraction delimiter",
|
|
193
|
+
"label_encoding": "Encoding",
|
|
194
|
+
"label_hint": "You can skip this dialog by clicking on the menu element while holding CMD/CTRL",
|
|
195
|
+
"label_title-csv": "Save as CSV",
|
|
196
|
+
"label_title-xlsx": "Save as XLSX",
|
|
197
|
+
"label_values-delimiter": "Delimiter",
|
|
198
|
+
"value_comma": "comma",
|
|
199
|
+
"value_dot": "dot",
|
|
200
|
+
"value_semicolon": "semicolon",
|
|
201
|
+
"value_space": "space",
|
|
202
|
+
"value_tab": "tab"
|
|
203
|
+
},
|
|
204
|
+
"chartkit.menu.export": {
|
|
205
|
+
"export_failed": "Data export error",
|
|
206
|
+
"export_limit_error": "You can export data up to {{limit}}; your data size is {{length}}.",
|
|
207
|
+
"export_success": "Copied to clipboard",
|
|
208
|
+
"format_csv": "CSV",
|
|
209
|
+
"format_image": "Image",
|
|
210
|
+
"format_markdown": "Markdown",
|
|
211
|
+
"format_wiki": "Wiki",
|
|
212
|
+
"format_xlsx": "XLSX",
|
|
213
|
+
"label_data-export-forbidden": "Data export is forbidden by the owner of the connection or dataset",
|
|
214
|
+
"label_export-forbidden.DISABLED_EXPORT_CONNECTION": "The connection owner has forbidden data export",
|
|
215
|
+
"label_export-forbidden.DISABLED_EXPORT_DATASET": "The dataset owner has forbidden data export",
|
|
216
|
+
"label_export-forbidden.DISABLED_EXPORT_TENANT": "The organization's administrator has prohibited data export",
|
|
217
|
+
"label_export-forbidden.PROHIBITED_EXPORT_CONNECTION": "Data export is not available on this connection type",
|
|
218
|
+
"label_export-forbidden.PROHIBITED_EXPORT_PIVOT_TABLE": "Data export is unavailable for this chart type",
|
|
219
|
+
"label_export-forbidden.PROHIBITED_EXPORT_QL_CHART": "Data export is unavailable for this chart type",
|
|
220
|
+
"label_export-forbidden.PROHIBITED_EXPORT_TENANT": "Data export is unavailable in this organization",
|
|
221
|
+
"label_export-forbidden.PROHIBITED_EXPORT_TYPED_QUERY": "Data export is unavailable for this chart type",
|
|
222
|
+
"menu-export": "Save as",
|
|
223
|
+
"menu-screenshot": "Save as image"
|
|
224
|
+
},
|
|
225
|
+
"chartkit.menu.inspector": {
|
|
226
|
+
"button_close": "Close",
|
|
227
|
+
"label_api-waiting": "Maps API",
|
|
228
|
+
"label_api-waiting-hint": "Maps modules loading time",
|
|
229
|
+
"label_caption": "Inspector",
|
|
230
|
+
"label_columns": "Columns",
|
|
231
|
+
"label_config-resolving": "Config resolving",
|
|
232
|
+
"label_data-fetching": "Data fetching",
|
|
233
|
+
"label_data-fetching-danger": "Data loading time exceeds recommended. Optimize the query or limit the amount of requested data.",
|
|
234
|
+
"label_data-fetching-warning": "Data loading time exceeds recommended. Optimize the query or limit the amount of requested data.",
|
|
235
|
+
"label_js-execution": "Execution",
|
|
236
|
+
"label_js-execution-danger": "Processing time exceeds recommended. Simplify the chart or limit the amount of requested data.",
|
|
237
|
+
"label_js-execution-warning": "Processing time exceeds recommended. Simplify the chart or limit the amount of requested data.",
|
|
238
|
+
"label_points": "Points",
|
|
239
|
+
"label_rows": "Rows",
|
|
240
|
+
"label_series": "Series",
|
|
241
|
+
"label_source-info": "Query to data source",
|
|
242
|
+
"label_source-request-data": "Request body",
|
|
243
|
+
"label_source-request-query": "Request query",
|
|
244
|
+
"label_source-request-result": "Query result",
|
|
245
|
+
"label_source-response-body": "Response",
|
|
246
|
+
"label_sources": "Data sources",
|
|
247
|
+
"label_widget-rendering": "Rendering"
|
|
248
|
+
},
|
|
249
|
+
"collections": {
|
|
250
|
+
"action_access": "Access",
|
|
251
|
+
"action_cancel": "Cancel",
|
|
252
|
+
"action_clear-filters": "Reset filters",
|
|
253
|
+
"action_connect-your-data": "Connect your data",
|
|
254
|
+
"action_copy": "Copy",
|
|
255
|
+
"action_create": "Create",
|
|
256
|
+
"action_create-collection": "Collection",
|
|
257
|
+
"action_create-collection-hint": "Groups workbooks and other collections",
|
|
258
|
+
"action_create-workbook": "Workbook",
|
|
259
|
+
"action_create-workbook-hint": "Stores related connections, datasets, charts, and dashboards",
|
|
260
|
+
"action_delete": "Delete",
|
|
261
|
+
"action_edit": "Edit",
|
|
262
|
+
"action_export": "Export",
|
|
263
|
+
"action_move": "Move",
|
|
264
|
+
"action_reset-all": "Reset all",
|
|
265
|
+
"action_select": "Select",
|
|
266
|
+
"action_select-all": "Select all",
|
|
267
|
+
"label_empty-list": "No collections or workbooks",
|
|
268
|
+
"label_last-modified": "Last modified",
|
|
269
|
+
"label_not-found": "No results",
|
|
270
|
+
"label_root-title": "Collections and workbooks",
|
|
271
|
+
"label_status-deleting": "Deleting",
|
|
272
|
+
"label_status-importing": "Importing",
|
|
273
|
+
"label_title": "Name",
|
|
274
|
+
"section_create-first": "You can create a workbook and connect your data",
|
|
275
|
+
"section_incorrect-filters": "Try other values in filters"
|
|
276
|
+
},
|
|
277
|
+
"common.components": {
|
|
278
|
+
"label_details": "View hint"
|
|
279
|
+
},
|
|
280
|
+
"common.data-types": {
|
|
281
|
+
"label_array_float": "Array of fractional numbers",
|
|
282
|
+
"label_array_int": "Array of integers",
|
|
283
|
+
"label_array_str": "Array of strings",
|
|
284
|
+
"label_date": "Date",
|
|
285
|
+
"label_float": "Fractional number",
|
|
286
|
+
"label_genericdatetime": "Date and time",
|
|
287
|
+
"label_geopoint": "Geopoint",
|
|
288
|
+
"label_geopolygon": "Geopolygon",
|
|
289
|
+
"label_integer": "Integer",
|
|
290
|
+
"label_markup": "Markup",
|
|
291
|
+
"label_string": "String",
|
|
292
|
+
"label_unsupported": "Unsupported type"
|
|
293
|
+
},
|
|
294
|
+
"common.errors": {
|
|
295
|
+
"label_error-access-message": "This token cannot be used with the specified parameters",
|
|
296
|
+
"label_error-invalid-format-token-message": "Invalid token format",
|
|
297
|
+
"label_error-invalid-token-message": "This token is not suitable for this embed",
|
|
298
|
+
"label_error-outdated-message": "Embed settings expired",
|
|
299
|
+
"label_error-token-not-found-message": "The embed has no token"
|
|
300
|
+
},
|
|
301
|
+
"common.read-only": {
|
|
302
|
+
"toast_editing-warning": "Due to maintenance work, the service is currently read-only"
|
|
303
|
+
},
|
|
304
|
+
"component.action-panel.view": {
|
|
305
|
+
"button_open-navigation": "Open navigation",
|
|
306
|
+
"button_redo": "Restore",
|
|
307
|
+
"button_switch-public": "Public access",
|
|
308
|
+
"button_undo": "Undo",
|
|
309
|
+
"label_history-changes": "Change history",
|
|
310
|
+
"label_history-changes-date-limit": "You can view the history for the past three months",
|
|
311
|
+
"label_history-changes-date-limit-dataset": "You can view the history since"
|
|
312
|
+
},
|
|
313
|
+
"component.aside-header-settings.view": {
|
|
314
|
+
"field_interface-theme": "Interface theme",
|
|
315
|
+
"field_interface-theme-contrast": "Contrast",
|
|
316
|
+
"field_language": "Language",
|
|
317
|
+
"label_language-en": "English",
|
|
318
|
+
"label_language-ru": "Русский",
|
|
319
|
+
"label_not-found": "No results",
|
|
320
|
+
"label_placeholder-search": "Search settings",
|
|
321
|
+
"label_title": "Settings",
|
|
322
|
+
"section_appearance": "Appearance",
|
|
323
|
+
"section_language": "Language",
|
|
324
|
+
"value_theme-contrast-enhanced": "High",
|
|
325
|
+
"value_theme-contrast-normal": "Normal",
|
|
326
|
+
"value_theme-dark": "Dark",
|
|
327
|
+
"value_theme-light": "Light",
|
|
328
|
+
"value_theme-system": "System"
|
|
329
|
+
},
|
|
330
|
+
"component.aside-header.view": {
|
|
331
|
+
"label_about": "About",
|
|
332
|
+
"label_account": "Account",
|
|
333
|
+
"label_app-version": "Version",
|
|
334
|
+
"label_collections": "Collections and workbooks",
|
|
335
|
+
"label_docs": "Documentation",
|
|
336
|
+
"label_gallery": "DataLens Gallery",
|
|
337
|
+
"label_github": "GitHub",
|
|
338
|
+
"label_logout": "Log out",
|
|
339
|
+
"label_main": "Help",
|
|
340
|
+
"label_profile-settings": "Profile settings",
|
|
341
|
+
"label_settings": "Settings",
|
|
342
|
+
"switch_collections": "Collections and workbooks",
|
|
343
|
+
"switch_service-settings": "Service settings"
|
|
344
|
+
},
|
|
345
|
+
"component.chart-save-controls": {
|
|
346
|
+
"button_apply": "Apply",
|
|
347
|
+
"button_save": "Save",
|
|
348
|
+
"button_save-as-draft": "Save as draft",
|
|
349
|
+
"button_save-as-new": "Save as copy",
|
|
350
|
+
"button_save-as-published": "Save and make actual",
|
|
351
|
+
"button_saved": "Saved"
|
|
352
|
+
},
|
|
353
|
+
"component.chartkit-alerts.view": {
|
|
354
|
+
"button_add": "Add",
|
|
355
|
+
"button_cancel": "Cancel",
|
|
356
|
+
"button_close": "Close",
|
|
357
|
+
"button_details": "More",
|
|
358
|
+
"button_get": "Get",
|
|
359
|
+
"button_retry": "Repeat",
|
|
360
|
+
"button_save": "Save",
|
|
361
|
+
"context_timezone": "DataLens is <linkTimezone>not yet able</linkTimezone> to work with timezones: all dates on the charts are displayed in UTC+0.<br></br><br></br>If you shift the time series using a formula in the dataset or a code in Editor, you must select the appropriate time zone here.<br></br><br></br>Example: if you add 3 hours to the datetime values in the dataset, select +03:00 here.",
|
|
362
|
+
"field_aggregation-function": "Aggregation function",
|
|
363
|
+
"field_description": "Description",
|
|
364
|
+
"field_name": "Name",
|
|
365
|
+
"field_oauth": "OAuth token",
|
|
366
|
+
"field_recipients": "Recipients",
|
|
367
|
+
"field_timezone": "Timezone",
|
|
368
|
+
"label_add": "Add",
|
|
369
|
+
"label_approve-alert-remove": "Are you sure you want to delete alert?",
|
|
370
|
+
"label_approve-draft": "Are you sure you want to discard changes?",
|
|
371
|
+
"label_condition": "Condition",
|
|
372
|
+
"label_critical-error": "Critical error",
|
|
373
|
+
"label_error": "An error occurred",
|
|
374
|
+
"label_new-alert": "New alert",
|
|
375
|
+
"label_optional": "optional",
|
|
376
|
+
"label_params-absolute-date": "The chart parameters use fixed dates.<br></br>Make sure that you use <link>relative dates</link> for the alert.",
|
|
377
|
+
"label_series": "Series",
|
|
378
|
+
"label_unsupported-chart": "You can't create an alert on this chart",
|
|
379
|
+
"label_unsupported-datetime": "There should be a continuous time series on the X-axis",
|
|
380
|
+
"label_unsupported-series-type": "The series type is not supported",
|
|
381
|
+
"label_unsupported-widget-type": "The chart type is not supported",
|
|
382
|
+
"label_unsupported-y-axis-type": "The Y-axis type should be linear",
|
|
383
|
+
"label_validation-error": "Validation error",
|
|
384
|
+
"label_y-axis": "Y-axis",
|
|
385
|
+
"section_additional-settings": "Additional settings",
|
|
386
|
+
"section_alert-settings": "Alert parameters",
|
|
387
|
+
"section_general": "General",
|
|
388
|
+
"section_metrics": "Metrics",
|
|
389
|
+
"section_notifications": "Notification channels",
|
|
390
|
+
"section_title": "Alerts",
|
|
391
|
+
"toast_alert-created": "Alert created",
|
|
392
|
+
"toast_alert-removed": "Alert deleted",
|
|
393
|
+
"toast_alert-updated": "Alert updated",
|
|
394
|
+
"toast_create-alert-failed": "Failed to create alert",
|
|
395
|
+
"toast_existed": "Entry already exists",
|
|
396
|
+
"toast_remove-alert-failed": "Failed to delete alert",
|
|
397
|
+
"toast_update-alert-failed": "Failed to update alert",
|
|
398
|
+
"validation_invalid": "Incorrect value in field",
|
|
399
|
+
"validation_no-recipients": "You must have at least one recipient",
|
|
400
|
+
"validation_not-empty": "The field cannot be empty",
|
|
401
|
+
"validation_not-number": "Value must be a number",
|
|
402
|
+
"validation_series-max": "The number of series should not exceed {{max}}",
|
|
403
|
+
"validation_series-selected": "Select a series",
|
|
404
|
+
"validation_threshold-error-no-alarm": "You must specify Alarm threshold",
|
|
405
|
+
"value_aggregation-AVG": "Average",
|
|
406
|
+
"value_aggregation-COUNT": "Count",
|
|
407
|
+
"value_aggregation-LAST_NON_NAN": "Last",
|
|
408
|
+
"value_aggregation-MAX": "Maximum",
|
|
409
|
+
"value_aggregation-MIN": "Minimum",
|
|
410
|
+
"value_aggregation-SUM": "Sum",
|
|
411
|
+
"value_all-series": "All",
|
|
412
|
+
"value_condition-EQ": "Equals to",
|
|
413
|
+
"value_condition-GT": "Greater than",
|
|
414
|
+
"value_condition-GTE": "Greater than or equals",
|
|
415
|
+
"value_condition-LT": "Less than",
|
|
416
|
+
"value_condition-LTE": "Less than or equals",
|
|
417
|
+
"value_condition-NE": "Not equals to",
|
|
418
|
+
"value_select-series": "Select",
|
|
419
|
+
"value_y-axis-number": "Аxis {{num}}"
|
|
420
|
+
},
|
|
421
|
+
"component.chartkit-error.codes": {
|
|
422
|
+
"403": "No access to view data",
|
|
423
|
+
"404": "Data source not found",
|
|
424
|
+
"ERR.CHARTS.CONFIG_LOADING_ERROR": "No view rights for <link>chart</link>",
|
|
425
|
+
"ERR.CHARTS.REQUEST_SIZE_LIMIT_EXCEEDED": "Data size limit exceeded",
|
|
426
|
+
"ERR.CHARTS.UNSUPPORTED_DATA_TYPE": "Unsupported data type",
|
|
427
|
+
"ERR.DS_API": "Datasets internal error",
|
|
428
|
+
"ERR.DS_API.CLIQUE_STOPPED": "CHYT clique is not running",
|
|
429
|
+
"ERR.DS_API.DATABASE_UNAVAILABLE": "Database unavailable",
|
|
430
|
+
"ERR.DS_API.DB": "Source error",
|
|
431
|
+
"ERR.DS_API.DB.CHYT": "CHYT error",
|
|
432
|
+
"ERR.DS_API.DB.CHYT.INVALID_SORTED_JOIN": "Incorrect connection between tables",
|
|
433
|
+
"ERR.DS_API.DB.COLUMN_DOES_NOT_EXIST": "Using non-existent field",
|
|
434
|
+
"ERR.DS_API.DB.DATA_PREPARATION_NOT_FINISHED": "Data preparation is not completed yet",
|
|
435
|
+
"ERR.DS_API.DB.INVALID_QUERY": "Invalid SQL query",
|
|
436
|
+
"ERR.DS_API.DB.MEMORY_LIMIT_EXCEEDED": "Memory limit has been exceeded during query execution",
|
|
437
|
+
"ERR.DS_API.DB.METRICA": "Metrika error",
|
|
438
|
+
"ERR.DS_API.DB.SOURCE_DOES_NOT_EXIST": "Using non-existent table",
|
|
439
|
+
"ERR.DS_API.DB.SOURCE_ERROR.CLOSED_PREMATURELY": "The data source has terminated the connection",
|
|
440
|
+
"ERR.DS_API.DB.SOURCE_ERROR.INVALID_RESPONSE": "The data source is not responding",
|
|
441
|
+
"ERR.DS_API.DB.SOURCE_ERROR.TIMEOUT": "Query execution time exceeded in the data source",
|
|
442
|
+
"ERR.DS_API.FIELD.NOT_FOUND": "Using non-existent field",
|
|
443
|
+
"ERR.DS_API.FILTER.INVALID_VALUE": "Incorrect filter value",
|
|
444
|
+
"ERR.DS_API.FORMULA": "Error in formula",
|
|
445
|
+
"ERR.DS_API.NO_AVAILABLE_SUBPRODUCTS": "Your subscription to an item from the Marketplace has expired",
|
|
446
|
+
"ERR.DS_API.REFERENCED_ENTRY_ACCESS_DENIED_CONNECTION": "No access to <link>connection</link>",
|
|
447
|
+
"ERR.DS_API.ROW_COUNT_LIMIT": "Too many rows",
|
|
448
|
+
"ERR.DS_API.SOURCE_CONFIG.TABLE_NOT_CONFIGURED": "Invalid table configuration",
|
|
449
|
+
"ERR.DS_API.US.ACCESS_DENIED_DATASET": "No access to <link>dataset</link>",
|
|
450
|
+
"ERR.DS_API.US.BAD_REQUEST": "Internal error",
|
|
451
|
+
"ERR.DS_API.US.OBJ_NOT_FOUND": "Dataset not found",
|
|
452
|
+
"ERR.DS_API.US.WORKBOOK_ISOLATION_INTERRUPTION_DATASET": "<link>Dataset</link> not found in the current workbook",
|
|
453
|
+
"ERR.UNKNOWN": "Internal error"
|
|
454
|
+
},
|
|
455
|
+
"component.chartkit-error.view": {
|
|
456
|
+
"button_details": "More",
|
|
457
|
+
"button_report": "Report a problem"
|
|
458
|
+
},
|
|
459
|
+
"component.collection-breadcrumbs": {
|
|
460
|
+
"label_root-title": "Collections and workbooks"
|
|
461
|
+
},
|
|
462
|
+
"component.collection-filters": {
|
|
463
|
+
"label_filter-by-ownership-all": "All",
|
|
464
|
+
"label_filter-by-ownership-only-my": "Only mine",
|
|
465
|
+
"label_filter-by-type-all": "All types",
|
|
466
|
+
"label_filter-by-type-only-collections": "Only collections",
|
|
467
|
+
"label_filter-by-type-only-workbooks": "Only workbooks",
|
|
468
|
+
"label_filter-string-placeholder": "Search by name",
|
|
469
|
+
"label_sort-first-alphabet-asc": "Sort A to Z",
|
|
470
|
+
"label_sort-first-alphabet-desc": "Sort Z to A",
|
|
471
|
+
"label_sort-first-new": "Newest first",
|
|
472
|
+
"label_sort-first-old": "Oldest first"
|
|
473
|
+
},
|
|
474
|
+
"component.collections-structure": {
|
|
475
|
+
"action_cancel": "Cancel",
|
|
476
|
+
"action_copy": "Copy",
|
|
477
|
+
"action_create": "Create",
|
|
478
|
+
"action_create-collection": "Create collection",
|
|
479
|
+
"action_create-workbook": "Create workbook",
|
|
480
|
+
"action_delete": "Delete",
|
|
481
|
+
"action_edit-collection": "Edit collection",
|
|
482
|
+
"action_edit-workbook": "Edit workbook",
|
|
483
|
+
"action_exit": "Close",
|
|
484
|
+
"action_move": "Move",
|
|
485
|
+
"action_save": "Save",
|
|
486
|
+
"action_stay": "Remain",
|
|
487
|
+
"button_choose-file": "Select a file",
|
|
488
|
+
"button_deploy": "Deploy",
|
|
489
|
+
"label_collection-already-exists-error": "A collection with that name already exists",
|
|
490
|
+
"label_connection": "connection",
|
|
491
|
+
"label_copy": "Copy to",
|
|
492
|
+
"label_copy-denied-title": "Insufficient permissions to copy",
|
|
493
|
+
"label_create-denied-title": "Insufficient permissions to create object",
|
|
494
|
+
"label_create-entry-in-workbook": "Choose a workbook to create a",
|
|
495
|
+
"label_dashboard": "dashboard",
|
|
496
|
+
"label_dataset": "dataset",
|
|
497
|
+
"label_delete-collection": "Delete collection",
|
|
498
|
+
"label_delete-collections-for-delete": "Collections to be deleted",
|
|
499
|
+
"label_delete-collections-workbooks": "Delete collections and workbooks",
|
|
500
|
+
"label_delete-workbook": "Delete workbook",
|
|
501
|
+
"label_delete-workbooks-for-delete": "Workbooks to be deleted",
|
|
502
|
+
"label_deploy-denied-title": "Insufficient permissions to create a workbook",
|
|
503
|
+
"label_description": "Description",
|
|
504
|
+
"label_empty-collection": "This collection is empty or nothing matching the filter conditions was found",
|
|
505
|
+
"label_error-file-type": "File must be in JSON format",
|
|
506
|
+
"label_help-import-hint": "Use a workbook configuration file in JSON format. You can get such a file by <link>exporting the workbook</link>.",
|
|
507
|
+
"label_import-exit-description": "This will not affect the import process. The import window can be opened again by clicking on the workbook in the list.",
|
|
508
|
+
"label_import-from-file": "Import from file",
|
|
509
|
+
"label_move": "Move to",
|
|
510
|
+
"label_move-denied-title": "Insufficient permissions to move object",
|
|
511
|
+
"label_ql": "QL chart",
|
|
512
|
+
"label_report": "report",
|
|
513
|
+
"label_title": "Name",
|
|
514
|
+
"label_wizard": "chart",
|
|
515
|
+
"label_workbook-already-exists-error": "A workbook with that name already exists",
|
|
516
|
+
"section_delete-collection": "Are you sure you want to delete the collection \"{{name}}\"?",
|
|
517
|
+
"section_delete-workbook": "Are you sure you want to delete the workbook \"{{name}}\"?",
|
|
518
|
+
"title_deploy": "Deploy to",
|
|
519
|
+
"title_import-exit": "Do you want to close the import window?",
|
|
520
|
+
"toast_collection-already-exists-error": "A collection with that name already exists",
|
|
521
|
+
"toast_get-gallery-file-error": "Deployment error, please contact the support service",
|
|
522
|
+
"toast_get-json-error": "An error occurred while trying to get a JSON from the file",
|
|
523
|
+
"toast_outdated-workbook-info": "The workbook information is outdated. Please refresh the page.",
|
|
524
|
+
"toast_workbook-already-exists-error": "A workbook with that name already exists"
|
|
525
|
+
},
|
|
526
|
+
"component.color-palette-editor": {
|
|
527
|
+
"button_apply": "Save and apply",
|
|
528
|
+
"button_cancel": "Cancel",
|
|
529
|
+
"button_close": "Cancel",
|
|
530
|
+
"button_delete-cancel": "Cancel",
|
|
531
|
+
"button_delete-confirm": "Delete",
|
|
532
|
+
"button_delete-title": "Delete palette",
|
|
533
|
+
"button_save": "Add palette",
|
|
534
|
+
"label_add-color": "Add color",
|
|
535
|
+
"label_add-color-disabled": "You can't add more than {{count}} colors",
|
|
536
|
+
"label_add-palette": "Add palette",
|
|
537
|
+
"label_bars-custom-color-error": "Use HEX code to indicate a color",
|
|
538
|
+
"label_default-palette": "Default palette",
|
|
539
|
+
"label_delete-message": "You are going to delete the palette. Charts that use it will switch to the system palette. Are you sure you want to delete it?",
|
|
540
|
+
"label_delete-palette": "Delete",
|
|
541
|
+
"label_edit-palette": "Edit",
|
|
542
|
+
"label_gradient-palette-description": "They are used with numerical indicators.",
|
|
543
|
+
"label_gradient-palette-title": "Gradient color palettes",
|
|
544
|
+
"label_header-caption": "Configure color palettes",
|
|
545
|
+
"label_palette-description": "They are used for discrete values: names of indicators, measurement values.",
|
|
546
|
+
"label_palette-name": "Palette name",
|
|
547
|
+
"label_palette-title": "Color palettes",
|
|
548
|
+
"toast_create-failed": "Failed to create palette",
|
|
549
|
+
"toast_delete-failed": "Failed to delete palette",
|
|
550
|
+
"toast_update-default-palette-failed": "Error changing default palette",
|
|
551
|
+
"toast_update-default-palette-success": "The default palette was applied to all available charts.",
|
|
552
|
+
"toast_update-failed": "Failed to update palette",
|
|
553
|
+
"tooltip_disabled-due-rights": "Available only to the administrator"
|
|
554
|
+
},
|
|
555
|
+
"component.copy-entry-to-workbook-dialog": {
|
|
556
|
+
"action_cancel": "Cancel",
|
|
557
|
+
"action_copy": "Copy",
|
|
558
|
+
"action_show-all": "Show all",
|
|
559
|
+
"label_charts": "Charts",
|
|
560
|
+
"label_connections": "Connections",
|
|
561
|
+
"label_copy-warning": "The object and all related objects will be copied to the workbook.",
|
|
562
|
+
"label_current-entry": "Selected object",
|
|
563
|
+
"label_dashboards": "Dashboards",
|
|
564
|
+
"label_datasets": "Datasets",
|
|
565
|
+
"label_file-connection-warning": "Copying file connections is not currently supported.",
|
|
566
|
+
"label_linked-objects": "Linked objects",
|
|
567
|
+
"label_no-linked-objects": "Empty",
|
|
568
|
+
"label_objects": [
|
|
569
|
+
"{{count}} object",
|
|
570
|
+
"{{count}} objects",
|
|
571
|
+
"{{count}} objects",
|
|
572
|
+
"0 objects"
|
|
573
|
+
],
|
|
574
|
+
"label_unknown-error": "An error occured during copying. Please try again later.",
|
|
575
|
+
"title": "Copy objects to workbooks"
|
|
576
|
+
},
|
|
577
|
+
"component.dashkit.view": {
|
|
578
|
+
"button_retry": "Repeat",
|
|
579
|
+
"label_copy": "Copy",
|
|
580
|
+
"label_delete": "Delete",
|
|
581
|
+
"label_edit": "Edit",
|
|
582
|
+
"label_error": "Error",
|
|
583
|
+
"label_render-markdown-error": "Failed to render markdown",
|
|
584
|
+
"label_settings": "Settings"
|
|
585
|
+
},
|
|
586
|
+
"component.dialog-aliases.view": {
|
|
587
|
+
"button_add-alias": "Add alias",
|
|
588
|
+
"button_apply": "Apply",
|
|
589
|
+
"button_cancel": "Cancel",
|
|
590
|
+
"label_card": "You cannot create aliases between fields of the same dataset or between fields with the same ID in different datasets.",
|
|
591
|
+
"label_card-used-params": "You cannot add an alias to a widget without the set parameters",
|
|
592
|
+
"label_collapse-label": "List of all aliases added",
|
|
593
|
+
"label_empty": "No aliases configured",
|
|
594
|
+
"label_info_1": "Aliases allow you to use matching fields to link widgets based on different datasets, as well as manual selectors.",
|
|
595
|
+
"label_info_2": "Aliases' field types must match.",
|
|
596
|
+
"label_link-type": "Current link type",
|
|
597
|
+
"label_required-add-alias": "Add an alias to change the link type",
|
|
598
|
+
"title_add-alias": "Alias setup"
|
|
599
|
+
},
|
|
600
|
+
"component.dialog-collection-no-create-permission.view": {
|
|
601
|
+
"button_ok": "Ok",
|
|
602
|
+
"label_title": "Insufficient permissions",
|
|
603
|
+
"section_message": "To create collections and workbooks, you need the <code>datalens.editor</code> role. Please contact your administrator."
|
|
604
|
+
},
|
|
605
|
+
"component.dialog-copy-entry.view": {
|
|
606
|
+
"button_apply": "Apply",
|
|
607
|
+
"button_cancel": "Cancel",
|
|
608
|
+
"dialog_dash-deprecation-copy-text": "The way the selectors behave on the dashboards you previously created may be different from the way they do on new dashboards. For consistency, you may want to update your dashboard configuration.",
|
|
609
|
+
"label_copy": "copy",
|
|
610
|
+
"label_default-name": "New dataset",
|
|
611
|
+
"label_entry-name-already-exists": "That name is already in use, try another one",
|
|
612
|
+
"label_error-on-template-apply": "An error occurred while deploying the template",
|
|
613
|
+
"label_placeholder": "Name",
|
|
614
|
+
"section_caption": "Where to copy?",
|
|
615
|
+
"section_caption-dashboard": "Duplicate dashboard",
|
|
616
|
+
"section_caption-dataset": "Duplicate dataset",
|
|
617
|
+
"section_caption-widget": "Duplicate chart",
|
|
618
|
+
"toast_copy-failed": "Failed to copy"
|
|
619
|
+
},
|
|
620
|
+
"component.dialog-copy-workbook.view": {
|
|
621
|
+
"button_cancel": "Cancel",
|
|
622
|
+
"button_done": "Done",
|
|
623
|
+
"section_caption": "Copy workbook"
|
|
624
|
+
},
|
|
625
|
+
"component.dialog-create-dashboard.view": {
|
|
626
|
+
"button_apply": "Create",
|
|
627
|
+
"button_cancel": "Cancel",
|
|
628
|
+
"label_default-name": "New dashboard",
|
|
629
|
+
"label_entry-name-already-exists": "That name is already in use, try another one",
|
|
630
|
+
"label_placeholder": "Name",
|
|
631
|
+
"section_caption": "Create dashboard",
|
|
632
|
+
"toast_create-dashboard-failed": "Failed to create dashboard"
|
|
633
|
+
},
|
|
634
|
+
"component.dialog-create-editor-chart.view": {
|
|
635
|
+
"button_apply": "Save",
|
|
636
|
+
"button_cancel": "Cancel",
|
|
637
|
+
"label_default-name": "New chart",
|
|
638
|
+
"label_entry-name-already-exists": "That name is already in use, try another one",
|
|
639
|
+
"label_placeholder": "New chart",
|
|
640
|
+
"section_caption": "Save chart",
|
|
641
|
+
"toast_create-editor-chart-failed": "Failed to save chart"
|
|
642
|
+
},
|
|
643
|
+
"component.dialog-create-folder.view": {
|
|
644
|
+
"button_apply": "Done",
|
|
645
|
+
"button_cancel": "Cancel",
|
|
646
|
+
"label_default-name": "New folder",
|
|
647
|
+
"label_folder-already-exists": "A folder with this name already exists, try another one",
|
|
648
|
+
"label_placeholder": "Folder name",
|
|
649
|
+
"section_caption": "Create folder",
|
|
650
|
+
"toast_create-folder-failed": "Failed to create folder"
|
|
651
|
+
},
|
|
652
|
+
"component.dialog-create-workbook-entry.view": {
|
|
653
|
+
"label_name": "Name"
|
|
654
|
+
},
|
|
655
|
+
"component.dialog-dash-meta": {
|
|
656
|
+
"button_cancel": "Cancel",
|
|
657
|
+
"button_clear": "Clear",
|
|
658
|
+
"button_contact-service": "Contact support",
|
|
659
|
+
"button_edit": "Edit",
|
|
660
|
+
"button_save": "Save",
|
|
661
|
+
"context_fill-text": "Enter text"
|
|
662
|
+
},
|
|
663
|
+
"component.dialog-delete-entry.view": {
|
|
664
|
+
"button_cancel": "Cancel",
|
|
665
|
+
"button_delete": "Delete",
|
|
666
|
+
"label_delete": "Delete",
|
|
667
|
+
"section_caption": "Are you sure?",
|
|
668
|
+
"toast_delete-failed": "Failed to delete"
|
|
669
|
+
},
|
|
670
|
+
"component.dialog-edit-favorites-alias.view": {
|
|
671
|
+
"button_apply": "Done",
|
|
672
|
+
"button_cancel": "Cancel",
|
|
673
|
+
"button_delete": "Delete label",
|
|
674
|
+
"caption_add": "Add label",
|
|
675
|
+
"caption_rename": "Rename label",
|
|
676
|
+
"label_placeholder": "New name",
|
|
677
|
+
"toast_rename-favorites-alias-failed": "Failed to rename label"
|
|
678
|
+
},
|
|
679
|
+
"component.dialog-edit-warning.view": {
|
|
680
|
+
"button_edit": "Edit current version",
|
|
681
|
+
"button_show-in-history": "Show in history",
|
|
682
|
+
"label_dash-warning-text": "The change history contains not actual versions of the dashboard <b>{{name}}</b> saved later than the current version.",
|
|
683
|
+
"label_dash-warning-title": "Later versions are available for the dashboard"
|
|
684
|
+
},
|
|
685
|
+
"component.dialog-entry-description": {
|
|
686
|
+
"button_cancel": "Cancel",
|
|
687
|
+
"button_clear": "Clear",
|
|
688
|
+
"button_contact-service": "Contact support",
|
|
689
|
+
"button_edit": "Edit",
|
|
690
|
+
"button_save": "Save",
|
|
691
|
+
"context_fill-text": "Enter text"
|
|
692
|
+
},
|
|
693
|
+
"component.dialog-move-entry.view": {
|
|
694
|
+
"button_apply": "Apply",
|
|
695
|
+
"button_cancel": "Cancel",
|
|
696
|
+
"label_entry-name-already-exists": "That name is already in use, try another one",
|
|
697
|
+
"section_caption": "Where to move?",
|
|
698
|
+
"toast_move-failed": "Failed to move"
|
|
699
|
+
},
|
|
700
|
+
"component.dialog-parameter": {
|
|
701
|
+
"button_cancel": "Cancel",
|
|
702
|
+
"button_create": "Add",
|
|
703
|
+
"button_edit": "Save",
|
|
704
|
+
"button_reset": "Initial value",
|
|
705
|
+
"label_default-value-float-error": "Value must be a float",
|
|
706
|
+
"label_default-value-int-error": "Value must be an integer",
|
|
707
|
+
"label_default-value-uint-error": "Value must be an unsigned integer",
|
|
708
|
+
"label_required-field-error": "This is a required field",
|
|
709
|
+
"label_select-validation-type": "Value validation",
|
|
710
|
+
"label_select-validation-type-default": "Default",
|
|
711
|
+
"label_select-validation-type-default-hint": "Standard check for invalid characters",
|
|
712
|
+
"label_select-validation-type-regex": "Regular expression",
|
|
713
|
+
"label_switch-template": "Allow use in source configuration",
|
|
714
|
+
"label_switch-template-warn": "The parameter will be created, but it cannot be used when configuring the source",
|
|
715
|
+
"label_textarea-regex-placeholder": "Regular Python expression",
|
|
716
|
+
"parameter_default-value": "Default value",
|
|
717
|
+
"parameter_false": "False",
|
|
718
|
+
"parameter_name": "Name",
|
|
719
|
+
"parameter_name-error": "Incorrect parameter name",
|
|
720
|
+
"parameter_name-note": "Parameter name restrictions: \n* Lowercase Latin letters, digits, hyphens, and underscores are acceptable. The first character can't be an underscore: `_name`. \n* Parameter name length should not exceed 36 characters. \n* Reserved parameter names that cannot be used: `tab`, `state`, `mode`, `focus`, `grid`, `tz`, `from`, `to`.",
|
|
721
|
+
"parameter_true": "True",
|
|
722
|
+
"parameter_type": "Type",
|
|
723
|
+
"title_create-parameter": "Add parameter",
|
|
724
|
+
"title_edit-parameter": "Edit parameter"
|
|
725
|
+
},
|
|
726
|
+
"component.dialog-related-entities.view": {
|
|
727
|
+
"label_button-retry": "Retry",
|
|
728
|
+
"label_current-object": "Current object",
|
|
729
|
+
"label_entities-count": "Number of related objects:",
|
|
730
|
+
"label_no-relatives": "There are no related objects",
|
|
731
|
+
"label_request-error": "Data request error",
|
|
732
|
+
"label_scope-chart": "Charts",
|
|
733
|
+
"label_scope-connection": "Connections",
|
|
734
|
+
"label_scope-dash": "Dashboards",
|
|
735
|
+
"label_scope-dataset": "Datasets",
|
|
736
|
+
"label_scope-other": "Other",
|
|
737
|
+
"label_title": "Related objects",
|
|
738
|
+
"value_includes": "Contains objects",
|
|
739
|
+
"value_where-contained": "Used in objects"
|
|
740
|
+
},
|
|
741
|
+
"component.dialog-relations.view": {
|
|
742
|
+
"button_apply": "Apply",
|
|
743
|
+
"button_cancel": "Cancel",
|
|
744
|
+
"button_clear-alias": "Delete invalid aliases?",
|
|
745
|
+
"button_delete-alias": "Delete alias",
|
|
746
|
+
"button_disconnect": "Disable",
|
|
747
|
+
"button_incoming": "Ingoing",
|
|
748
|
+
"button_not-linked": "Not linked",
|
|
749
|
+
"button_outcoming": "Outgoing",
|
|
750
|
+
"button_show-related-widgets": "Show linked widgets",
|
|
751
|
+
"label_add-alias": "Alias setup",
|
|
752
|
+
"label_alias-already-exists": "This alias already exists.",
|
|
753
|
+
"label_alias-detail-1": "Linked widgets",
|
|
754
|
+
"label_alias-detail-2": "with parameter",
|
|
755
|
+
"label_alias-same-dataset": "You cannot create an alias with a connection between fields of the same dataset.",
|
|
756
|
+
"label_alias-same-dataset-field": "Fields with the same IDs are already connected, there is no need to create an alias.",
|
|
757
|
+
"label_all": "all",
|
|
758
|
+
"label_both": "Both",
|
|
759
|
+
"label_by-alias": "by alias",
|
|
760
|
+
"label_by-aliases": "by aliases",
|
|
761
|
+
"label_by-dataset-fields": "by dataset fields",
|
|
762
|
+
"label_by-field": "by field",
|
|
763
|
+
"label_by-fields": "by fields",
|
|
764
|
+
"label_by-parameter": "by parameter",
|
|
765
|
+
"label_by-parameters": "by parameters",
|
|
766
|
+
"label_charts": "charts",
|
|
767
|
+
"label_choose-field-for-alias": "Choose field for alias",
|
|
768
|
+
"label_choose-fields-from-list": "Choose fields from list",
|
|
769
|
+
"label_dataset": "dataset",
|
|
770
|
+
"label_datasets": "of the dataset",
|
|
771
|
+
"label_empty-state": "Select widget",
|
|
772
|
+
"label_ignore": "Not linked",
|
|
773
|
+
"label_input": "Input",
|
|
774
|
+
"label_invalid-alias": "Field in the alias created doesn't belong to any dashboard widget parameters. Delete it to allow links to work correctly.",
|
|
775
|
+
"label_invalid-alias-text": "The aliases don't belong to any dashboard widget parameters. Delete them to allow links to work correctly.",
|
|
776
|
+
"label_invalid-alias-title": "Alias error",
|
|
777
|
+
"label_need-default-editor-chart": "To add an alias with an Editor chart, set <link>parameters</link> in the chart settings on the dashboard",
|
|
778
|
+
"label_need-default-external-control": "To add an alias with an external selector, add default <link>parameters</link> in its settings",
|
|
779
|
+
"label_no-connections": "No elements to link",
|
|
780
|
+
"label_no-widget-info": "Unable to load widget data",
|
|
781
|
+
"label_output": "Output",
|
|
782
|
+
"label_placeholder-search": "Search widget list",
|
|
783
|
+
"label_relation-type": "Link type",
|
|
784
|
+
"label_selectors": "selectors",
|
|
785
|
+
"label_unknown": "Unspecified",
|
|
786
|
+
"label_widget": "Widget",
|
|
787
|
+
"title-error": "Unable to display widget title",
|
|
788
|
+
"title_empty-selected-widgets": "No widget selected",
|
|
789
|
+
"title_links": "Links",
|
|
790
|
+
"value_link-affect": "affects",
|
|
791
|
+
"value_link-both": "Widgets affect each other",
|
|
792
|
+
"value_link-ignore": "Widgets don't affect each other",
|
|
793
|
+
"value_link-unknown": "Insufficient data for link detection",
|
|
794
|
+
"value_quote-left": "\"",
|
|
795
|
+
"value_quote-right": "\""
|
|
796
|
+
},
|
|
797
|
+
"component.dialog-rename-entry.view": {
|
|
798
|
+
"button_apply": "Done",
|
|
799
|
+
"button_cancel": "Cancel",
|
|
800
|
+
"label_entry-name-already-exists": "That name is already in use, try another one",
|
|
801
|
+
"label_placeholder": "New name",
|
|
802
|
+
"section_caption": "Rename",
|
|
803
|
+
"toast_rename-failed": "Failed to rename"
|
|
804
|
+
},
|
|
805
|
+
"component.dialog-revisions-diff.view": {
|
|
806
|
+
"button_open-revision-in-new-window": "Open in a new window",
|
|
807
|
+
"field_split-diff": "Divide",
|
|
808
|
+
"label_author": "Author",
|
|
809
|
+
"label_compare-with": "compare with",
|
|
810
|
+
"label_status": "Status",
|
|
811
|
+
"label_without-diff": "No changes",
|
|
812
|
+
"toast_fetch-initial-diff-failed": "Failed to load diff changes",
|
|
813
|
+
"toast_get-revisions-failed": "Failed to load change history",
|
|
814
|
+
"toast_get-script-failed": "Failed to load script"
|
|
815
|
+
},
|
|
816
|
+
"component.dialog-revisions.view": {
|
|
817
|
+
"button_actions": "Actions",
|
|
818
|
+
"button_show-revisions-diff": "View differences between versions",
|
|
819
|
+
"label_current-changes": "Current changes",
|
|
820
|
+
"label_no-changes": "No changes yet",
|
|
821
|
+
"label_progress-open": "Opening",
|
|
822
|
+
"label_progress-publishing": "Publishing",
|
|
823
|
+
"label_status-current": "Current",
|
|
824
|
+
"label_status-draft": "Draft",
|
|
825
|
+
"label_status-published": "Actual",
|
|
826
|
+
"label_status-tooltip-current": "Current",
|
|
827
|
+
"label_status-tooltip-disable": "Not available for view",
|
|
828
|
+
"label_status-tooltip-draft": "Draft",
|
|
829
|
+
"label_status-tooltip-not-actual": "Not actual",
|
|
830
|
+
"label_status-tooltip-published": "Actual",
|
|
831
|
+
"label_tooltip-published": "Published",
|
|
832
|
+
"section_title": "Change history",
|
|
833
|
+
"toast_get-revisions-failed": "Failed to load change history",
|
|
834
|
+
"toast_warning-has-no-saved-changes": "Any unsaved changes will be lost.",
|
|
835
|
+
"value_open-revision": "Open",
|
|
836
|
+
"value_publish-revision": "Make actual"
|
|
837
|
+
},
|
|
838
|
+
"component.dialog-save-as-new-entry.view": {
|
|
839
|
+
"button_apply": "Apply",
|
|
840
|
+
"button_cancel": "Cancel",
|
|
841
|
+
"label_copy": "copy",
|
|
842
|
+
"label_default-name": "New",
|
|
843
|
+
"label_entry-name-already-exists": "That name is already in use, try another one",
|
|
844
|
+
"label_placeholder": "Name",
|
|
845
|
+
"section_caption": "Save as new",
|
|
846
|
+
"toast_save-as-new-failed": "Failed to save as new"
|
|
847
|
+
},
|
|
848
|
+
"component.dialog-save-widget.view": {
|
|
849
|
+
"button_apply": "Save",
|
|
850
|
+
"button_cancel": "Cancel",
|
|
851
|
+
"label_entry-name-already-exists": "That name is already in use, try another one",
|
|
852
|
+
"label_placeholder": "Name",
|
|
853
|
+
"label_widget-name-default": "New chart",
|
|
854
|
+
"section_caption": "Save chart",
|
|
855
|
+
"toast_save-widget-failed": "Failed to save chart"
|
|
856
|
+
},
|
|
857
|
+
"component.dialog-set-actual-confirm.view": {
|
|
858
|
+
"button_cancel": "Cancel",
|
|
859
|
+
"button_confirm": "Yes, make actual",
|
|
860
|
+
"label_text": "A copy of the version you are currently viewing will be created. But you can always return to previous versions.",
|
|
861
|
+
"label_title": "Make actual?"
|
|
862
|
+
},
|
|
863
|
+
"component.dialog-switch-public.view": {
|
|
864
|
+
"button_apply": "Apply",
|
|
865
|
+
"button_cancel": "Cancel",
|
|
866
|
+
"button_continue": "Continue",
|
|
867
|
+
"button_copy": "Copy link",
|
|
868
|
+
"button_disable-all": "Disable all",
|
|
869
|
+
"button_enable-all": "Enable all",
|
|
870
|
+
"button_refresh": "Update",
|
|
871
|
+
"button_repeat": "Repeat",
|
|
872
|
+
"label_access-by-link": "Access via link",
|
|
873
|
+
"label_alert-publish-text": "The object will be available to any user on the internet.",
|
|
874
|
+
"label_alert-publish-text-many": "The objects will be available to any user on the internet.",
|
|
875
|
+
"label_alert-unpublish-text": "The object is publicly available. Are you sure?",
|
|
876
|
+
"label_alert-unpublish-text-many": "Some objects are publicly available. Are you sure?",
|
|
877
|
+
"label_author-description": "When publishing a {{subject}}, you can specify a link to its source or author. The link will be displayed at the bottom of the {{subject}}.",
|
|
878
|
+
"label_author-link": "Link",
|
|
879
|
+
"label_author-link-error": "Invalid link format",
|
|
880
|
+
"label_author-subject-dash": "dashboard",
|
|
881
|
+
"label_author-subject-widget": "chart",
|
|
882
|
+
"label_author-text": "Link text",
|
|
883
|
+
"label_dataset-deny-publish": "Dataset rejected publication change",
|
|
884
|
+
"label_loading-failed": "Failed to load",
|
|
885
|
+
"label_main-attention": "Important: Once you apply the settings, your {{subject}} and all its enabled related objects will become available to all internet users.",
|
|
886
|
+
"label_main-subject-dash": "dashboard",
|
|
887
|
+
"label_main-subject-widget": "chart",
|
|
888
|
+
"label_no-permission-alert": "To change the publication status, you need {{permission}} permission",
|
|
889
|
+
"label_placeholder-publishing-not-enabled": "Publication is not enabled",
|
|
890
|
+
"label_some-entries-not-ready": "Some objects are not ready for publication",
|
|
891
|
+
"md_label_unavaible-publication-attention": "You cannot embed this object because it uses connections that are either unavailable for publication or deleted.",
|
|
892
|
+
"section_alert-publish-title": "Make public?",
|
|
893
|
+
"section_alert-publish-title-many": "Make public?",
|
|
894
|
+
"section_alert-unpublish-title": "Unpublish?",
|
|
895
|
+
"section_alert-unpublish-title-many": "Unpublish objects?",
|
|
896
|
+
"section_author": "Author or link to source",
|
|
897
|
+
"section_connection-relations": "Connections",
|
|
898
|
+
"section_current-entry": "Current object",
|
|
899
|
+
"section_dataset-relations": "Datasets",
|
|
900
|
+
"section_main-title": "Configuring public access",
|
|
901
|
+
"section_object-relations": "Linked objects",
|
|
902
|
+
"section_widget-relations": "Charts",
|
|
903
|
+
"toast_get-publication-preview-failed": "Failed to load",
|
|
904
|
+
"toast_link-copied": "Link copied",
|
|
905
|
+
"toast_switch-publication-status-failed": "Failed to change public access",
|
|
906
|
+
"toast_switch-publication-status-success": "Public access changed"
|
|
907
|
+
},
|
|
908
|
+
"component.dl-dataset-field-list.view": {
|
|
909
|
+
"label_filter-placeholder": "Field"
|
|
910
|
+
},
|
|
911
|
+
"component.dl-dialog-confirm.view": {
|
|
912
|
+
"button-save-chart_apply": "Save and continue",
|
|
913
|
+
"button-save-chart_cancel": "Cancel",
|
|
914
|
+
"button_apply": "Apply",
|
|
915
|
+
"button_cancel": "Cancel",
|
|
916
|
+
"confirm-header": "Confirm action"
|
|
917
|
+
},
|
|
918
|
+
"component.dl-dialog-filter.view": {
|
|
919
|
+
"button_add": "Add",
|
|
920
|
+
"button_apply": "Apply filter",
|
|
921
|
+
"button_cancel": "Cancel",
|
|
922
|
+
"button_left-column-action": "Select all",
|
|
923
|
+
"button_right-column-action": "Clear",
|
|
924
|
+
"label_filter-placeholder": "Search",
|
|
925
|
+
"label_header-title": "Select a field",
|
|
926
|
+
"label_load-limit-reached-warn": "The first 1000 values are shown. Refine your search using the Search field.",
|
|
927
|
+
"label_operation": "Operation",
|
|
928
|
+
"label_select-column-left-item-desc": "Select",
|
|
929
|
+
"label_select-column-left-title": "Available",
|
|
930
|
+
"label_select-column-right-item-desc": "Delete",
|
|
931
|
+
"label_select-column-right-title": "Selected",
|
|
932
|
+
"label_value": "Value"
|
|
933
|
+
},
|
|
934
|
+
"component.dl-dialog-ql-parameter.view": {
|
|
935
|
+
"button_apply": "Apply",
|
|
936
|
+
"button_cancel": "Cancel",
|
|
937
|
+
"label_header-title": "Parameter value",
|
|
938
|
+
"label_value": "Value"
|
|
939
|
+
},
|
|
940
|
+
"component.dl-dialog-warning.view": {
|
|
941
|
+
"button_apply": "Close"
|
|
942
|
+
},
|
|
943
|
+
"component.dl-field-editor.view": {
|
|
944
|
+
"button_cancel": "Cancel",
|
|
945
|
+
"button_create": "Create",
|
|
946
|
+
"button_documentation": "Reference",
|
|
947
|
+
"button_save": "Save",
|
|
948
|
+
"button_save-as": "Save as a new field",
|
|
949
|
+
"label_aggregation": "Aggregation",
|
|
950
|
+
"label_confirm-message": "Are you sure you want to exit? Data will be lost.",
|
|
951
|
+
"label_doc-list-placeholder": "Function",
|
|
952
|
+
"label_field-already-exist": "A field with the specified name already exists.",
|
|
953
|
+
"label_field-id": "Field ID",
|
|
954
|
+
"label_field-id-hint": "The field ID is used to pass filtering parameters for this field on the dashboard or the chart URL. It is allowed to use Latin letters in lowercase, as well as the characters \"_\" and \"-\".",
|
|
955
|
+
"label_field-name": "Name",
|
|
956
|
+
"label_field-name-placeholder": "Field name",
|
|
957
|
+
"label_field-name-placeholder-new": "New field",
|
|
958
|
+
"label_field-source": "Source field",
|
|
959
|
+
"label_field-type": "Field type",
|
|
960
|
+
"label_hide-in-wizard": "Don't display in wizard",
|
|
961
|
+
"label_invalid-id": "Invalid id format",
|
|
962
|
+
"label_show-in-wizard": "Display in wizard",
|
|
963
|
+
"label_source": "Source",
|
|
964
|
+
"label_source-data": "Data source",
|
|
965
|
+
"label_source-is-empty": "Select a source for the field",
|
|
966
|
+
"label_title-is-empty": "The field name must not be empty",
|
|
967
|
+
"value_array_float": "Array of fractional numbers",
|
|
968
|
+
"value_array_int": "Array of integers",
|
|
969
|
+
"value_array_str": "Array of strings",
|
|
970
|
+
"value_auto": "Auto",
|
|
971
|
+
"value_avg": "Average",
|
|
972
|
+
"value_boolean": "Logical",
|
|
973
|
+
"value_count": "Count",
|
|
974
|
+
"value_countunique": "Count (Distinct)",
|
|
975
|
+
"value_date": "Date",
|
|
976
|
+
"value_float": "Fractional number",
|
|
977
|
+
"value_formula": "Formula",
|
|
978
|
+
"value_genericdatetime": "Date and time",
|
|
979
|
+
"value_geopoint": "Geopoint",
|
|
980
|
+
"value_geopolygon": "Geopolygon",
|
|
981
|
+
"value_integer": "Integer",
|
|
982
|
+
"value_max": "Maximum",
|
|
983
|
+
"value_min": "Minimum",
|
|
984
|
+
"value_none": "No",
|
|
985
|
+
"value_source-from-field": "Field from source",
|
|
986
|
+
"value_string": "String",
|
|
987
|
+
"value_sum": "Sum",
|
|
988
|
+
"value_tree_float": "Tree of fractional numbers",
|
|
989
|
+
"value_tree_int": "Tree of integers",
|
|
990
|
+
"value_tree_str": "Tree of strings"
|
|
991
|
+
},
|
|
992
|
+
"component.editor-console.view": {
|
|
993
|
+
"label_failed-loading-logs": "Failed to load logs.",
|
|
994
|
+
"label_max-length-array": "The object is cropped. The maximum length of the array is {{length}}."
|
|
995
|
+
},
|
|
996
|
+
"component.editor-controls": {
|
|
997
|
+
"button_diff": "View diff",
|
|
998
|
+
"button_docs": "View documentation",
|
|
999
|
+
"button_search": "Open search"
|
|
1000
|
+
},
|
|
1001
|
+
"component.editor-search.view": {
|
|
1002
|
+
"button_match-case-title": "Case-sensitive",
|
|
1003
|
+
"label_not-found-search": "Not found",
|
|
1004
|
+
"label_placeholder-search": "Search"
|
|
1005
|
+
},
|
|
1006
|
+
"component.entry-context-menu.view": {
|
|
1007
|
+
"toast_copy-error": "Copy error",
|
|
1008
|
+
"toast_copy-id-success": "ID copied to clipboard",
|
|
1009
|
+
"toast_copy-link-success": "Link copied to clipboard",
|
|
1010
|
+
"value_access": "Permissions",
|
|
1011
|
+
"value_add-favorites-alias": "Add label",
|
|
1012
|
+
"value_copy": "Copy",
|
|
1013
|
+
"value_copy-id": "Copy ID",
|
|
1014
|
+
"value_copy-link": "Copy link",
|
|
1015
|
+
"value_copy-success": "Object copied successfully",
|
|
1016
|
+
"value_delete": "Delete",
|
|
1017
|
+
"value_duplicate": "Duplicate",
|
|
1018
|
+
"value_edit-favorites-alias": "Rename label",
|
|
1019
|
+
"value_migrate-to-workbook": "Migrate to workbook",
|
|
1020
|
+
"value_move": "Move",
|
|
1021
|
+
"value_rename": "Rename",
|
|
1022
|
+
"value_revisions": "Change history",
|
|
1023
|
+
"value_share": "Share",
|
|
1024
|
+
"value_show-related-entities": "Related objects"
|
|
1025
|
+
},
|
|
1026
|
+
"component.entry-label.view": {
|
|
1027
|
+
"label_draft": "Draft",
|
|
1028
|
+
"label_latest": "Latest",
|
|
1029
|
+
"label_locked": "Locked by {{user}}",
|
|
1030
|
+
"label_version": "v{{version}}"
|
|
1031
|
+
},
|
|
1032
|
+
"component.entry-row.view": {
|
|
1033
|
+
"label_no-access": "No access to the object"
|
|
1034
|
+
},
|
|
1035
|
+
"component.entry-suggest.view": {
|
|
1036
|
+
"label_empty-state-not-found-description": "Try entering another value",
|
|
1037
|
+
"label_empty-state-not-found-title": "Nothing found",
|
|
1038
|
+
"label_empty-state-template-description": "Start entering an entity name",
|
|
1039
|
+
"label_empty-state-template-title": "There is nothing yet",
|
|
1040
|
+
"label_option-all": "All types",
|
|
1041
|
+
"label_option-connections": "Connections",
|
|
1042
|
+
"label_option-datasets": "Datasets",
|
|
1043
|
+
"label_option-widgets": "Charts",
|
|
1044
|
+
"label_search-filter-placeholder": "Search by name",
|
|
1045
|
+
"label_type-select-placeholder": "Select type"
|
|
1046
|
+
},
|
|
1047
|
+
"component.error-content.view": {
|
|
1048
|
+
"button_access-rights": "Request permissions",
|
|
1049
|
+
"button_console": "Open console",
|
|
1050
|
+
"button_copy": "Copy {{subject}}",
|
|
1051
|
+
"label_error-general": "Something went wrong",
|
|
1052
|
+
"toast_copied": "Copied"
|
|
1053
|
+
},
|
|
1054
|
+
"component.error-dialog.view": {
|
|
1055
|
+
"button_close": "Close",
|
|
1056
|
+
"button_copy": "Copy",
|
|
1057
|
+
"button_report": "Report a problem",
|
|
1058
|
+
"button_retry": "Retry",
|
|
1059
|
+
"label_db-request": "Sent query:",
|
|
1060
|
+
"label_db-response": "Database response:",
|
|
1061
|
+
"label_error": "Error",
|
|
1062
|
+
"label_export-id": "Export ID:",
|
|
1063
|
+
"label_full-backend-response": "Debug info:",
|
|
1064
|
+
"label_import-id": "Import ID:",
|
|
1065
|
+
"label_request-id": "Request ID:",
|
|
1066
|
+
"label_trace-id": "Trace ID:",
|
|
1067
|
+
"tab_db-request": "Sent query",
|
|
1068
|
+
"tab_db-response": "Database response",
|
|
1069
|
+
"tab_debug": "Debug info",
|
|
1070
|
+
"tab_doc": "Documentation"
|
|
1071
|
+
},
|
|
1072
|
+
"component.expandable-panel.view": {
|
|
1073
|
+
"button_title-collapse": "Collapse",
|
|
1074
|
+
"button_title-expand": "Expand"
|
|
1075
|
+
},
|
|
1076
|
+
"component.field-editor.view": {
|
|
1077
|
+
"button_add-description": "Add description",
|
|
1078
|
+
"button_cancel": "Cancel",
|
|
1079
|
+
"button_create": "Create",
|
|
1080
|
+
"button_manual": "Reference",
|
|
1081
|
+
"button_no": "No",
|
|
1082
|
+
"button_save": "Save",
|
|
1083
|
+
"button_yes": "Yes",
|
|
1084
|
+
"field_aggregation": "Aggregation",
|
|
1085
|
+
"field_data-type": "Data type",
|
|
1086
|
+
"field_description": "Description",
|
|
1087
|
+
"field_field-name": "Name",
|
|
1088
|
+
"field_field-type": "Field type",
|
|
1089
|
+
"field_not-display-in-wizard": "Don't display in wizard",
|
|
1090
|
+
"field_source": "Source",
|
|
1091
|
+
"field_source-data": "Data source",
|
|
1092
|
+
"field_source-field": "Source field",
|
|
1093
|
+
"label_confirm-question-on-error": "Are you sure you want to exit?",
|
|
1094
|
+
"label_data-will-be-lost": "Data will be lost",
|
|
1095
|
+
"label_field-already-exist": "A field with the specified name already exists.",
|
|
1096
|
+
"label_information-about-syntax-on-wiki": "Function Syntax Help",
|
|
1097
|
+
"label_placeholder-field": "Field",
|
|
1098
|
+
"label_source-is-empty": "Select a source for the field",
|
|
1099
|
+
"label_title-is-empty": "The field name must not be empty",
|
|
1100
|
+
"section_title": "Field settings",
|
|
1101
|
+
"value_array_float": "Array of fractional numbers",
|
|
1102
|
+
"value_array_int": "Array of integers",
|
|
1103
|
+
"value_array_str": "Array of strings",
|
|
1104
|
+
"value_auto": "Auto",
|
|
1105
|
+
"value_avg": "Average",
|
|
1106
|
+
"value_boolean": "Logical",
|
|
1107
|
+
"value_count": "Count",
|
|
1108
|
+
"value_countunique": "Count Unique",
|
|
1109
|
+
"value_date": "Date",
|
|
1110
|
+
"value_float": "Fractional number",
|
|
1111
|
+
"value_formula": "Formula",
|
|
1112
|
+
"value_function": "Functions",
|
|
1113
|
+
"value_genericdatetime": "Date and time",
|
|
1114
|
+
"value_geopoint": "Geopoint",
|
|
1115
|
+
"value_geopolygon": "Geopolygon",
|
|
1116
|
+
"value_integer": "Integer",
|
|
1117
|
+
"value_max": "Maximum",
|
|
1118
|
+
"value_min": "Minimum",
|
|
1119
|
+
"value_none": "No",
|
|
1120
|
+
"value_source-from-field": "Field from source",
|
|
1121
|
+
"value_string": "String",
|
|
1122
|
+
"value_sum": "Sum",
|
|
1123
|
+
"value_tree_float": "Tree of fractional numbers",
|
|
1124
|
+
"value_tree_int": "Tree of integers",
|
|
1125
|
+
"value_tree_str": "Tree of strings"
|
|
1126
|
+
},
|
|
1127
|
+
"component.formatted-value.view": {
|
|
1128
|
+
"label_memory-b": "Byte",
|
|
1129
|
+
"label_memory-gb": "GB",
|
|
1130
|
+
"label_memory-kb": "KB",
|
|
1131
|
+
"label_memory-mb": "MB",
|
|
1132
|
+
"label_memory-tb": "TB"
|
|
1133
|
+
},
|
|
1134
|
+
"component.iam-access-dialog": {
|
|
1135
|
+
"action_add-user": "Add user",
|
|
1136
|
+
"action_cancel": "Cancel",
|
|
1137
|
+
"action_choose-user": "Select user",
|
|
1138
|
+
"action_choose-user-or-group": "Select user or group",
|
|
1139
|
+
"action_close": "Close",
|
|
1140
|
+
"action_revoke-access": "Revoke role",
|
|
1141
|
+
"action_save": "Save",
|
|
1142
|
+
"button_bindings-list-retry": "Reload list",
|
|
1143
|
+
"label_access_error": "Insufficient rights",
|
|
1144
|
+
"label_all": "All",
|
|
1145
|
+
"label_groups": "Groups",
|
|
1146
|
+
"label_invitee": "Invitee accounts",
|
|
1147
|
+
"label_no-data": "Empty",
|
|
1148
|
+
"label_object": "Object",
|
|
1149
|
+
"label_revoke-access": "Revoke role",
|
|
1150
|
+
"label_role": "Role",
|
|
1151
|
+
"label_user": "User",
|
|
1152
|
+
"label_user-accounts": "Users",
|
|
1153
|
+
"placeholder_search": "Filter by user",
|
|
1154
|
+
"role_admin": "Admin",
|
|
1155
|
+
"role_editor": "Editor",
|
|
1156
|
+
"role_limited-viewer": "Limited viewer",
|
|
1157
|
+
"role_viewer": "Viewer",
|
|
1158
|
+
"section_direct_accesses": "Direct permissions",
|
|
1159
|
+
"section_inherited_accesses": "Inherited permissions",
|
|
1160
|
+
"section_revoke-access": "Are you sure you want to revoke this role from {{userName}}? The user will lose access to all objects located in {{objectName}}.",
|
|
1161
|
+
"title_access-list": "Manage access",
|
|
1162
|
+
"title_add-user": "Add user"
|
|
1163
|
+
},
|
|
1164
|
+
"component.inaccessible-on-mobile-inset.view": {
|
|
1165
|
+
"button_back-to-main-page": "Go to main page",
|
|
1166
|
+
"button_switch-to-desktop": "Open desktop version",
|
|
1167
|
+
"label_error-inaccessible-on-mobile-title": "This page is inaccessible via mobile"
|
|
1168
|
+
},
|
|
1169
|
+
"component.list-with-menu.view": {
|
|
1170
|
+
"button_copy": "Copy to clipboard",
|
|
1171
|
+
"button_delete": "Delete",
|
|
1172
|
+
"button_duplicate": "Duplicate"
|
|
1173
|
+
},
|
|
1174
|
+
"component.migrate-to-workbook-dialog": {
|
|
1175
|
+
"action_back": "Back",
|
|
1176
|
+
"action_cancel": "Cancel",
|
|
1177
|
+
"action_next": "Next",
|
|
1178
|
+
"action_show-all": "Show all",
|
|
1179
|
+
"label_charts": "Charts",
|
|
1180
|
+
"label_connections": "Connections",
|
|
1181
|
+
"label_current-entry": "Selected object",
|
|
1182
|
+
"label_dashboards": "Dashboards",
|
|
1183
|
+
"label_datasets": "Datasets",
|
|
1184
|
+
"label_entry-already-in-workbook": "Migrated with other objects",
|
|
1185
|
+
"label_linked-objects": "Linked objects",
|
|
1186
|
+
"label_no-linked-objects": "Empty",
|
|
1187
|
+
"label_objects": [
|
|
1188
|
+
"{{count}} object",
|
|
1189
|
+
"{{count}} objects",
|
|
1190
|
+
"{{count}} objects",
|
|
1191
|
+
"0 objects"
|
|
1192
|
+
],
|
|
1193
|
+
"label_unknown-error": "An error occured during migration. Please try again later.",
|
|
1194
|
+
"md_label_copy-extension-warning": "Objects were detected that do not support copying: connection to Google Sheets or to a file (CSV). Use a transfer",
|
|
1195
|
+
"md_label_copy-warning": "The object and all related objects will be moved from folders to the workbook. It is impossible to return them from the workbook to folders. After the transfer, you will become the administrator of the workbook and will be able to assign access rights to other users and user groups",
|
|
1196
|
+
"title_copy": "Copy to workbook",
|
|
1197
|
+
"title_transfer": "Transfer to workbook"
|
|
1198
|
+
},
|
|
1199
|
+
"component.monaco.view": {
|
|
1200
|
+
"label_failed-to-load": "Failed to load editor"
|
|
1201
|
+
},
|
|
1202
|
+
"component.navigation-prompt": {
|
|
1203
|
+
"label_prompt-message": "There are unsaved changes on the page. Are you sure?"
|
|
1204
|
+
},
|
|
1205
|
+
"component.navigation.view": {
|
|
1206
|
+
"button_apply": "Apply",
|
|
1207
|
+
"button_cancel": "Cancel",
|
|
1208
|
+
"button_close": "Close",
|
|
1209
|
+
"button_continue-anyway": "Continue anyway",
|
|
1210
|
+
"button_create": "Create",
|
|
1211
|
+
"button_create-connection": "Create connection",
|
|
1212
|
+
"button_create-dashboard": "Create dashboard",
|
|
1213
|
+
"button_create-dataset": "Create dataset",
|
|
1214
|
+
"button_create-folder": "Create folder",
|
|
1215
|
+
"button_create-widget": "Create chart",
|
|
1216
|
+
"button_delete": "Delete",
|
|
1217
|
+
"button_details": "Details",
|
|
1218
|
+
"button_done": "Done",
|
|
1219
|
+
"button_goto-folder": "Go to the folder",
|
|
1220
|
+
"button_move": "Move",
|
|
1221
|
+
"button_request-rights": "Request permissions",
|
|
1222
|
+
"button_retry": "Retry",
|
|
1223
|
+
"label-description_empty-connections": "Connect your data sources: databases, files, and services",
|
|
1224
|
+
"label-description_empty-dashboards": "Build pages with collections of charts, tables, and filters",
|
|
1225
|
+
"label-description_empty-datasets": "Create datasets based on your connections",
|
|
1226
|
+
"label-description_empty-reports": "Collect documents for presentation, export, or printing",
|
|
1227
|
+
"label-description_empty-widgets": "Visualize data as charts, tables, or maps",
|
|
1228
|
+
"label_access-denied-folder": "Access denied",
|
|
1229
|
+
"label_batch-move-access-error-description": "Insufficient permissions to move files. Contact file administrator.",
|
|
1230
|
+
"label_batch-move-success-description": "Files moved successfully",
|
|
1231
|
+
"label_batch-selected-entries-count": "Selected objects — {{value}}",
|
|
1232
|
+
"label_empty": "Empty",
|
|
1233
|
+
"label_empty-connections": "Create your first connection",
|
|
1234
|
+
"label_empty-dashboards": "Create your first dashboard",
|
|
1235
|
+
"label_empty-datasets": "Create your first dataset",
|
|
1236
|
+
"label_empty-favorites": "No favorites yet",
|
|
1237
|
+
"label_empty-folder": "There is nothing in the folder yet",
|
|
1238
|
+
"label_empty-reports": "Create your first report",
|
|
1239
|
+
"label_empty-widgets": "Create your first chart",
|
|
1240
|
+
"label_failed-load-navigation": "Failed to load navigation",
|
|
1241
|
+
"label_mobile-navigation-filters-all": "All",
|
|
1242
|
+
"label_mobile-navigation-filters-favorites": "Favorites",
|
|
1243
|
+
"label_mobile-navigation-filters-mine": "Mine",
|
|
1244
|
+
"label_not-found": "Nothing found",
|
|
1245
|
+
"label_original-name": "Original name",
|
|
1246
|
+
"label_placeholder-filter-by-name": "Filter by name",
|
|
1247
|
+
"label_placeholder-search": "Search",
|
|
1248
|
+
"label_quick-access": "Quick access",
|
|
1249
|
+
"label_table-column-author": "Author",
|
|
1250
|
+
"label_table-column-date": "Date",
|
|
1251
|
+
"label_table-column-entry-name": "Name",
|
|
1252
|
+
"section_batch-move-access-error": "Access error",
|
|
1253
|
+
"section_batch-move-error": "Error moving",
|
|
1254
|
+
"section_batch-move-progress": "Move files …",
|
|
1255
|
+
"section_batch-move-select-destination": "Where to move?",
|
|
1256
|
+
"section_sidebar-title": "Navigation",
|
|
1257
|
+
"switch_connections": "Connections",
|
|
1258
|
+
"switch_dashboards": "Dashboards",
|
|
1259
|
+
"switch_datasets": "Datasets",
|
|
1260
|
+
"switch_favorites": "Favorites",
|
|
1261
|
+
"switch_latest": "Latest",
|
|
1262
|
+
"switch_personal-folder": "Personal directory",
|
|
1263
|
+
"switch_root": "All objects",
|
|
1264
|
+
"switch_widgets": "Charts",
|
|
1265
|
+
"toast_failed-add-favorite": "Failed to add to favorites",
|
|
1266
|
+
"toast_failed-remove-favorite": "Failed to delete from favorites",
|
|
1267
|
+
"tooltip_table-move-denied": "Only objects in folders can be moved",
|
|
1268
|
+
"value_create-connection": "Connection",
|
|
1269
|
+
"value_create-dashboard": "Dashboard",
|
|
1270
|
+
"value_create-dashboard-new": "Dashboard (new)",
|
|
1271
|
+
"value_create-dataset": "Dataset",
|
|
1272
|
+
"value_create-editor": "Chart in Editor",
|
|
1273
|
+
"value_create-folder": "Directory",
|
|
1274
|
+
"value_create-monitoringql": "Chart Monitoring",
|
|
1275
|
+
"value_create-promql": "Chart Prometheus",
|
|
1276
|
+
"value_create-ql": "QL Chart",
|
|
1277
|
+
"value_create-sql": "Chart SQL",
|
|
1278
|
+
"value_create-widget": "Chart",
|
|
1279
|
+
"value_create-wizard": "Chart in Wizard",
|
|
1280
|
+
"value_date-ascending": "First old",
|
|
1281
|
+
"value_date-descending": "First new",
|
|
1282
|
+
"value_name-ascending": "A-Z",
|
|
1283
|
+
"value_name-descending": "Z-A",
|
|
1284
|
+
"value_ownership-all": "All",
|
|
1285
|
+
"value_ownership-only-mine": "Only mine"
|
|
1286
|
+
},
|
|
1287
|
+
"component.need-reset-dialog.view": {
|
|
1288
|
+
"button_apply": "Refresh",
|
|
1289
|
+
"label_description": "It looks like you have performed logout in another tab, try refreshing this tab",
|
|
1290
|
+
"label_title": "Need refresh"
|
|
1291
|
+
},
|
|
1292
|
+
"component.number-field-formatting.view": {
|
|
1293
|
+
"field_format": "Format",
|
|
1294
|
+
"field_postfix": "Postfix",
|
|
1295
|
+
"field_precision": "Precision",
|
|
1296
|
+
"field_prefix": "Prefix",
|
|
1297
|
+
"field_rank-delimiter": "Show thousands separator",
|
|
1298
|
+
"field_units": "Units",
|
|
1299
|
+
"value_format-number": "Number",
|
|
1300
|
+
"value_format-percent": "Percent",
|
|
1301
|
+
"value_rank-delimiter-hide": "Hide",
|
|
1302
|
+
"value_rank-delimiter-show": "Show",
|
|
1303
|
+
"value_unit-auto": "Auto",
|
|
1304
|
+
"value_unit-b": "Billions, B",
|
|
1305
|
+
"value_unit-k": "Thousands, K",
|
|
1306
|
+
"value_unit-m": "Millions, M",
|
|
1307
|
+
"value_unit-null": "Null",
|
|
1308
|
+
"value_unit-t": "Trillions, T"
|
|
1309
|
+
},
|
|
1310
|
+
"component.operations": {
|
|
1311
|
+
"label_operation-all-values": "No selected values",
|
|
1312
|
+
"label_operation-contains": "Contains (case-insensetive)",
|
|
1313
|
+
"label_operation-contains-case": "Contain (case-sensetive)",
|
|
1314
|
+
"label_operation-date-in": "Belongs to a range",
|
|
1315
|
+
"label_operation-endswith": "Ends with (case-insensetive)",
|
|
1316
|
+
"label_operation-endswith-case": "Ends with (case-sensetive)",
|
|
1317
|
+
"label_operation-equals": "Equal to",
|
|
1318
|
+
"label_operation-gt": "Greater than",
|
|
1319
|
+
"label_operation-gte": "Greater than or equal to",
|
|
1320
|
+
"label_operation-in": "Belongs to a set",
|
|
1321
|
+
"label_operation-is-not-null": "Not empty",
|
|
1322
|
+
"label_operation-is-null": "Empty",
|
|
1323
|
+
"label_operation-leneq": "Length equal to",
|
|
1324
|
+
"label_operation-lengt": "Length greater than",
|
|
1325
|
+
"label_operation-lengte": "Length greater than or equal to",
|
|
1326
|
+
"label_operation-lenlt": "Length less than",
|
|
1327
|
+
"label_operation-lenlte": "Length less than or equal to",
|
|
1328
|
+
"label_operation-lt": "Less than",
|
|
1329
|
+
"label_operation-lte": "Less than or equal to",
|
|
1330
|
+
"label_operation-nequals": "Not equal to",
|
|
1331
|
+
"label_operation-nin": "Does not belong to a set",
|
|
1332
|
+
"label_operation-notcontains": "Does not contain (case-insensetive)",
|
|
1333
|
+
"label_operation-notcontains-case": "Does not contain (case-sensetive)",
|
|
1334
|
+
"label_operation-startswith": "Starts with (case-insensetive)",
|
|
1335
|
+
"label_operation-startswith-case": "Starts with (case-sensetive)"
|
|
1336
|
+
},
|
|
1337
|
+
"component.path-select.view": {
|
|
1338
|
+
"label_default-placeholder": "Name"
|
|
1339
|
+
},
|
|
1340
|
+
"component.permission-select.view": {
|
|
1341
|
+
"field_admin": "Admin",
|
|
1342
|
+
"field_execute": "Execute",
|
|
1343
|
+
"field_none": "—",
|
|
1344
|
+
"field_read": "Read",
|
|
1345
|
+
"field_write": "Write"
|
|
1346
|
+
},
|
|
1347
|
+
"component.relative-dates-picker.view": {
|
|
1348
|
+
"label_absolute-date": "Exact date",
|
|
1349
|
+
"label_end-control-title": "End",
|
|
1350
|
+
"label_include-current-day": "Including the current day",
|
|
1351
|
+
"label_invalid-date": "Invalid date",
|
|
1352
|
+
"label_invalid-range": "The end date precedes the start date",
|
|
1353
|
+
"label_preset": "Preset",
|
|
1354
|
+
"label_preset-last_-0_days": "Today",
|
|
1355
|
+
"label_preset-last_-0_days-range": "Today",
|
|
1356
|
+
"label_preset-last_-13_days": "14 days ago",
|
|
1357
|
+
"label_preset-last_-13_days-range": "Last 14 days",
|
|
1358
|
+
"label_preset-last_-179_days": "180 days ago",
|
|
1359
|
+
"label_preset-last_-179_days-range": "Last 180 days",
|
|
1360
|
+
"label_preset-last_-1_days": "Yesterday",
|
|
1361
|
+
"label_preset-last_-1_days-range": "Yesterday",
|
|
1362
|
+
"label_preset-last_-27_days": "28 days ago",
|
|
1363
|
+
"label_preset-last_-27_days-range": "Last 28 days",
|
|
1364
|
+
"label_preset-last_-2_days": "3 days ago",
|
|
1365
|
+
"label_preset-last_-2_days-range": "Last 3 days",
|
|
1366
|
+
"label_preset-last_-364_days": "365 days ago",
|
|
1367
|
+
"label_preset-last_-364_days-range": "Last 365 days",
|
|
1368
|
+
"label_preset-last_-6_days": "7 days ago",
|
|
1369
|
+
"label_preset-last_-6_days-range": "Last 7 days",
|
|
1370
|
+
"label_preset-last_-89_days": "90 days ago",
|
|
1371
|
+
"label_preset-last_-89_days-range": "Last 90 days",
|
|
1372
|
+
"label_relative-date": "Offset from the current date",
|
|
1373
|
+
"label_scale-M": [
|
|
1374
|
+
"Month",
|
|
1375
|
+
"Months",
|
|
1376
|
+
"Months",
|
|
1377
|
+
"Months"
|
|
1378
|
+
],
|
|
1379
|
+
"label_scale-Q": [
|
|
1380
|
+
"Quarter",
|
|
1381
|
+
"Quarters",
|
|
1382
|
+
"Quarters",
|
|
1383
|
+
"Quarters"
|
|
1384
|
+
],
|
|
1385
|
+
"label_scale-d": [
|
|
1386
|
+
"Day",
|
|
1387
|
+
"Days",
|
|
1388
|
+
"Days",
|
|
1389
|
+
"Days"
|
|
1390
|
+
],
|
|
1391
|
+
"label_scale-h": [
|
|
1392
|
+
"Hour",
|
|
1393
|
+
"Hours",
|
|
1394
|
+
"Hours",
|
|
1395
|
+
"Hours"
|
|
1396
|
+
],
|
|
1397
|
+
"label_scale-m": [
|
|
1398
|
+
"Minute",
|
|
1399
|
+
"Minutes",
|
|
1400
|
+
"Minutes",
|
|
1401
|
+
"Minutes"
|
|
1402
|
+
],
|
|
1403
|
+
"label_scale-ms": [
|
|
1404
|
+
"Millisecond",
|
|
1405
|
+
"Milliseconds",
|
|
1406
|
+
"Milliseconds",
|
|
1407
|
+
"Milliseconds"
|
|
1408
|
+
],
|
|
1409
|
+
"label_scale-s": [
|
|
1410
|
+
"Second",
|
|
1411
|
+
"Seconds",
|
|
1412
|
+
"Seconds",
|
|
1413
|
+
"Seconds"
|
|
1414
|
+
],
|
|
1415
|
+
"label_scale-w": [
|
|
1416
|
+
"Week",
|
|
1417
|
+
"Weeks",
|
|
1418
|
+
"Weeks",
|
|
1419
|
+
"Weeks"
|
|
1420
|
+
],
|
|
1421
|
+
"label_scale-y": [
|
|
1422
|
+
"Year",
|
|
1423
|
+
"Years",
|
|
1424
|
+
"Years",
|
|
1425
|
+
"Years"
|
|
1426
|
+
],
|
|
1427
|
+
"label_sign+": " Plus",
|
|
1428
|
+
"label_sign-": "Minus",
|
|
1429
|
+
"label_single-control-title": "Value",
|
|
1430
|
+
"label_start-control-title": "Start",
|
|
1431
|
+
"label_tooltip-utc": "The date is specified in UTC"
|
|
1432
|
+
},
|
|
1433
|
+
"component.revisions-panel.view": {
|
|
1434
|
+
"button_cancel": "Cancel",
|
|
1435
|
+
"button_confirm-deprecation": "Update",
|
|
1436
|
+
"button_edit-anyway": "Edit anyway",
|
|
1437
|
+
"button_make-actual": "Make actual",
|
|
1438
|
+
"button_open-actual": "Open actual",
|
|
1439
|
+
"button_open-draft": "Open draft",
|
|
1440
|
+
"button_open-revisions": "Show in history",
|
|
1441
|
+
"label_already-editing-entry": "This {{scope}} is already being edited",
|
|
1442
|
+
"label_by": "by",
|
|
1443
|
+
"label_chart": "chart",
|
|
1444
|
+
"label_connection": "connection",
|
|
1445
|
+
"label_dash": "dashboard",
|
|
1446
|
+
"label_dataset": "dataset",
|
|
1447
|
+
"label_draft-version": "This is a draft version",
|
|
1448
|
+
"label_editor": "editor",
|
|
1449
|
+
"label_entry-is-editing": "{{scope}} is being edited",
|
|
1450
|
+
"label_entry-is-editing-by": "is already editing this {{scope}}",
|
|
1451
|
+
"label_later-warning-text": "The change history contains a draft version of the {{scope}}",
|
|
1452
|
+
"label_not-actual": "This is not actual version",
|
|
1453
|
+
"label_of-chart": "of chart",
|
|
1454
|
+
"label_of-connection": "of connection",
|
|
1455
|
+
"label_of-dash": "of dashboard",
|
|
1456
|
+
"label_of-dataset": "of dataset",
|
|
1457
|
+
"label_of-editor": "of editor",
|
|
1458
|
+
"label_unexpected-error": "Error"
|
|
1459
|
+
},
|
|
1460
|
+
"component.select-migration-to-workbook-dialog": {
|
|
1461
|
+
"action_cancel": "Cancel",
|
|
1462
|
+
"action_сhoose": "Choose",
|
|
1463
|
+
"description_copy": "Copy all objects with links. Original objects remain in directories.",
|
|
1464
|
+
"description_transfer": "Transfer all recursively linked object into one common workbook.",
|
|
1465
|
+
"label": "NEW",
|
|
1466
|
+
"list_first_item_copy": "Only search links for current object",
|
|
1467
|
+
"list_first_item_transfer": "Recursive search of all links",
|
|
1468
|
+
"list_first_item_transfer_help_text": "Recursive link search for the current object and all linked objects: “down“ to the connection and “up“ to the dashboard",
|
|
1469
|
+
"list_fourth_item_copy": "Currently unavailable for CSV and Google Sheets",
|
|
1470
|
+
"list_fourth_item_transfer": "Available for CSV and Google Sheets",
|
|
1471
|
+
"list_second_item_copy": "Objects in directories remain",
|
|
1472
|
+
"list_second_item_transfer": "Objects in directories will not remain",
|
|
1473
|
+
"list_third_item_copy": "Links to objects without changes",
|
|
1474
|
+
"list_third_item_transfer": "Links to objects lead to workbooks",
|
|
1475
|
+
"title": "Choose a method of migrating to the workbook",
|
|
1476
|
+
"title_copy": "Copy",
|
|
1477
|
+
"title_transfer": "Transfer"
|
|
1478
|
+
},
|
|
1479
|
+
"component.toaster.view": {
|
|
1480
|
+
"label_details": "Details"
|
|
1481
|
+
},
|
|
1482
|
+
"component.user-menu.view": {
|
|
1483
|
+
"label_logout": "Log out"
|
|
1484
|
+
},
|
|
1485
|
+
"component.users-suggest.view": {
|
|
1486
|
+
"label_empty-state-not-found-description": "Check the search query for typos",
|
|
1487
|
+
"label_empty-state-not-found-title": "Nothing was found",
|
|
1488
|
+
"label_empty-state-template-description": "Search users by name or login",
|
|
1489
|
+
"label_empty-state-template-title": "There is nothing yet",
|
|
1490
|
+
"label_filter-placeholder": "Search"
|
|
1491
|
+
},
|
|
1492
|
+
"component.view-error.view": {
|
|
1493
|
+
"button_details": "Details",
|
|
1494
|
+
"button_retry": "Retry",
|
|
1495
|
+
"label_access-error": "Access error",
|
|
1496
|
+
"label_error": "Error"
|
|
1497
|
+
},
|
|
1498
|
+
"component.workbook-export-dialog.view": {
|
|
1499
|
+
"button_back-to-export": "Back",
|
|
1500
|
+
"button_begin-export": "Export",
|
|
1501
|
+
"button_cancel": "Cancel",
|
|
1502
|
+
"button_cancel-export": "Cancel export",
|
|
1503
|
+
"button_close": "Close",
|
|
1504
|
+
"button_close-export": "Close",
|
|
1505
|
+
"button_download": "Download",
|
|
1506
|
+
"label_cancel-export-description": "The workbook configuration file will not be created",
|
|
1507
|
+
"label_close-export-description": "If you do not download the file now, you will need to export it again",
|
|
1508
|
+
"label_info-documentation": "How do workbooks export work?",
|
|
1509
|
+
"label_info-file": "We are exporting the workbook configuration to a file",
|
|
1510
|
+
"label_info-secrets": "You will need to re-enter your passwords during the import",
|
|
1511
|
+
"label_info-time": "The export may take several minutes",
|
|
1512
|
+
"label_info-versions": "In other versions of DataLens, <link>some</link> connections will not work",
|
|
1513
|
+
"label_success-export": "Download file with workbook configuration",
|
|
1514
|
+
"title_cancel-export": "Cancel the export?",
|
|
1515
|
+
"title_close-export": "Close the window with the finished export file?",
|
|
1516
|
+
"title_export": "Workbook export",
|
|
1517
|
+
"title_export-success": "Export file is ready",
|
|
1518
|
+
"title_fatal-error": "Workbook export error"
|
|
1519
|
+
},
|
|
1520
|
+
"component.workbook-export.notifications": {
|
|
1521
|
+
"button_show-details": "Show details",
|
|
1522
|
+
"label_bad-connection-type": "These connection types are not supported in the current version of the service",
|
|
1523
|
+
"label_error-export-connection": "Failed to export connection",
|
|
1524
|
+
"label_error-export-dataset": "Failed to export dataset",
|
|
1525
|
+
"label_error-import-connection": "Failed to import connection",
|
|
1526
|
+
"label_error-import-dataset": "Failed to import dataset",
|
|
1527
|
+
"label_export-check-connection-credentials": "In connections, the values of fields with passwords and tokens are not exported. They should be checked and replaced if necessary after being imported",
|
|
1528
|
+
"label_export-rls": "RLS is not guaranteed to work correctly in exported datasets",
|
|
1529
|
+
"label_import-check-connections-credentials": "Check the connection settings and re-enter passwords and tokens if necessary",
|
|
1530
|
+
"label_import-check-delegation": "Connection configuration is not complete, change or save the connection settings again",
|
|
1531
|
+
"label_import-rls": "Check RLS functionality in datasets",
|
|
1532
|
+
"label_info-documentation-notifications": "Error and warning descriptions",
|
|
1533
|
+
"label_invalid-entry-data": "Workbook configuration was corrupted",
|
|
1534
|
+
"label_invalid-entry-scope": "The workbook contains entities with an incorrect type",
|
|
1535
|
+
"label_invalid-error": "Unknown error",
|
|
1536
|
+
"label_invalid-version": "The DataLens installation does not support the workbook configuration",
|
|
1537
|
+
"label_missing-linked-entry": "The workbook contains entities linked to nonexistent entities",
|
|
1538
|
+
"label_scope-not-available-for-installation": "The workbook contains entities not supported in your DataLens installation",
|
|
1539
|
+
"label_unexpected-workflow-error": "Unexpected error during operation",
|
|
1540
|
+
"label_unsupported-objects": "Objects of this type are not available for export and import",
|
|
1541
|
+
"title_error-details": "Error details"
|
|
1542
|
+
},
|
|
1543
|
+
"component.workbook-import-view.view": {
|
|
1544
|
+
"button_cancel": "Cancel",
|
|
1545
|
+
"button_close": "Close",
|
|
1546
|
+
"button_go-to-workbook": "Open workbook",
|
|
1547
|
+
"label_success-import": "The import of the workbook configuration was successful",
|
|
1548
|
+
"title_creating-workbook": "Creating workbook",
|
|
1549
|
+
"title_error-creating": "Workbook creation error",
|
|
1550
|
+
"title_workbook-created": "Workbook created"
|
|
1551
|
+
},
|
|
1552
|
+
"component.workbook.navigation.view": {
|
|
1553
|
+
"label_no-data": "No data",
|
|
1554
|
+
"label_placeholder-filter-by-name": "Filter by name"
|
|
1555
|
+
},
|
|
1556
|
+
"components.common.Datepicker": {
|
|
1557
|
+
"apply_button_text": "Apply",
|
|
1558
|
+
"error_date": "Specify date",
|
|
1559
|
+
"error_dates_range": "Specify both dates of the range",
|
|
1560
|
+
"month_long_1": "January",
|
|
1561
|
+
"month_long_10": "October",
|
|
1562
|
+
"month_long_11": "November",
|
|
1563
|
+
"month_long_12": "December",
|
|
1564
|
+
"month_long_2": "February",
|
|
1565
|
+
"month_long_3": "March",
|
|
1566
|
+
"month_long_4": "April",
|
|
1567
|
+
"month_long_5": "May",
|
|
1568
|
+
"month_long_6": "June",
|
|
1569
|
+
"month_long_7": "July",
|
|
1570
|
+
"month_long_8": "August",
|
|
1571
|
+
"month_long_9": "September",
|
|
1572
|
+
"month_short_1": "Jan",
|
|
1573
|
+
"month_short_10": "Oct",
|
|
1574
|
+
"month_short_11": "Nov",
|
|
1575
|
+
"month_short_12": "Dec",
|
|
1576
|
+
"month_short_2": "Feb",
|
|
1577
|
+
"month_short_3": "Mar",
|
|
1578
|
+
"month_short_4": "Apr",
|
|
1579
|
+
"month_short_5": "May",
|
|
1580
|
+
"month_short_6": "Jun",
|
|
1581
|
+
"month_short_7": "Jul",
|
|
1582
|
+
"month_short_8": "Aug",
|
|
1583
|
+
"month_short_9": "Sep",
|
|
1584
|
+
"placeholder_letter_H": "h",
|
|
1585
|
+
"placeholder_letter_M": "M",
|
|
1586
|
+
"placeholder_letter_S": "ms",
|
|
1587
|
+
"placeholder_letter_d": "D",
|
|
1588
|
+
"placeholder_letter_h": "h",
|
|
1589
|
+
"placeholder_letter_m": "m",
|
|
1590
|
+
"placeholder_letter_s": "s",
|
|
1591
|
+
"placeholder_letter_y": "Y",
|
|
1592
|
+
"preset_current": "Current",
|
|
1593
|
+
"preset_day_30": "30 days",
|
|
1594
|
+
"preset_day_365": "365 days",
|
|
1595
|
+
"preset_day_7": "7 days",
|
|
1596
|
+
"preset_day_90": "90 days",
|
|
1597
|
+
"preset_day_today": "Today",
|
|
1598
|
+
"preset_day_two_days_ago": "Two days ago",
|
|
1599
|
+
"preset_day_yesterday": "Yesterday",
|
|
1600
|
+
"preset_past": "Past",
|
|
1601
|
+
"preset_week_current": "Current",
|
|
1602
|
+
"preset_week_past": "Past",
|
|
1603
|
+
"tab_day": "Day",
|
|
1604
|
+
"tab_month": "Month",
|
|
1605
|
+
"tab_quarter": "Quarter",
|
|
1606
|
+
"tab_week": "Week",
|
|
1607
|
+
"tab_year": "Year",
|
|
1608
|
+
"value_required": "This field is required"
|
|
1609
|
+
},
|
|
1610
|
+
"components.common.SimpleDatepicker": {
|
|
1611
|
+
"apply_button_text": "Apply",
|
|
1612
|
+
"date_and_time_input_error": "Enter the date and time in the format \"{{format}}\"",
|
|
1613
|
+
"date_input_error": "Enter the date in the format \"{{format}}\"",
|
|
1614
|
+
"default_date_placeholder": "YYYY-MM-DD",
|
|
1615
|
+
"default_ru_date_placeholder": "DD.MM.YYYY",
|
|
1616
|
+
"relative_input_error": "Enter the date in a special format or in the format \"{{format}}\"",
|
|
1617
|
+
"time_input_error": "Enter the time in the format \"{{format}}\"",
|
|
1618
|
+
"time_placeholder": "HH:MM",
|
|
1619
|
+
"time_with_sec_placeholder": "HH:MM:SS"
|
|
1620
|
+
},
|
|
1621
|
+
"components.common.YCSelect": {
|
|
1622
|
+
"apply_button_text": "Apply",
|
|
1623
|
+
"empty_string": "Empty string",
|
|
1624
|
+
"error_details_button_text": "Details",
|
|
1625
|
+
"item_except": "Except",
|
|
1626
|
+
"item_only": "Only",
|
|
1627
|
+
"items_add_new": "Add new entry",
|
|
1628
|
+
"items_fetch_error": "Something went wrong",
|
|
1629
|
+
"items_not_found": "No matches for the search string «{{inputValue}}»",
|
|
1630
|
+
"items_prompt": "Enter search string...",
|
|
1631
|
+
"items_show_more": "Show more",
|
|
1632
|
+
"null": "null",
|
|
1633
|
+
"refresh_button_text": "Retry",
|
|
1634
|
+
"search_clear": "Clear",
|
|
1635
|
+
"search_placeholder": "Search",
|
|
1636
|
+
"search_select_all": "Select all",
|
|
1637
|
+
"selected_popup_title": "Selected"
|
|
1638
|
+
},
|
|
1639
|
+
"connections.connectors-list.view": {
|
|
1640
|
+
"button_retry": "Retry",
|
|
1641
|
+
"label_connector-ch_over_yt": "CHYT with authentication by OAuth token",
|
|
1642
|
+
"label_connector-ch_over_yt_user_auth": "CHYT with authentication as user",
|
|
1643
|
+
"label_connector-file": "Files",
|
|
1644
|
+
"label_connector-gsheets": "Google Sheets",
|
|
1645
|
+
"label_connector-gsheets_v2": "Google Sheets",
|
|
1646
|
+
"label_error-500-schema": "Couldn't load form. Please reload the page.",
|
|
1647
|
+
"label_error-500-title": "Failed to load list of connectors"
|
|
1648
|
+
},
|
|
1649
|
+
"connections.file.view": {
|
|
1650
|
+
"button_add-file": "Upload files",
|
|
1651
|
+
"button_add-file-hint": "No more than 10 files. The weight of each file should not exceed 200 MB. Supported formats: {{formats}}.",
|
|
1652
|
+
"button_retry-download": "Retry upload",
|
|
1653
|
+
"label_action-delete": "Delete",
|
|
1654
|
+
"label_action-rename": "Rename",
|
|
1655
|
+
"label_action-replace": "Replace",
|
|
1656
|
+
"label_columns-header": "Columns header",
|
|
1657
|
+
"label_delimiter": "Separator",
|
|
1658
|
+
"label_delimiter-comma": "Comma",
|
|
1659
|
+
"label_delimiter-semicolon": "Semicolon",
|
|
1660
|
+
"label_delimiter-tab": "Tabulation character",
|
|
1661
|
+
"label_downloaded-files": "Uploaded earlier",
|
|
1662
|
+
"label_encoding": "Encoding",
|
|
1663
|
+
"label_encoding-utf-8": "utf-8",
|
|
1664
|
+
"label_encoding-utf-8-sig": "utf-8-sig",
|
|
1665
|
+
"label_encoding-windows-1251": "windows-1251",
|
|
1666
|
+
"label_file-download-failure": "File upload failed",
|
|
1667
|
+
"label_file-promo": "To create a connection, upload files in the supported formats: {{formats}}.",
|
|
1668
|
+
"label_file-size-error": "The size of the file must not exceed 200 MB",
|
|
1669
|
+
"label_filter-by-column": "Search by column",
|
|
1670
|
+
"label_header-disabled": "No",
|
|
1671
|
+
"label_header-enabled": "Yes",
|
|
1672
|
+
"label_list-item-downloading": "Downloading...",
|
|
1673
|
+
"label_list-item-no-data": "No data",
|
|
1674
|
+
"label_new-files": "New files",
|
|
1675
|
+
"label_no-preview-data": "No preview data found",
|
|
1676
|
+
"label_settings-update-failure": "Settings update failure",
|
|
1677
|
+
"label_source-download-failure": "Source download failure",
|
|
1678
|
+
"label_source-name": "Source name",
|
|
1679
|
+
"label_source-replacing": "Replacing …"
|
|
1680
|
+
},
|
|
1681
|
+
"connections.form": {
|
|
1682
|
+
"button_add": "Add",
|
|
1683
|
+
"button_add-connection": "Create connection",
|
|
1684
|
+
"button_already-saved": "Saved",
|
|
1685
|
+
"button_attach-file": "Attach file",
|
|
1686
|
+
"button_cancel": "Cancel",
|
|
1687
|
+
"button_connection-name": "Connector name",
|
|
1688
|
+
"button_create": "Create",
|
|
1689
|
+
"button_create-connection": "Create connection",
|
|
1690
|
+
"button_create-dataset": "Create dataset",
|
|
1691
|
+
"button_create-mdb-cluster": "Create new",
|
|
1692
|
+
"button_create-new": "Create new",
|
|
1693
|
+
"button_create-new-f": "Create new",
|
|
1694
|
+
"button_create-sql-chart": "Create QL-chart",
|
|
1695
|
+
"button_details": "Learn more",
|
|
1696
|
+
"button_get-token-ya-podcast": "Get key",
|
|
1697
|
+
"button_refresh-token": "Get token",
|
|
1698
|
+
"button_refresh-token-help": "Enter \"ACCOUNT_NAME\", \"CLIENT_ID\", and \"CLIENT_SECRET\" fields first",
|
|
1699
|
+
"button_remove": "Delete",
|
|
1700
|
+
"button_reset": "Reset",
|
|
1701
|
+
"button_retry": "Retry",
|
|
1702
|
+
"button_save": "Save",
|
|
1703
|
+
"button_save-conn-v2": "Save changes",
|
|
1704
|
+
"button_save-connection": "Save",
|
|
1705
|
+
"button_setting-permissions": "Configure permissions",
|
|
1706
|
+
"button_specify-manually": "Specify manually",
|
|
1707
|
+
"button_upload": "Upload",
|
|
1708
|
+
"button_verify": "Check connection",
|
|
1709
|
+
"column_created-at": "Creation date",
|
|
1710
|
+
"column_owner": "Owner",
|
|
1711
|
+
"column_status": "Status",
|
|
1712
|
+
"column_title": "Name",
|
|
1713
|
+
"column_type": "Type",
|
|
1714
|
+
"context_where-can-it-be-taken-token-yt": "Get an OAuth token for YT",
|
|
1715
|
+
"field_accuracy": "Accuracy",
|
|
1716
|
+
"field_application": "App",
|
|
1717
|
+
"field_auth-method": "Authentication<br></br>method <tooltip></tooltip>",
|
|
1718
|
+
"field_cache-ttl-sec": "Cache TTL in seconds",
|
|
1719
|
+
"field_click-house-port": "HTTP interface port",
|
|
1720
|
+
"field_clika": "Clique",
|
|
1721
|
+
"field_cloud-and-folder": "Cloud and folder",
|
|
1722
|
+
"field_cluster": "Cluster",
|
|
1723
|
+
"field_connection-title": "Connection name",
|
|
1724
|
+
"field_counter-id": "Tag",
|
|
1725
|
+
"field_database-id": "Database",
|
|
1726
|
+
"field_default-cluster": "Default cluster",
|
|
1727
|
+
"field_default-database": "Default database name",
|
|
1728
|
+
"field_enforce-collate": "Specifying collate in the request",
|
|
1729
|
+
"field_fill-mode": "Connection",
|
|
1730
|
+
"field_get-token": "Get token",
|
|
1731
|
+
"field_host-name": "Hostname",
|
|
1732
|
+
"field_metrica-namespace": "Metric group",
|
|
1733
|
+
"field_moysklad-token": "Access token",
|
|
1734
|
+
"field_sa_key": "SA key",
|
|
1735
|
+
"field_service-account": "Service account",
|
|
1736
|
+
"field_settings": "Settings",
|
|
1737
|
+
"field_token-metrika": "OAuth token",
|
|
1738
|
+
"field_token-yt": "YT token",
|
|
1739
|
+
"field_username": "Username",
|
|
1740
|
+
"label_accuracy-auto": "Automatically",
|
|
1741
|
+
"label_advanced-settings": "Advanced connection settings",
|
|
1742
|
+
"label_auth-method-hint": "The authentication method can't be changed after the connection is created.",
|
|
1743
|
+
"label_auth-showflake-copy": "Get snippet",
|
|
1744
|
+
"label_authentication-method-choice": "Choose an authentication method",
|
|
1745
|
+
"label_ch-frozen-description": "This is a special connection to ClickHouse (a part of the product in [Marketplace]({{link}})). You can't edit it.",
|
|
1746
|
+
"label_ch-geo-filtered-description": "This is a service connection for interactions datasets with geolayers. You can set up a connection in [Marketplace]({{link}}))",
|
|
1747
|
+
"label_chyt-token-auth-description": "Specify the token of the user for whom requests should be executed",
|
|
1748
|
+
"label_chyt-user-auth-description": "Authentication by cookie, requests will be executed for the user viewing the dataset, chart, or dashboard",
|
|
1749
|
+
"label_cloud-tree-fetching-failed": "Failed to load clouds tree",
|
|
1750
|
+
"label_connection-csv-name": "Connection name",
|
|
1751
|
+
"label_connection-info": "Connection info",
|
|
1752
|
+
"label_connection-loading": "Upload",
|
|
1753
|
+
"label_connections-empty-msg": "You don't have any connections",
|
|
1754
|
+
"label_connections-list-failed": "Error: failed to load list of connections",
|
|
1755
|
+
"label_connections-not-exist": "You don't have any connections",
|
|
1756
|
+
"label_databases-empty-list": "No available databases",
|
|
1757
|
+
"label_db-name": "Path to database",
|
|
1758
|
+
"label_delimiter-comma": "Comma",
|
|
1759
|
+
"label_delimiter-semicolon": "Semicolon",
|
|
1760
|
+
"label_delimiter-tab": "Tabulation character",
|
|
1761
|
+
"label_documentation": "documentation",
|
|
1762
|
+
"label_entry-name-already-exists": "That name is already in use, try another one",
|
|
1763
|
+
"label_error-400-no-connection-title": "No connection",
|
|
1764
|
+
"label_error-400-title": "Incorrect request to connection",
|
|
1765
|
+
"label_error-403-title": "You don't have access to this connection",
|
|
1766
|
+
"label_error-404-title": "Connection not found",
|
|
1767
|
+
"label_error-500-title": "Failed to load connection",
|
|
1768
|
+
"label_error-duplicated-keys": "This key is already in use in another key-value pair",
|
|
1769
|
+
"label_error-empty-field": "This is a required field",
|
|
1770
|
+
"label_error-length-field": "Value has an incorrect number of characters",
|
|
1771
|
+
"label_error-msg": "Failed to load list of connections",
|
|
1772
|
+
"label_error-on-template-apply": "An error occurred while deploying the template",
|
|
1773
|
+
"label_expiration-date": "Expires {{date}}",
|
|
1774
|
+
"label_file-input-label": "File \"{{fileName}}\" successfully uploaded",
|
|
1775
|
+
"label_file-upload-failure": "Couldn't upload file, try again later",
|
|
1776
|
+
"label_get-refresh-token-failure": "Couldn't get refresh token",
|
|
1777
|
+
"label_kp-interest-index-description": "The connection will allow you to view the index of interest in the series. By clicking the button below, you will receive a key (OAuth token) which grants you access to data in DataLens.",
|
|
1778
|
+
"label_manual-title": "Instructions for connecting {{app}}",
|
|
1779
|
+
"label_mdb-clusters-fetch-failed": "Failed to load list of clusters",
|
|
1780
|
+
"label_mdb-databases-fetch-failed": "Failed to load list of databases",
|
|
1781
|
+
"label_mdb-hosts-fetch-failed": "Failed to load list of hosts",
|
|
1782
|
+
"label_mdb-no-clusters": "You don't have any clusters",
|
|
1783
|
+
"label_mdb-users-fetch-failed": "Failed to load list of users",
|
|
1784
|
+
"label_moysklad-token-hint": "Check <link>developer's documentation</link> on how to get token.",
|
|
1785
|
+
"label_moysklad-token-hint-conn-v2": "Check [developer's documentation]({{link}}) on how to get token.",
|
|
1786
|
+
"label_name-clickhouse": "ClickHouse",
|
|
1787
|
+
"label_not-found-connections": "No data found",
|
|
1788
|
+
"label_or": "or",
|
|
1789
|
+
"label_placeholder-appmetrica-id": "Application ID",
|
|
1790
|
+
"label_placeholder-metrica-id": "Tag ID",
|
|
1791
|
+
"label_portal": "Portal",
|
|
1792
|
+
"label_project-id": "Project ID",
|
|
1793
|
+
"label_refresh-token-label": "Refresh token",
|
|
1794
|
+
"label_secret-value": "Secret value",
|
|
1795
|
+
"label_section-caption-counter-settings": "Tag settings",
|
|
1796
|
+
"label_select-folder": "Select folder",
|
|
1797
|
+
"label_service-acc-key-file": "Service account public key",
|
|
1798
|
+
"label_service-account-ydb-hint": "Select an existing service account or create a new one",
|
|
1799
|
+
"label_service-accounts-empty-list": "No available accounts",
|
|
1800
|
+
"label_service-accounts-fetching-failed": "Failed to load service accounts list",
|
|
1801
|
+
"label_showflake-oauth-integration-label": "OAuth integration",
|
|
1802
|
+
"label_showflake-oauth-integration-placeholder": "Integration name",
|
|
1803
|
+
"label_snowflake-doc-help": "Learn more in the [documentation]({{link}})",
|
|
1804
|
+
"label_token": "Token",
|
|
1805
|
+
"label_utyt-conn-description": "This connection will allow you to view detailed statistics for dataset queries and dashboard views (for which you have admin rights).",
|
|
1806
|
+
"label_verify-connection-500": "Error: failed to check connection",
|
|
1807
|
+
"section_connection": "Connection",
|
|
1808
|
+
"section_connections": "Connections",
|
|
1809
|
+
"section_creation-connection": "New connection",
|
|
1810
|
+
"section_creation-dataset": "New dataset",
|
|
1811
|
+
"section_db-name": "Database name",
|
|
1812
|
+
"section_or-another-variant": "or enter YQL Public Link:",
|
|
1813
|
+
"section_selection-connection": "Select connection",
|
|
1814
|
+
"section_source-replacement": "Replace source",
|
|
1815
|
+
"switch_access-settings": "Configure access",
|
|
1816
|
+
"switch_create-dataset": "Create dataset",
|
|
1817
|
+
"switch_delete-connection": "Delete",
|
|
1818
|
+
"switch_edit-connection": "Edit",
|
|
1819
|
+
"toast_create-connection-error": "Failed to create connection",
|
|
1820
|
+
"toast_error-action-label": "Learn more",
|
|
1821
|
+
"toast_modify-connection-error": "Failed to save connection",
|
|
1822
|
+
"toast_unsaved": "There are unsaved changes on the page. Are you sure?",
|
|
1823
|
+
"toast_verify-error": "Failed to check connection parameters",
|
|
1824
|
+
"value_cluster-arnold": "Arnold",
|
|
1825
|
+
"value_cluster-hahn": "Hahn",
|
|
1826
|
+
"value_cluster-vanga": "Vanga",
|
|
1827
|
+
"value_counter-source-advertising": "Clicks",
|
|
1828
|
+
"value_counter-source-hits": "Views",
|
|
1829
|
+
"value_counter-source-user-param": "User parameters",
|
|
1830
|
+
"value_counter-source-visits": "Visits",
|
|
1831
|
+
"value_customizable-cache-ttl": "Customized",
|
|
1832
|
+
"value_db-connect-method-service-name": "Service name",
|
|
1833
|
+
"value_db-connect-method-sid": "SID",
|
|
1834
|
+
"value_default": "Default",
|
|
1835
|
+
"value_enforce-collate-auto": "Auto",
|
|
1836
|
+
"value_enforce-collate-off": "Off",
|
|
1837
|
+
"value_enforce-collate-on": "On",
|
|
1838
|
+
"value_fill-mode-cloud": "Select within the organization",
|
|
1839
|
+
"value_fill-mode-manually": "Enter manually",
|
|
1840
|
+
"value_metrica-counter-input-method-list": "From the list",
|
|
1841
|
+
"value_metrica-counter-input-method-manually": "Manually",
|
|
1842
|
+
"value_metrica-namespace-audience": "Audience",
|
|
1843
|
+
"value_metrica-namespace-audience-socdem": "Audience + social demographic",
|
|
1844
|
+
"value_metrica-namespace-clicks": "Tracking clicks",
|
|
1845
|
+
"value_metrica-namespace-client-events": "Client events",
|
|
1846
|
+
"value_metrica-namespace-crashes": "Crashes",
|
|
1847
|
+
"value_metrica-namespace-deeplinks": "App openings via deeplink",
|
|
1848
|
+
"value_metrica-namespace-errors": "Errors",
|
|
1849
|
+
"value_metrica-namespace-events": "App events",
|
|
1850
|
+
"value_metrica-namespace-installations": "App installations",
|
|
1851
|
+
"value_metrica-namespace-installs": "Installations",
|
|
1852
|
+
"value_metrica-namespace-postbacks": "Postbacks",
|
|
1853
|
+
"value_metrica-namespace-profiles": "Profiles",
|
|
1854
|
+
"value_metrica-namespace-push-events": "Push campaigns",
|
|
1855
|
+
"value_metrica-namespace-push-tokens": "Push tokens",
|
|
1856
|
+
"value_metrica-namespace-revenue-events": "In-app purchases",
|
|
1857
|
+
"value_metrica-namespace-sessions-starts": "Session start",
|
|
1858
|
+
"value_permission-explicit": "Available to the company",
|
|
1859
|
+
"value_permission-owner-only": "Available only to me",
|
|
1860
|
+
"value_token-input-mode-automatic": "Automatic",
|
|
1861
|
+
"value_token-input-mode-manually": "Manually"
|
|
1862
|
+
},
|
|
1863
|
+
"connections.gsheet.view": {
|
|
1864
|
+
"button_add": "Add",
|
|
1865
|
+
"button_add-table": "Add file",
|
|
1866
|
+
"button_apply": "Done",
|
|
1867
|
+
"button_cancel": "Cancel",
|
|
1868
|
+
"button_google-login": "Log in to your Google account",
|
|
1869
|
+
"button_google-logout": "Log out",
|
|
1870
|
+
"button_update": "Update data",
|
|
1871
|
+
"label_403-not-authotized-description": "Log in to your Google account or change your file access settings and try adding it again",
|
|
1872
|
+
"label_403-title": "You don't have access to the file",
|
|
1873
|
+
"label_add-table-placeholder": "Link to file",
|
|
1874
|
+
"label_auth-failure": "Couldn't authenticate",
|
|
1875
|
+
"label_auth-success": "Authentication passed",
|
|
1876
|
+
"label_auto-update": "Update automatically",
|
|
1877
|
+
"label_auto-update-help": "Data in the tables will be updated no more than once every 30 minutes",
|
|
1878
|
+
"label_columns-header": "Show column headers",
|
|
1879
|
+
"label_empty-file": "Empty document",
|
|
1880
|
+
"label_file-limit-exceeded": "Maximum data size exceeded",
|
|
1881
|
+
"label_file-not-found": "Document not found",
|
|
1882
|
+
"label_google-auth-help": "To add files with restricted access, log in to your Google account",
|
|
1883
|
+
"label_google-oauth-page-failure": "Couldn't open authentication page",
|
|
1884
|
+
"label_gsheet-failed": "Couldn't load data from sheets",
|
|
1885
|
+
"label_gsheet-ready": "Select sheets",
|
|
1886
|
+
"label_gsheet-sources-dialog-title-batch": "Add sheets",
|
|
1887
|
+
"label_gsheet-sources-dialog-title-single": "Replace sheet",
|
|
1888
|
+
"label_gsheet-uploading-failure": "Couldn't upload file",
|
|
1889
|
+
"label_invalid-link": "Invalid link format",
|
|
1890
|
+
"label_lists": "Sheets",
|
|
1891
|
+
"label_logout-dialog-description": "Sheets from files with restricted access will no longer be displayed",
|
|
1892
|
+
"label_logout-dialog-title": "Are you sure you want to log out of your Goggle account?",
|
|
1893
|
+
"label_no": "No",
|
|
1894
|
+
"label_replace-name": "Rename",
|
|
1895
|
+
"label_replace-source": "Replace",
|
|
1896
|
+
"label_source-failed": "Couldn't load sheet",
|
|
1897
|
+
"label_source-info-failed": "Couldn't load data from sheet",
|
|
1898
|
+
"label_too-many-columns": "Maximum number of columns in the table exceeded",
|
|
1899
|
+
"label_unsupported-document": "Document not supported",
|
|
1900
|
+
"label_update-failure": "Couldn't update data",
|
|
1901
|
+
"label_uploading": "Loading...",
|
|
1902
|
+
"label_workspace-placeholder": "To create a connection, add links to Google Sheets files",
|
|
1903
|
+
"label_yes": "Yes"
|
|
1904
|
+
},
|
|
1905
|
+
"connections.yadocs.view": {
|
|
1906
|
+
"button_add": "Add",
|
|
1907
|
+
"button_apply": "Add",
|
|
1908
|
+
"button_auth": "Log in to Yandex Documents",
|
|
1909
|
+
"button_auth-dialog": "Log in",
|
|
1910
|
+
"button_cancel": "Cancel",
|
|
1911
|
+
"button_logout": "Revoke",
|
|
1912
|
+
"button_update": "Update data",
|
|
1913
|
+
"label_403-not-authotized-description": "Log in to your Yandex account or change the file access type and try adding it again",
|
|
1914
|
+
"label_access-type": "Access to file",
|
|
1915
|
+
"label_add-file": "Add file",
|
|
1916
|
+
"label_add-input-private-help": "The path is specified relative to the root directory <code>/disk</code>. Read more about finding the path in the <link>documentation</link>.",
|
|
1917
|
+
"label_add-input-private-note": "Example: /folder/path/table.xlsx",
|
|
1918
|
+
"label_add-input-public-help": "Files with a password set or a download ban enabled are not supported. Please use private files available after authentication instead.",
|
|
1919
|
+
"label_add-input-public-note": "Example: https://disk.yandex.ru/i/QLFNDx7c5*****",
|
|
1920
|
+
"label_alert-authorized": "You are logged in to Yandex Documents and now can add private files",
|
|
1921
|
+
"label_alert-not-authorized": "To add a private file, log in to Yandex Documents",
|
|
1922
|
+
"label_auto-update": "Update automatically",
|
|
1923
|
+
"label_auto-update-help": "Data in the tables will be updated no more than once every 30 minutes.",
|
|
1924
|
+
"label_form-tile": "Yandex Documents",
|
|
1925
|
+
"label_logout": "You are logged in to Yandex Documents",
|
|
1926
|
+
"label_logout-dialog-description": "File contents with private access will no longer be displayed",
|
|
1927
|
+
"label_logout-dialog-title": "Are you sure you want to revoke your token?",
|
|
1928
|
+
"label_private-path": "Path to file in <link>Yandex Documents</link>",
|
|
1929
|
+
"label_public-path": "Link to file in <link>Yandex Documents</link>",
|
|
1930
|
+
"label_radio-value-private": "Private",
|
|
1931
|
+
"label_radio-value-public": "Public",
|
|
1932
|
+
"label_workspace-placeholder": "To create a connection, add files from Yandex Documents. Only the XLSX format is supported."
|
|
1933
|
+
},
|
|
1934
|
+
"container.metric-dialog": {
|
|
1935
|
+
"button_apply": "Apply",
|
|
1936
|
+
"button_cancel": "Cancel",
|
|
1937
|
+
"label_color-error": "Use HEX format to indicate a color",
|
|
1938
|
+
"label_font-color": "Color",
|
|
1939
|
+
"label_font-size": "Size",
|
|
1940
|
+
"label_settings": "Metric settings"
|
|
1941
|
+
},
|
|
1942
|
+
"dash.action-panel.view": {
|
|
1943
|
+
"button_add-favorite": "Add to favorites",
|
|
1944
|
+
"button_back": "Back",
|
|
1945
|
+
"button_cancel": "Cancel",
|
|
1946
|
+
"button_connections": "Links",
|
|
1947
|
+
"button_continue": "Continue",
|
|
1948
|
+
"button_edit": "Edit",
|
|
1949
|
+
"button_mailing": "Mailing",
|
|
1950
|
+
"button_menu": "Menu",
|
|
1951
|
+
"button_ready": "Ready",
|
|
1952
|
+
"button_remove-favorite": "Delete from favorites",
|
|
1953
|
+
"button_request-rights": "Request permissions",
|
|
1954
|
+
"button_save": "Save",
|
|
1955
|
+
"button_save-as-draft": "Save as draft",
|
|
1956
|
+
"button_settings": "Settings",
|
|
1957
|
+
"button_tabs": "Tabs",
|
|
1958
|
+
"dialog_deprecation-apply-label": "Update",
|
|
1959
|
+
"dialog_deprecation-cancel-label": "Cancel",
|
|
1960
|
+
"dialog_deprecation-confirm-header": "Update dashboard configuration",
|
|
1961
|
+
"dialog_deprecation-confirm-text": "The dashboard may behave differently after the update. Are you sure you want to continue?",
|
|
1962
|
+
"dialog_deprecation-copy-text": "The current version of the dashboard is deprecated. Its settings will be updated when it is copied.",
|
|
1963
|
+
"label_as_draft": "Save as draft",
|
|
1964
|
+
"label_dash-info": "Dashboard info",
|
|
1965
|
+
"label_deprecation-warning": "The current version of the dashboard is deprecated.",
|
|
1966
|
+
"label_mailing": "Go to the tab and choose selector values",
|
|
1967
|
+
"label_save_and_publish": "Save and make actual",
|
|
1968
|
+
"label_save_as_new": "Save as new dashboard",
|
|
1969
|
+
"label_unsaved-changes-title": "There are unsaved changes on this page",
|
|
1970
|
+
"label_unsaved-changes-warning": "You can return to the dashboard and save them. If you continue, these changes will be lost.",
|
|
1971
|
+
"toast_error": "An error occurred",
|
|
1972
|
+
"toast_failed-add-favorite": "Failed to add to favorites",
|
|
1973
|
+
"toast_failed-remove-favorite": "Failed to delete from favorites",
|
|
1974
|
+
"value_copy": "Copy",
|
|
1975
|
+
"value_delete": "Delete",
|
|
1976
|
+
"value_fullscreen": "Fullscreen",
|
|
1977
|
+
"value_mailings": "Mailings",
|
|
1978
|
+
"value_move": "Move",
|
|
1979
|
+
"value_rename": "Rename",
|
|
1980
|
+
"value_table-of-content": "Contents",
|
|
1981
|
+
"value_widget-ql": "Chart (QL)",
|
|
1982
|
+
"value_widget-wizard": "Chart (Wizard)"
|
|
1983
|
+
},
|
|
1984
|
+
"dash.chartkit-menu.view": {
|
|
1985
|
+
"button_edit": "Edit",
|
|
1986
|
+
"button_new-tab": "Open in a new tab"
|
|
1987
|
+
},
|
|
1988
|
+
"dash.control-dialog.edit": {
|
|
1989
|
+
"button_add": "Add",
|
|
1990
|
+
"button_apply": "Apply",
|
|
1991
|
+
"button_cancel": "Cancel",
|
|
1992
|
+
"button_deselect-all": "Clear",
|
|
1993
|
+
"button_edit-query": "Edit query",
|
|
1994
|
+
"button_open": "Open",
|
|
1995
|
+
"button_save": "Save",
|
|
1996
|
+
"button_select-all": "Select all",
|
|
1997
|
+
"button_setup": "Configure",
|
|
1998
|
+
"context_add-value": "Add value",
|
|
1999
|
+
"context_choose": "Select",
|
|
2000
|
+
"context_date-days-ago": "Days ago",
|
|
2001
|
+
"context_date-from-days-ago": "Start, days ago",
|
|
2002
|
+
"context_date-to-days-ago": "End, days ago",
|
|
2003
|
+
"context_title": "Title",
|
|
2004
|
+
"error_unsupported-connection": "Connection not supported",
|
|
2005
|
+
"field_acceptable-values": "Possible values",
|
|
2006
|
+
"field_autoheight": "Auto height",
|
|
2007
|
+
"field_color-accent": "Color accent",
|
|
2008
|
+
"field_color-accent-note": "Use this option to highlight important selectors",
|
|
2009
|
+
"field_connection": "Connection",
|
|
2010
|
+
"field_control": "Selector",
|
|
2011
|
+
"field_dataset": "Dataset",
|
|
2012
|
+
"field_date-from": "Start",
|
|
2013
|
+
"field_date-range": "Range",
|
|
2014
|
+
"field_date-to": "End",
|
|
2015
|
+
"field_date-with-time": "Time",
|
|
2016
|
+
"field_default-value": "Default value",
|
|
2017
|
+
"field_element-type": "Element type",
|
|
2018
|
+
"field_end-time": "End time",
|
|
2019
|
+
"field_field": "Field",
|
|
2020
|
+
"field_field-name": "Field or parameter",
|
|
2021
|
+
"field_field-name-note": "The name of the field or parameter, which can be used to link the selector with other widgets.",
|
|
2022
|
+
"field_hint": "Hint",
|
|
2023
|
+
"field_inner-title": "Inner title",
|
|
2024
|
+
"field_inner-title-note": "The inner title allows you to specify a text inside the selector, e.g., to display an operation inside a selector.<br><br>Not available in the Checkbox selector type.",
|
|
2025
|
+
"field_inner-title-note-connection-selector": "The inner title allows you to specify a text inside the selector.",
|
|
2026
|
+
"field_label": "Label",
|
|
2027
|
+
"field_multiselectable": "Multiple choice",
|
|
2028
|
+
"field_operation": "Operation",
|
|
2029
|
+
"field_operation-note": "The type of operation has no effect on QL Charts and parameters",
|
|
2030
|
+
"field_parameter-name": "Field name or parameter",
|
|
2031
|
+
"field_params": "Parameters",
|
|
2032
|
+
"field_preset": "Type",
|
|
2033
|
+
"field_query": "Query",
|
|
2034
|
+
"field_query-type": "Query type",
|
|
2035
|
+
"field_required-value": "Required field",
|
|
2036
|
+
"field_selector-type": "Selector type",
|
|
2037
|
+
"field_show-title": "Show",
|
|
2038
|
+
"field_source": "Source",
|
|
2039
|
+
"field_start-time": "Start time",
|
|
2040
|
+
"field_title": "Title",
|
|
2041
|
+
"field_type": "Type",
|
|
2042
|
+
"hint_not-combined-with-group-setting": "You can select a value that does not exceed the value specified in the selector group settings",
|
|
2043
|
+
"label_acceptable-values": "Possible values",
|
|
2044
|
+
"label_autoheight-disable": "Disable",
|
|
2045
|
+
"label_autoheight-enable": "Enable",
|
|
2046
|
+
"label_common-settings": "Common settings",
|
|
2047
|
+
"label_control": "Selector",
|
|
2048
|
+
"label_default-value": "Default value",
|
|
2049
|
+
"label_empty-list": "List is empty",
|
|
2050
|
+
"label_no-operations": "Thee are no available operations for the settings you specified",
|
|
2051
|
+
"label_section-appearance": "Appearance",
|
|
2052
|
+
"label_selected-tabs-placeholder": "Select tabs",
|
|
2053
|
+
"label_tabs-scope": "Show in tabs",
|
|
2054
|
+
"placeholder_search": "Search",
|
|
2055
|
+
"radio-button_all": "All",
|
|
2056
|
+
"radio-button_selected": "Selected",
|
|
2057
|
+
"text_empty-items": "Not found",
|
|
2058
|
+
"validation_empty-impact-tabs-ids": "Select at least one tab",
|
|
2059
|
+
"validation_empty-parameters-values": "Fields with parameters must be filled out",
|
|
2060
|
+
"validation_field-name-in-parameters": "The parameter name must not be the same as the names of parameters in the section below",
|
|
2061
|
+
"validation_field-name-unique": "Parameter names in the group should not match. These selectors have the same parameter names: {{selectorsNames}}",
|
|
2062
|
+
"validation_need-current-tab-impact": "There must be at least one selector visible on the current tab",
|
|
2063
|
+
"validation_not-combined-with-group-setting": "The value in the selector settings should not exceed the selector group settings",
|
|
2064
|
+
"validation_required": "Field must be filled",
|
|
2065
|
+
"value_absolute-date": "Exact date",
|
|
2066
|
+
"value_all-tabs": "All tabs",
|
|
2067
|
+
"value_as-group": "As group settings",
|
|
2068
|
+
"value_checkbox-default-value-false": "False",
|
|
2069
|
+
"value_checkbox-default-value-true": "True",
|
|
2070
|
+
"value_current-tab": "Current tab",
|
|
2071
|
+
"value_date-accepted-all": "Entire permitted interval",
|
|
2072
|
+
"value_date-accepted-end": "End of permitted interval",
|
|
2073
|
+
"value_date-accepted-start": "Start of permitted interval",
|
|
2074
|
+
"value_date-ago": "ago",
|
|
2075
|
+
"value_date-days-ago-from-to": "Start: {{from}}. End: {{to}}",
|
|
2076
|
+
"value_date-forward": "forward",
|
|
2077
|
+
"value_date-manual": "Selecting a value",
|
|
2078
|
+
"value_date-no-limits": "No limits",
|
|
2079
|
+
"value_element-checkbox": "Checkbox",
|
|
2080
|
+
"value_element-date": "Calendar",
|
|
2081
|
+
"value_element-input": "Input field",
|
|
2082
|
+
"value_element-select": "List",
|
|
2083
|
+
"value_not-chosen": "Not selected",
|
|
2084
|
+
"value_relative-date": "Offset from the current date",
|
|
2085
|
+
"value_select-values": "Values: {{count}}",
|
|
2086
|
+
"value_selected-tabs": "Selected tabs",
|
|
2087
|
+
"value_source-connection": "Based on a connection",
|
|
2088
|
+
"value_source-dataset": "Based on dataset",
|
|
2089
|
+
"value_source-external": "External selector",
|
|
2090
|
+
"value_source-manual": "Manual input",
|
|
2091
|
+
"value_undefined": "Not defined"
|
|
2092
|
+
},
|
|
2093
|
+
"dash.dashkit-control.error": {
|
|
2094
|
+
"button_retry": "Repeat",
|
|
2095
|
+
"label_error": "Error",
|
|
2096
|
+
"label_error-timeout": "The server response waiting time has been exceeded",
|
|
2097
|
+
"label_field-error-text": "The specified field type for the selector is not supported. Please change the field type.",
|
|
2098
|
+
"label_field-error-title": "Field type error"
|
|
2099
|
+
},
|
|
2100
|
+
"dash.dashkit-plugin-common.view": {
|
|
2101
|
+
"label_autoheight-checkbox": "Autoheight",
|
|
2102
|
+
"label_background-checkbox": "Background",
|
|
2103
|
+
"label_border-radius": "Rounding"
|
|
2104
|
+
},
|
|
2105
|
+
"dash.dashkit-plugin-control.view": {
|
|
2106
|
+
"button_apply": "Apply",
|
|
2107
|
+
"button_details": "Details",
|
|
2108
|
+
"button_reset": "Reset",
|
|
2109
|
+
"button_retry": "Retry",
|
|
2110
|
+
"placeholder_empty": "No selected values",
|
|
2111
|
+
"value_required": "This field is required",
|
|
2112
|
+
"value_undefined": "Not defined"
|
|
2113
|
+
},
|
|
2114
|
+
"dash.dialogs-common.edit": {
|
|
2115
|
+
"button_back": "Back",
|
|
2116
|
+
"title_widget-settings": "Widget settings"
|
|
2117
|
+
},
|
|
2118
|
+
"dash.edit-query-dialog": {
|
|
2119
|
+
"button_apply": "Apply",
|
|
2120
|
+
"button_cancel": "Cancel",
|
|
2121
|
+
"error_invalid-typed-query-response": "The selector does not support responses with 2 or more columns from the database.",
|
|
2122
|
+
"title_database-response": "Database response",
|
|
2123
|
+
"title_edit-query": "Edit query",
|
|
2124
|
+
"title_invalid-sql-query": "Invalid SQL query to database",
|
|
2125
|
+
"title_sent-query": "Sent query"
|
|
2126
|
+
},
|
|
2127
|
+
"dash.empty-state.view": {
|
|
2128
|
+
"button_edit": "Edit",
|
|
2129
|
+
"label_empty-dash": "This dashboard is empty for now",
|
|
2130
|
+
"label_empty-fixed-content": "This area can be collapsed and expanded. To fill it, drag the necessary blocks from the panel at the bottom of the page.",
|
|
2131
|
+
"label_empty-fixed-header": "This area is fixed when scrolling the page. To fill it, drag the necessary blocks from the panel at the bottom of the page.",
|
|
2132
|
+
"label_empty-tab": "This tab is empty for now",
|
|
2133
|
+
"label_mobile-dash": "You haven't added anything yet",
|
|
2134
|
+
"label_mobile-tab": "You haven't added anything yet",
|
|
2135
|
+
"label_with-edit-rights": "Drag and drop blocks from the panel below to add charts, selectors, and explanations",
|
|
2136
|
+
"label_without-edit-rights": "The owner of the dashboard hasn't added anything yet"
|
|
2137
|
+
},
|
|
2138
|
+
"dash.error.view": {
|
|
2139
|
+
"label_error-404-message": "Object not found"
|
|
2140
|
+
},
|
|
2141
|
+
"dash.extended-settings-dialog.edit": {
|
|
2142
|
+
"context_apply-button": "This option enables a button for applying selectors",
|
|
2143
|
+
"context_reset-button": "This option enables a button for resetting selectors",
|
|
2144
|
+
"context_update-controls-on-change": "Once you enable this option, the dependent selectors will have influence on each other before you click Apply.",
|
|
2145
|
+
"label_apply-button-checkbox": "Apply button",
|
|
2146
|
+
"label_autoheight-checkbox": "Autoheight",
|
|
2147
|
+
"label_field-validation": "Invalid width value",
|
|
2148
|
+
"label_group-display": "Display",
|
|
2149
|
+
"label_group-name": "Name",
|
|
2150
|
+
"label_note": "Selectors whose width does not fit completely inside the widget that unites a group of selectors will be moved to the next line",
|
|
2151
|
+
"label_reset-button-checkbox": "Reset button",
|
|
2152
|
+
"label_selectors-representation": "Selectors representation order and width",
|
|
2153
|
+
"label_update-controls-on-change": "Auto-updating dependent selectors",
|
|
2154
|
+
"value_auto": "Auto",
|
|
2155
|
+
"value_percent": "%",
|
|
2156
|
+
"value_pixels": "px"
|
|
2157
|
+
},
|
|
2158
|
+
"dash.group-controls-dialog.edit": {
|
|
2159
|
+
"button_add-selector": "Add",
|
|
2160
|
+
"button_cancel": "Cancel",
|
|
2161
|
+
"button_join-all": "Join all",
|
|
2162
|
+
"button_join-selectors": "Join",
|
|
2163
|
+
"button_paste-selector": "Paste",
|
|
2164
|
+
"button_save": "Save",
|
|
2165
|
+
"hint_find-similiar-selectors": "Find selectors with the same field or parameter",
|
|
2166
|
+
"label_copy-invalid-control": "Failed to copy selector: some fields did not pass validation",
|
|
2167
|
+
"label_default-tab": "Selector {{index}}",
|
|
2168
|
+
"label_filtration": "Filtration",
|
|
2169
|
+
"label_find-no-similiar-selectors": "No similar selectors found. Selectors must have the same field or parameter.",
|
|
2170
|
+
"label_finding-similiar-selectors-progress": "Finding similar selectors",
|
|
2171
|
+
"label_general": "General",
|
|
2172
|
+
"label_group-settings": "Group settings",
|
|
2173
|
+
"label_joined-selectors": "Joined",
|
|
2174
|
+
"label_no-display-on-current-tab": "Not displayed on the current tab",
|
|
2175
|
+
"label_representation": "Representation",
|
|
2176
|
+
"label_selector-group": "Selector group",
|
|
2177
|
+
"label_selectors-list": "Selectors",
|
|
2178
|
+
"label_similiar-selectors": "Similar selectors",
|
|
2179
|
+
"label_similiar-selectors-tab": "Tab",
|
|
2180
|
+
"label_similiar-selectors-title": "Title",
|
|
2181
|
+
"label_source": "Source",
|
|
2182
|
+
"label_title-placement": "Title placement",
|
|
2183
|
+
"value_title-hidden": "Hidden",
|
|
2184
|
+
"value_title-placement-left": "Left",
|
|
2185
|
+
"value_title-placement-top": "Top"
|
|
2186
|
+
},
|
|
2187
|
+
"dash.image-dialog.edit": {
|
|
2188
|
+
"button_add": "Add",
|
|
2189
|
+
"button_cancel": "Cancel",
|
|
2190
|
+
"button_save": "Save",
|
|
2191
|
+
"label_alt-text": "Alternative text",
|
|
2192
|
+
"label_alt-text-description": "The alternative text is displayed on the page if the image can't be loaded for some reason, e.g., network errors, content blocking, or linkrot.",
|
|
2193
|
+
"label_aspect-ratio": "Keep the aspect ratio",
|
|
2194
|
+
"label_link": "Link",
|
|
2195
|
+
"label_required-field": "This field cannot be empty",
|
|
2196
|
+
"label_title": "Image"
|
|
2197
|
+
},
|
|
2198
|
+
"dash.main.view": {
|
|
2199
|
+
"button_apply-remove-global-item": "Delete",
|
|
2200
|
+
"button_cancel": "Cancel",
|
|
2201
|
+
"button_close": "Close",
|
|
2202
|
+
"button_edit-panel-chart": "Chart",
|
|
2203
|
+
"button_edit-panel-editor-selector": "Selector (JS)",
|
|
2204
|
+
"button_edit-panel-image": "Image",
|
|
2205
|
+
"button_edit-panel-paste": "Paste",
|
|
2206
|
+
"button_edit-panel-selector": "Selector",
|
|
2207
|
+
"button_edit-panel-text": "Text",
|
|
2208
|
+
"button_edit-panel-title": "Header",
|
|
2209
|
+
"button_links": "Links",
|
|
2210
|
+
"label_details": "Details",
|
|
2211
|
+
"label_failed-copy-global-item": "The copied selector settings make it impossible to display it on the current tab. Change the display settings in the original selector before trying to copy it.",
|
|
2212
|
+
"label_fixed-collapsed-default": "Collapse by default",
|
|
2213
|
+
"label_loading": "Uploading",
|
|
2214
|
+
"label_pin": "Pin",
|
|
2215
|
+
"label_remove-global-selector": "The selector is displayed on multiple tabs. Are you sure you want to delete it from all tabs?",
|
|
2216
|
+
"label_unpin": "Unpin",
|
|
2217
|
+
"label_unpin-all": "Unpin all",
|
|
2218
|
+
"label_updating": "Updating",
|
|
2219
|
+
"title_failed-copy-global-item": "Failed to copy selector",
|
|
2220
|
+
"title_remove-global-selector": "Deleting a selector",
|
|
2221
|
+
"toast_paste-invalid-workbook-entry": "Pasting widgets linked to objects from another workbook is forbidden",
|
|
2222
|
+
"toast_unsaved": "There are unsaved changes on the page. Are you sure?",
|
|
2223
|
+
"tooltip_collapse-fixed-group": "Collapse pinned group",
|
|
2224
|
+
"tooltip_expand-fixed-group": "Expand pinned group",
|
|
2225
|
+
"value_state-limit-error": "Dashboard state not saved",
|
|
2226
|
+
"value_state-limit-error-message": "Too many parameters are configured in the charts. Try reducing the number of selectors or of the values in them.",
|
|
2227
|
+
"warning_paste-invalid-workbook-entry": "To work with this object within another workbook, please migrate all linked objects from the source workbook. <link>Migrating objects to workbooks</link>"
|
|
2228
|
+
},
|
|
2229
|
+
"dash.navigation-input.edit": {
|
|
2230
|
+
"button_cancel": "Close",
|
|
2231
|
+
"button_choose": "Select",
|
|
2232
|
+
"button_ok": "OK",
|
|
2233
|
+
"button_open": "Open",
|
|
2234
|
+
"button_use-link": "Specify link",
|
|
2235
|
+
"context_fill-link": "Link",
|
|
2236
|
+
"toast_error": "Error",
|
|
2237
|
+
"toast_incorrect-source": "Invalid source type",
|
|
2238
|
+
"toast_incorrect-url": "Invalid URL",
|
|
2239
|
+
"toast_not-found": "Source not found",
|
|
2240
|
+
"toast_not-selector": "Source is not a selector",
|
|
2241
|
+
"toast_wrong-workbook-id": "Select a source from the current workflow"
|
|
2242
|
+
},
|
|
2243
|
+
"dash.palette-background": {
|
|
2244
|
+
"button_custom_value": "Enter value",
|
|
2245
|
+
"tooltip_click-to-select": "Select value",
|
|
2246
|
+
"value_base_gray": "Basic gray background",
|
|
2247
|
+
"value_default": "Basic background for charts",
|
|
2248
|
+
"value_transparent": "Transparent"
|
|
2249
|
+
},
|
|
2250
|
+
"dash.params-button-dialog.view": {
|
|
2251
|
+
"context_invalid-format": "Incorrect format. Key won't be saved.",
|
|
2252
|
+
"context_restricted-param": "Reserved name. Key won't be saved."
|
|
2253
|
+
},
|
|
2254
|
+
"dash.params-setting.view": {
|
|
2255
|
+
"button_add-param": "Add parameter",
|
|
2256
|
+
"button_remove-all": "Remove all",
|
|
2257
|
+
"label_name": "Name",
|
|
2258
|
+
"label_value": "Value"
|
|
2259
|
+
},
|
|
2260
|
+
"dash.popup-widgets-order.view": {
|
|
2261
|
+
"button_apply": "Apply",
|
|
2262
|
+
"button_cancel": "Cancel",
|
|
2263
|
+
"button_make-default": "By default",
|
|
2264
|
+
"label_control": "Selector",
|
|
2265
|
+
"label_group_control": "Group Selector",
|
|
2266
|
+
"label_image": "Image",
|
|
2267
|
+
"label_info": "Widgets order for mobile version",
|
|
2268
|
+
"label_no-items": "No widgets added yet",
|
|
2269
|
+
"label_text": "Text",
|
|
2270
|
+
"label_title": "Title",
|
|
2271
|
+
"label_widget": "Chart"
|
|
2272
|
+
},
|
|
2273
|
+
"dash.settings-dialog.edit": {
|
|
2274
|
+
"button_cancel": "Cancel",
|
|
2275
|
+
"button_save": "Save",
|
|
2276
|
+
"button_setup": "Settings",
|
|
2277
|
+
"context_dependent-selectors": "\"Dependent selectors\" cannot be disabled. Continue?",
|
|
2278
|
+
"context_max-concurrent-requests-hint": "This option limits maximum amount of simultaneously loaded widgets on a dashboard. <br/><br/> This can be useful when data source for the dashboard is not suitable for a big number of parallel queries. Leave empty to disable this limit.",
|
|
2279
|
+
"field_seconds": "seconds",
|
|
2280
|
+
"hint_load-only-visible-charts": "When this option is active, only the charts that are in the user's field of view load as the user scrolls through the dashboard page. When the option is inactive, all charts of the active dashboard tab load immediately as soon as the dashboard opens.",
|
|
2281
|
+
"label_access-description": "Access error message",
|
|
2282
|
+
"label_autoupdate": "Auto update",
|
|
2283
|
+
"label_autoupdate-interval": "Interval",
|
|
2284
|
+
"label_border-radius": "Rounding",
|
|
2285
|
+
"label_dependent-selectors": "Dependent selectors",
|
|
2286
|
+
"label_display": "Appearance",
|
|
2287
|
+
"label_display-info": "Select elements to display on the dashboard",
|
|
2288
|
+
"label_expand-toc": "Expand contents",
|
|
2289
|
+
"label_experimental": "Experimental",
|
|
2290
|
+
"label_global-params": "Dashboard parameters",
|
|
2291
|
+
"label_hide-tabs": "Hide tabs",
|
|
2292
|
+
"label_hide-title": "Hide title",
|
|
2293
|
+
"label_load-only-visible-charts": "Only load visible charts",
|
|
2294
|
+
"label_load-priority": "Load priority",
|
|
2295
|
+
"label_load-priority-hint": "Defines the order in which widgets are loaded on the dashboard. For example, if priority is given to charts, all the charts that appear on the screen will be loaded first and then selectors",
|
|
2296
|
+
"label_loading": "Load indicator",
|
|
2297
|
+
"label_margins": "Margins",
|
|
2298
|
+
"label_max-concurrent-requests": "Number of simultaneously loaded widgets",
|
|
2299
|
+
"label_max-concurrent-requests-placeholder": "Not limited",
|
|
2300
|
+
"label_other-settings": "Other settings",
|
|
2301
|
+
"label_settings": "Settings",
|
|
2302
|
+
"label_silent-loading": "Hide loading indicator",
|
|
2303
|
+
"label_support-description": "Window before contacting support",
|
|
2304
|
+
"label_tabs": "Tabs",
|
|
2305
|
+
"label_title": "Title",
|
|
2306
|
+
"label_toc": "Contents",
|
|
2307
|
+
"value_load-priority-charts": "Charts",
|
|
2308
|
+
"value_load-priority-selectors": "Selectors"
|
|
2309
|
+
},
|
|
2310
|
+
"dash.store.view": {
|
|
2311
|
+
"button_cancel": "Cancel",
|
|
2312
|
+
"button_edit-anyway": "Edit anyway",
|
|
2313
|
+
"button_reload-page": "Reload page",
|
|
2314
|
+
"label_copied-widget-postfix": "copy",
|
|
2315
|
+
"label_dash-is-editing": "Dashboard is being edited",
|
|
2316
|
+
"label_obsolete-dash": "Dashboard is obsolete",
|
|
2317
|
+
"label_obsolete-version": "Dashboard's current version is obsolete. Reload the page to get a new version.",
|
|
2318
|
+
"label_selector-dialog": "Selector 1",
|
|
2319
|
+
"label_tab-default-name": "Tab 1",
|
|
2320
|
+
"label_unexpected-error": "Error"
|
|
2321
|
+
},
|
|
2322
|
+
"dash.table-of-content.view": {
|
|
2323
|
+
"context_table-of-content": "Contents",
|
|
2324
|
+
"label_table-of-content": "Contents"
|
|
2325
|
+
},
|
|
2326
|
+
"dash.tabs-dialog.edit": {
|
|
2327
|
+
"button_add-tab": "Add",
|
|
2328
|
+
"button_cancel": "Cancel",
|
|
2329
|
+
"button_save": "Save",
|
|
2330
|
+
"label_tabs": "Tabs",
|
|
2331
|
+
"menu_delete": "Delete",
|
|
2332
|
+
"menu_delete_other": "Delete all but this",
|
|
2333
|
+
"menu_duplicate": "Duplicate",
|
|
2334
|
+
"menu_order": "Widget order",
|
|
2335
|
+
"menu_rename": "Rename",
|
|
2336
|
+
"value_default": "Tab {{index}}",
|
|
2337
|
+
"value_default-duplicated": "{{title}} (copy)"
|
|
2338
|
+
},
|
|
2339
|
+
"dash.text-dialog.edit": {
|
|
2340
|
+
"button_add": "Add",
|
|
2341
|
+
"button_cancel": "Cancel",
|
|
2342
|
+
"button_save": "Save",
|
|
2343
|
+
"context_fill-text": "Enter text",
|
|
2344
|
+
"label_domain": "Domain",
|
|
2345
|
+
"label_image-hint": "The link to the image must be located in the {{domain}} domain, <link>read more</link>",
|
|
2346
|
+
"label_syntax": "Markdown supported",
|
|
2347
|
+
"label_text": "Text"
|
|
2348
|
+
},
|
|
2349
|
+
"dash.title-dialog.edit": {
|
|
2350
|
+
"button_add": "Add",
|
|
2351
|
+
"button_cancel": "Cancel",
|
|
2352
|
+
"button_save": "Save",
|
|
2353
|
+
"context_fill-title": "Enter title",
|
|
2354
|
+
"field_show-in-toc": "Display in contents",
|
|
2355
|
+
"label_size": "Size",
|
|
2356
|
+
"label_text-color": "Text color",
|
|
2357
|
+
"label_title": "Title",
|
|
2358
|
+
"toast_required-field": "The field cannot be empty",
|
|
2359
|
+
"value_default": "Title"
|
|
2360
|
+
},
|
|
2361
|
+
"dash.widget-dialog.edit": {
|
|
2362
|
+
"button_add": "Add",
|
|
2363
|
+
"button_add-param": "Add parameter",
|
|
2364
|
+
"button_cancel": "Cancel",
|
|
2365
|
+
"button_params-setup": "Configure",
|
|
2366
|
+
"button_save": "Save",
|
|
2367
|
+
"context_autoheight-availability-hint": "Available only for charts with \"Table\" and \"Markdown\" types",
|
|
2368
|
+
"context_fill-title": "Enter title",
|
|
2369
|
+
"context_filtering-other-charts": "This option enables you to apply filtering from this chart to other charts on the dashboard",
|
|
2370
|
+
"context_filtering-usage-limitations": "<link>More about filtration</link>",
|
|
2371
|
+
"context_hint-display-info": "The hint appears in the widget title if the title is enabled",
|
|
2372
|
+
"field_autoheight": "Auto height",
|
|
2373
|
+
"field_background": "Background",
|
|
2374
|
+
"field_background-enable": "Enable",
|
|
2375
|
+
"field_description": "Description",
|
|
2376
|
+
"field_enable-filtering-other-charts": "Enable",
|
|
2377
|
+
"field_hint": "Hint",
|
|
2378
|
+
"field_param-name": "Name",
|
|
2379
|
+
"field_param-value": "Value",
|
|
2380
|
+
"field_params": "Parameters",
|
|
2381
|
+
"field_show-title": "Show",
|
|
2382
|
+
"field_title": "Title",
|
|
2383
|
+
"field_widget": "Chart",
|
|
2384
|
+
"label_autoheight-enable": "Enable",
|
|
2385
|
+
"label_empty-list": "List is empty",
|
|
2386
|
+
"label_filtering-other-charts": "Filtering",
|
|
2387
|
+
"label_new-param": "New parameter",
|
|
2388
|
+
"label_settings": "Settings",
|
|
2389
|
+
"label_widget": "Chart",
|
|
2390
|
+
"section_appearance": "Appearance",
|
|
2391
|
+
"section_common": "Common",
|
|
2392
|
+
"tab_settings": "Settings",
|
|
2393
|
+
"tab_tabs": "Tabs",
|
|
2394
|
+
"toast_required-field": "The field cannot be empty",
|
|
2395
|
+
"value_title-default": "Title {{index}}"
|
|
2396
|
+
},
|
|
2397
|
+
"datalens.landing.error": {
|
|
2398
|
+
"label_description-auth-denied": "Please contact technical support",
|
|
2399
|
+
"label_description-auth-failed": "Please contact technical support",
|
|
2400
|
+
"label_description-fail": "Please contact technical support",
|
|
2401
|
+
"label_page-title-auth-denied": "Auth denied",
|
|
2402
|
+
"label_page-title-auth-failed": "Auth error",
|
|
2403
|
+
"label_page-title-cloud-folder-access-denied": "Access error",
|
|
2404
|
+
"label_page-title-fail": "Error",
|
|
2405
|
+
"label_page-title-forbidden-entry": "Forbidden",
|
|
2406
|
+
"label_page-title-inaccessible-entry-folder": "Access error",
|
|
2407
|
+
"label_page-title-missing-entry": "Not found",
|
|
2408
|
+
"label_title-auth-denied": "You don't have access",
|
|
2409
|
+
"label_title-auth-failed": "Something went wrong",
|
|
2410
|
+
"label_title-cloud-folder-access-denied": "You don't have access to DataLens objects in this folder",
|
|
2411
|
+
"label_title-fail": "Something went wrong",
|
|
2412
|
+
"label_title-forbidden-entry": "Access restricted",
|
|
2413
|
+
"label_title-missing-current-cloud-folder": "Select a folder to work with DataLens",
|
|
2414
|
+
"label_title-missing-entry": "Not found"
|
|
2415
|
+
},
|
|
2416
|
+
"dataset.dataset-creation.create": {
|
|
2417
|
+
"button_apply": "Create",
|
|
2418
|
+
"button_cancel": "Cancel",
|
|
2419
|
+
"button_change-connection": "Edit connection",
|
|
2420
|
+
"button_change-source": "Save",
|
|
2421
|
+
"button_create-dataset": "Create dataset",
|
|
2422
|
+
"button_select-connection": "Select connection",
|
|
2423
|
+
"field_dataset-title": "Dataset name",
|
|
2424
|
+
"field_db-name": "Database",
|
|
2425
|
+
"field_table-name": "Table",
|
|
2426
|
+
"field_yt-table-path": "Path to table in YT",
|
|
2427
|
+
"field_yt-table-path-error": "Invalid table path or URL",
|
|
2428
|
+
"field_yt-table-path-error-cluster": "The connection uses {{cluster}} cluster",
|
|
2429
|
+
"label_database-list-connection-error": "Error: unable to connect to connection",
|
|
2430
|
+
"label_database-list-forbidden-error": "You don't have permission to access this connection",
|
|
2431
|
+
"label_database-list-general-error": "Error: failed to load list of available databases",
|
|
2432
|
+
"label_entry-name-already-exists": "That name is already in use, try another one",
|
|
2433
|
+
"label_error": "Failed to create dataset",
|
|
2434
|
+
"label_error-400-no-connection-title": "Error: no connection",
|
|
2435
|
+
"label_error-400-title": "Error: incorrect request to connection",
|
|
2436
|
+
"label_error-403-title": "You don't have access to this connection",
|
|
2437
|
+
"label_error-404-title": "Error: connection not found",
|
|
2438
|
+
"label_error-500-title": "Error: failed to load connection",
|
|
2439
|
+
"label_error-empty-field": "This is a required field",
|
|
2440
|
+
"label_name-default": "New dataset",
|
|
2441
|
+
"label_name-placeholder": "Dataset name",
|
|
2442
|
+
"label_table-list-connection-error": "Error: unable to connect to connection",
|
|
2443
|
+
"label_table-list-forbidden-error": "You don't have access to this connection",
|
|
2444
|
+
"label_table-list-general-error": "Error: failed to load list of available tables",
|
|
2445
|
+
"section_change-source": "Edit connection",
|
|
2446
|
+
"section_select-db-and-table": "Select a database and table:",
|
|
2447
|
+
"section_title": "Create dataset",
|
|
2448
|
+
"toast_create-dataset-error": "Error: failed to create dataset",
|
|
2449
|
+
"toast_default-error": "Error",
|
|
2450
|
+
"toast_error-action-label": "Learn more"
|
|
2451
|
+
},
|
|
2452
|
+
"dataset.dataset-editor.modify": {
|
|
2453
|
+
"button_add-field": "Add field",
|
|
2454
|
+
"button_apply": "Apply",
|
|
2455
|
+
"button_ask-access-rights": "Request permissions",
|
|
2456
|
+
"button_batch-aggregation": "Change aggregation",
|
|
2457
|
+
"button_batch-apply": "Apply",
|
|
2458
|
+
"button_batch-cancel": "Cancel",
|
|
2459
|
+
"button_batch-hide": "Hide",
|
|
2460
|
+
"button_batch-remove": "Delete",
|
|
2461
|
+
"button_batch-show": "Show",
|
|
2462
|
+
"button_batch-type": "Change type",
|
|
2463
|
+
"button_copy-id": "Copy ID",
|
|
2464
|
+
"button_create": "Create",
|
|
2465
|
+
"button_create-widget": "Create chart",
|
|
2466
|
+
"button_display-field": "Show field",
|
|
2467
|
+
"button_duplicate": "Duplicate",
|
|
2468
|
+
"button_edit": "Edit",
|
|
2469
|
+
"button_field-settings": "Display settings",
|
|
2470
|
+
"button_hide-field": "Hide field",
|
|
2471
|
+
"button_inspect": "Inspect",
|
|
2472
|
+
"button_open-field-editor": "Edit",
|
|
2473
|
+
"button_preview": "Preview",
|
|
2474
|
+
"button_preview-bottom": "Expand at bottom",
|
|
2475
|
+
"button_preview-close": "Close",
|
|
2476
|
+
"button_preview-full": "Full screen",
|
|
2477
|
+
"button_preview-right": "Expand from the right",
|
|
2478
|
+
"button_remove": "Delete",
|
|
2479
|
+
"button_row-level-security": "Permissions",
|
|
2480
|
+
"button_save": "Save",
|
|
2481
|
+
"button_update-fields": "Update fields",
|
|
2482
|
+
"column_aggregation": "Aggregation",
|
|
2483
|
+
"column_cast": "Type",
|
|
2484
|
+
"column_description": "Description",
|
|
2485
|
+
"column_field-aggregation": "Aggregation",
|
|
2486
|
+
"column_field-cast": "Type",
|
|
2487
|
+
"column_field-name": "Name",
|
|
2488
|
+
"column_filed-description": "Description",
|
|
2489
|
+
"column_source": "Field source",
|
|
2490
|
+
"column_title": "Name",
|
|
2491
|
+
"field_display-rows": "Number of rows:",
|
|
2492
|
+
"field_find-field": "Field name or description",
|
|
2493
|
+
"label_batch-aggregation": "New field aggregation",
|
|
2494
|
+
"label_batch-selected-fields-count": "Fields selected — {{value}}",
|
|
2495
|
+
"label_batch-type": "New field type",
|
|
2496
|
+
"label_column-field-id": "Field ID",
|
|
2497
|
+
"label_data-preparation-preview": "Loading data for preview",
|
|
2498
|
+
"label_dataset-auto-creation-process": "Creating dataset",
|
|
2499
|
+
"label_dataset-info": "Dataset info",
|
|
2500
|
+
"label_display-fields-id": "Show field IDs",
|
|
2501
|
+
"label_display-hidden-fields": "Show hidden fields",
|
|
2502
|
+
"label_enable-templating": "Enable parameterization",
|
|
2503
|
+
"label_enable-templating-disabled-hint": "Dataset parameterization is prohibited in the connection settings",
|
|
2504
|
+
"label_enable-templating-hint": "Parameterization allows you to use dynamic parameters when configuring the source",
|
|
2505
|
+
"label_error-400-no-connection-title": "Error: no connection",
|
|
2506
|
+
"label_error-400-title": "Error: invalid request to dataset",
|
|
2507
|
+
"label_error-403-title": "You don't have access to the connection",
|
|
2508
|
+
"label_error-404-title": "Error: dataset not found",
|
|
2509
|
+
"label_error-500-title": "Error: failed to upload dataset",
|
|
2510
|
+
"label_field": "Field",
|
|
2511
|
+
"label_load_preview_by_default": "Show preview by default",
|
|
2512
|
+
"label_loading-dataset": "Loading dataset",
|
|
2513
|
+
"label_loading-dataset-preview": "Loading data for preview",
|
|
2514
|
+
"label_max-amount-rows": "maximum {{count}}",
|
|
2515
|
+
"label_new-dataset": "New dataset",
|
|
2516
|
+
"label_no-data": "No data",
|
|
2517
|
+
"label_preview-not-supported": "Preview is not available for this type of source",
|
|
2518
|
+
"label_request-dataset-preview-error": "Error: failed to upload data for preview",
|
|
2519
|
+
"label_templating-disabled": "Forbidden",
|
|
2520
|
+
"label_templating-enabled": "Permitted",
|
|
2521
|
+
"section_preview": "Preview",
|
|
2522
|
+
"text_batch-aggregation-alert": "<link>The aggregations available</link> depend on the selected field type",
|
|
2523
|
+
"text_batch-aggregation-header": "Changing the field aggregation",
|
|
2524
|
+
"text_batch-hide-header": "Hide fields",
|
|
2525
|
+
"text_batch-hide-message": "Are you sure want to hide the selected fields?",
|
|
2526
|
+
"text_batch-remove-header": "Delete fields",
|
|
2527
|
+
"text_batch-remove-message": "Are you sure want to delete the selected fields?",
|
|
2528
|
+
"text_batch-show-header": "Show fields",
|
|
2529
|
+
"text_batch-show-message": "Are you sure want to show the selected fields?",
|
|
2530
|
+
"text_batch-type-alert": "Some conversion types are not available",
|
|
2531
|
+
"text_batch-type-header": "Changing the field type",
|
|
2532
|
+
"text_no-field-settings": "No display settings",
|
|
2533
|
+
"value_array_float": "Array of fractional numbers",
|
|
2534
|
+
"value_array_int": "Array of integers",
|
|
2535
|
+
"value_array_str": "Array of strings",
|
|
2536
|
+
"value_auto": "Auto",
|
|
2537
|
+
"value_avg": "Average",
|
|
2538
|
+
"value_boolean": "Logical",
|
|
2539
|
+
"value_count": "Count",
|
|
2540
|
+
"value_countunique": "Count (Distinct)",
|
|
2541
|
+
"value_data": "Sources",
|
|
2542
|
+
"value_dataset": "Fields",
|
|
2543
|
+
"value_date": "Date",
|
|
2544
|
+
"value_filter": "Filtration",
|
|
2545
|
+
"value_float": "Fractional number",
|
|
2546
|
+
"value_genericdatetime": "Date and time",
|
|
2547
|
+
"value_geopoint": "Geopoint",
|
|
2548
|
+
"value_geopolygon": "Geopolygon",
|
|
2549
|
+
"value_integer": "Integer",
|
|
2550
|
+
"value_markup": "Markup",
|
|
2551
|
+
"value_max": "Maximum",
|
|
2552
|
+
"value_min": "Minimum",
|
|
2553
|
+
"value_none": "No",
|
|
2554
|
+
"value_parameter": "Parameters",
|
|
2555
|
+
"value_string": "String",
|
|
2556
|
+
"value_sum": "Sum",
|
|
2557
|
+
"value_tree_float": "Tree of fractional numbers",
|
|
2558
|
+
"value_tree_int": "Tree of integers",
|
|
2559
|
+
"value_tree_str": "Tree of strings",
|
|
2560
|
+
"value_unsupported": "Unsupported type"
|
|
2561
|
+
},
|
|
2562
|
+
"dataset.field-settings-dialog.modify": {
|
|
2563
|
+
"button_cancel": "Cancel",
|
|
2564
|
+
"button_colors": "Set colors",
|
|
2565
|
+
"button_reset": "Reset",
|
|
2566
|
+
"button_save": "Save",
|
|
2567
|
+
"label_colors": "Colors",
|
|
2568
|
+
"label_field-other-colors": [
|
|
2569
|
+
"{{count}} more color",
|
|
2570
|
+
"{{count}} more colors",
|
|
2571
|
+
"{{count}} more colors"
|
|
2572
|
+
],
|
|
2573
|
+
"label_title": "Display settings"
|
|
2574
|
+
},
|
|
2575
|
+
"dataset.filters-tab.modify": {
|
|
2576
|
+
"label_filter-list-field-th": "Field",
|
|
2577
|
+
"label_filter-list-value-th": "Value",
|
|
2578
|
+
"label_obligatory-filter-add": "Add",
|
|
2579
|
+
"label_obligatory-filter-description": "The values will be applied to all new charts created using the dataset. This will reduce the chart rendering time when working with large amounts of data.<br></br>The default filters for new charts do not affect the display in the dataset preview.",
|
|
2580
|
+
"label_obligatory-filter-title": "Default filters for new charts"
|
|
2581
|
+
},
|
|
2582
|
+
"dataset.notifications.view": {
|
|
2583
|
+
"toast_create-dataset-msgs-failure": "Error: failed to create dataset",
|
|
2584
|
+
"toast_create-dataset-msgs-success": "Dataset created",
|
|
2585
|
+
"toast_dataset-fetch-preview-msgs-failure": "Error: failed to upload data for preview",
|
|
2586
|
+
"toast_dataset-save-msgs-failure": "Error: failed to save dataset",
|
|
2587
|
+
"toast_dataset-save-msgs-success": "Dataset saved",
|
|
2588
|
+
"toast_dataset-validation-msgs-failure": "Error: failed to validate dataset",
|
|
2589
|
+
"toast_default-error": "Error",
|
|
2590
|
+
"toast_error-action-label": "Learn more",
|
|
2591
|
+
"toast_fetch-types-msgs-failure": "Error: failed to load data types",
|
|
2592
|
+
"toast_field-duplicated-msgs-success": "Field duplicated",
|
|
2593
|
+
"toast_field-remove-msgs-success": "Field deleted",
|
|
2594
|
+
"toast_preview-not-supported": "Preview is not available for this type of source",
|
|
2595
|
+
"toast_replace-connection-failure": "Error: failed to replace connection",
|
|
2596
|
+
"toast_select-connection-failure": "Error: failed to add connection"
|
|
2597
|
+
},
|
|
2598
|
+
"dataset.parameters-tab.modify": {
|
|
2599
|
+
"label_parameter-name-column": "Name",
|
|
2600
|
+
"label_parameter-name-column-description": "Parameter name restrictions: \n* Lowercase Latin letters, digits, hyphens, and underscores are acceptable. The first character can't be an underscore: `_name`. \n* Parameter name is case-sensitive: `Test` and `test` are different parameters. \n* Parameter name length should not exceed 36 characters. \n* Reserved parameter names that cannot be used: `tab`, `state`, `mode`, `focus`, `grid`, `tz`, `from`, `to`.",
|
|
2601
|
+
"label_parameter-type-column": "Type",
|
|
2602
|
+
"label_parameter-validation-column": "Use in source setup",
|
|
2603
|
+
"label_parameter-value-column": "Default Value",
|
|
2604
|
+
"label_parameter-value-column-description": "The default value is required. It is used in cases when the parameter value is not defined on the dashboard, in the chart URL, or in the chart settings.",
|
|
2605
|
+
"tab-parameters_add-button": "Add",
|
|
2606
|
+
"tab-parameters_description": "A parameter is a dataset or chart variable that can replace constant values in calculated fields. The parameter can be a number, string, date, or boolean. Dataset parameters are available in all charts based on this dataset. A default parameter value can be overridden at the chart level.",
|
|
2607
|
+
"tab-parameters_title": "Parameters"
|
|
2608
|
+
},
|
|
2609
|
+
"dataset.rls.modify": {
|
|
2610
|
+
"button_cancel": "Cancel",
|
|
2611
|
+
"button_save": "Save",
|
|
2612
|
+
"field_placeholder-row-level-security": "Entry format: 'Field value': login1, login2, etc.",
|
|
2613
|
+
"label_row-level-security": "Field permission settings"
|
|
2614
|
+
},
|
|
2615
|
+
"dataset.sources-tab.modify": {
|
|
2616
|
+
"button_add-condition": "Add link",
|
|
2617
|
+
"button_add-connection": "Add",
|
|
2618
|
+
"button_add-source": "Add",
|
|
2619
|
+
"button_apply": "Apply",
|
|
2620
|
+
"button_cancel": "Cancel",
|
|
2621
|
+
"button_create": "Create",
|
|
2622
|
+
"button_create-param": "Create parameter",
|
|
2623
|
+
"button_details": "Learn more",
|
|
2624
|
+
"button_insert-param": "Paste parameter",
|
|
2625
|
+
"button_retry": "Retry",
|
|
2626
|
+
"field_placeholder-title": "Name",
|
|
2627
|
+
"hint_optimize-join": "Disabling optimization makes the link mandatory and may increase query execution time.",
|
|
2628
|
+
"label_chydb-database-example": "/ru/home/user/mydb",
|
|
2629
|
+
"label_chydb-table-example": "/ru/home/user/mydb/test_table",
|
|
2630
|
+
"label_chydb-table-path": "Path to table in YDB",
|
|
2631
|
+
"label_cluster": "Cluster",
|
|
2632
|
+
"label_data-source-error-db-request": "Sent query:",
|
|
2633
|
+
"label_data-source-error-db-response": "Database response:",
|
|
2634
|
+
"label_db-name": "Database name",
|
|
2635
|
+
"label_deleted-connection": "Deleted connection",
|
|
2636
|
+
"label_menu-popup-delete-connection": "Delete connection",
|
|
2637
|
+
"label_menu-popup-delete-source": "Delete table",
|
|
2638
|
+
"label_menu-popup-modify-source": "Modify settings",
|
|
2639
|
+
"label_menu-popup-open-connection": "Open connection",
|
|
2640
|
+
"label_menu-popup-replace-connection": "Replace connection",
|
|
2641
|
+
"label_optimize-join": "Optimize link",
|
|
2642
|
+
"label_param-select-empty-placeholder-description": "Use parameters to make dynamic queries to a data source",
|
|
2643
|
+
"label_param-select-empty-placeholder-title": "Create your first parameter",
|
|
2644
|
+
"label_param-select-option-disabled": "The use of the parameter is prohibited in its settings. If necessary, activate the \"Allow use in source configuration\" option.",
|
|
2645
|
+
"label_param-select-option-edit": "Edit",
|
|
2646
|
+
"label_source-editor-header": "Source",
|
|
2647
|
+
"label_source-relation": "Link",
|
|
2648
|
+
"label_sources": "Connections",
|
|
2649
|
+
"label_sources-loading-error": "Failed to load tables list",
|
|
2650
|
+
"label_sources-map-placeholder": "Drag and drop tables to create links",
|
|
2651
|
+
"label_subselect-form-comment": "-- Write your request",
|
|
2652
|
+
"label_subselect-form-tooltip-chyt": "• When copying from YQL, don't forget to remove <code>use ...</code> at the beginning and <code>;</code> at the end.",
|
|
2653
|
+
"label_subselect-form-tooltip-common": "• The entered query works in the <code>select *from (<input>) as source</code> construction.",
|
|
2654
|
+
"label_subselect-form-tooltip-mssql": "• Microsoft SQL can define date/datetime types as a string in a subquery schema. In this case, explicitly specify the type in the dataset fields.",
|
|
2655
|
+
"label_subselect-form-tooltip-pg": "• PostgreSQL can define some constants as null (example: <code>select 'a'</code>). In this case, explicitly specify the CAST (example: <code>select 'a'::text</code>).",
|
|
2656
|
+
"label_tables": "Tables",
|
|
2657
|
+
"label_title": "Source name",
|
|
2658
|
+
"label_tooltip-choveryt-path-restriction": "You can enter the full URL or path to the table. CHYT connections only support schematized static tables.",
|
|
2659
|
+
"label_yc-chyt-subselect-subsql": "When copying from queries, don't forget to remove <code>use ...</code> at the beginning and <code>;</code> at the end.",
|
|
2660
|
+
"label_yc-chyt-table-list-title-body": "The table concatenation function for multiple tables is used:",
|
|
2661
|
+
"label_yc-chyt-table-name-body": "Enter the path to the table. CHYT connections only support schematized tables.",
|
|
2662
|
+
"label_yc-chyt-table-range-title-body": "The table concatenation function for all tables along the path is used:",
|
|
2663
|
+
"label_yt-function-tables": "The table concatenation function for multiple tables is used:",
|
|
2664
|
+
"label_yt-function-tables-example": "concatYtTables(table1, [table2, [...]])",
|
|
2665
|
+
"label_yt-function-tables-range": "The table concatenation function for all tables along the path is used:",
|
|
2666
|
+
"label_yt-function-tables-range-example": "concatYtTablesRange(cypressPath, [from, [to]])",
|
|
2667
|
+
"label_yt-subsql-example": "select * from \"//home/arivkin/choyt/demo/concat_test/1\"",
|
|
2668
|
+
"label_yt-table-example": "Example:",
|
|
2669
|
+
"label_yt-table-example-directory-path": "//home/arivkin/choyt/demo/concat_test",
|
|
2670
|
+
"label_yt-table-example-path": "//home/arivkin/choyt/demo/concat_test/1",
|
|
2671
|
+
"label_yt-table-example-paths": "//home/arivkin/choyt/demo/concat_test/1 //home/arivkin/choyt/demo/concat_test/2",
|
|
2672
|
+
"value_binary-join-operator-eq": "=",
|
|
2673
|
+
"value_binary-join-operator-gt": ">",
|
|
2674
|
+
"value_binary-join-operator-gte": ">=",
|
|
2675
|
+
"value_binary-join-operator-lt": "<",
|
|
2676
|
+
"value_binary-join-operator-lte": "<=",
|
|
2677
|
+
"value_binary-join-operator-ne": "<>"
|
|
2678
|
+
},
|
|
2679
|
+
"dataset.validation": {
|
|
2680
|
+
"label_duplicated_paths_error": "There are the same paths in list",
|
|
2681
|
+
"label_duplicated_titles_error": "There is already a source with this name on the list. To avoid repetition, change the name of the added source.",
|
|
2682
|
+
"label_required-field-error": "This is a required field"
|
|
2683
|
+
},
|
|
2684
|
+
"dl-dialog-settings": {
|
|
2685
|
+
"button_apply": "Apply",
|
|
2686
|
+
"button_cancel": "Cancel",
|
|
2687
|
+
"label_chart-settings": "Chart settings",
|
|
2688
|
+
"label_header": "Header",
|
|
2689
|
+
"label_hide": "Hide",
|
|
2690
|
+
"label_show": "Show"
|
|
2691
|
+
},
|
|
2692
|
+
"editor.button-save.view": {
|
|
2693
|
+
"button_save": "Save",
|
|
2694
|
+
"button_save-as": "Save as copy",
|
|
2695
|
+
"button_save-as-draft": "Save as draft",
|
|
2696
|
+
"button_save-as-published": "Save and make actual",
|
|
2697
|
+
"button_saved": "Saved",
|
|
2698
|
+
"label_widget-name-copy": "{{name}} — copy",
|
|
2699
|
+
"toast_warning-not-latest-version": "You are not using the latest chart version. Apply changes?"
|
|
2700
|
+
},
|
|
2701
|
+
"editor.common.view": {
|
|
2702
|
+
"button_retry": "Repeat",
|
|
2703
|
+
"button_secrets": "Add secret",
|
|
2704
|
+
"button_show-preview": "Execute",
|
|
2705
|
+
"label_load-failed": "Failed to load",
|
|
2706
|
+
"label_new-chart": "New chart",
|
|
2707
|
+
"section_choose-template": "Select template",
|
|
2708
|
+
"toast_unsaved": "There are unsaved changes on the page. Are you sure?"
|
|
2709
|
+
},
|
|
2710
|
+
"editor.dialog-confirm-warning.view": {
|
|
2711
|
+
"button_apply": "Apply",
|
|
2712
|
+
"button_cancel": "Cancel"
|
|
2713
|
+
},
|
|
2714
|
+
"editor.dialog-no-edit-rights.view": {
|
|
2715
|
+
"button_access-rights": "Request permissions",
|
|
2716
|
+
"button_save-as": "Save as copy",
|
|
2717
|
+
"label_no-rights-text": "This chart is read-only. Request write permissions or save changes as a new chart",
|
|
2718
|
+
"section_no-rights-title": "No write permissions"
|
|
2719
|
+
},
|
|
2720
|
+
"editor.docs.view": {
|
|
2721
|
+
"label_any-questions": "Any more questions?",
|
|
2722
|
+
"label_full-docs": "Full documentation is available <link>here</link>.",
|
|
2723
|
+
"label_no-module-docs": "Documentation for this module is missing",
|
|
2724
|
+
"section_common-information": "General information",
|
|
2725
|
+
"section_modules": "Modules"
|
|
2726
|
+
},
|
|
2727
|
+
"editor.editor-page-error.view": {
|
|
2728
|
+
"button_retry": "Repeat",
|
|
2729
|
+
"label_error-404-title": "Chart not found",
|
|
2730
|
+
"label_error-500-title": "Failed to load chart"
|
|
2731
|
+
},
|
|
2732
|
+
"editor.fetch.view": {
|
|
2733
|
+
"button_repeat": "Repeat",
|
|
2734
|
+
"label_loading-error": "Failed to load"
|
|
2735
|
+
},
|
|
2736
|
+
"editor.grid-scheme-select.view": {
|
|
2737
|
+
"value_count-panes": [
|
|
2738
|
+
"{{count}} Pane",
|
|
2739
|
+
"{{count}} Panes",
|
|
2740
|
+
"{{count}} Panes",
|
|
2741
|
+
"Zero panes"
|
|
2742
|
+
]
|
|
2743
|
+
},
|
|
2744
|
+
"exports.enable-data-export-settings": {
|
|
2745
|
+
"label_data-export-info": "When the option is disabled, the export data button will be hidden from charts. At the same time, it will be possible to extract data from charts, as well as take screenshots.",
|
|
2746
|
+
"label_enable-data-export": "Enable data export"
|
|
2747
|
+
},
|
|
2748
|
+
"main.service-settings.view": {
|
|
2749
|
+
"label_custom-palettes-section-desc": " ",
|
|
2750
|
+
"label_custom-palettes-section-header": " ",
|
|
2751
|
+
"label_header": "Service settings",
|
|
2752
|
+
"section_color-palettes": "Palettes"
|
|
2753
|
+
},
|
|
2754
|
+
"new-workbooks": {
|
|
2755
|
+
"action_access": "Access",
|
|
2756
|
+
"action_cancel": "Cancel",
|
|
2757
|
+
"action_copy": "Copy",
|
|
2758
|
+
"action_create": "Create",
|
|
2759
|
+
"action_create-chart": "Create chart",
|
|
2760
|
+
"action_create-connection": "Create connection",
|
|
2761
|
+
"action_create-dashboard": "Create dashboard",
|
|
2762
|
+
"action_create-dataset": "Create dataset",
|
|
2763
|
+
"action_create-report": "Create report",
|
|
2764
|
+
"action_delete": "Delete",
|
|
2765
|
+
"action_duplicate": "Duplicate",
|
|
2766
|
+
"action_edit": "Edit",
|
|
2767
|
+
"action_export": "Export",
|
|
2768
|
+
"action_move": "Move",
|
|
2769
|
+
"action_rename": "Rename",
|
|
2770
|
+
"action_retry": "Retry",
|
|
2771
|
+
"action_show-more": "Show more",
|
|
2772
|
+
"button_apply": "Apply",
|
|
2773
|
+
"button_cancel": "Cancel",
|
|
2774
|
+
"button_import-alert-close": "OK",
|
|
2775
|
+
"button_import-alert-documentation": "Documentation",
|
|
2776
|
+
"button_workbook-table-load-more": "Load more",
|
|
2777
|
+
"button_workbook-table-retry": "Reload page",
|
|
2778
|
+
"label_author": "Author",
|
|
2779
|
+
"label_copy": "copy",
|
|
2780
|
+
"label_delete-entry": "Delete",
|
|
2781
|
+
"label_empty-mobile-workbook": "There are no viewable objects in this workbook yet",
|
|
2782
|
+
"label_entry-name-already-exists": "That name is already in use, try another one",
|
|
2783
|
+
"label_error-load-entities": "Unable to load entities",
|
|
2784
|
+
"label_import-alert-title": "The workbook is almost ready",
|
|
2785
|
+
"label_last-modified": "Last modified",
|
|
2786
|
+
"label_no-data": "Empty",
|
|
2787
|
+
"label_placeholder": "Name",
|
|
2788
|
+
"label_rename-entry": "Rename",
|
|
2789
|
+
"label_title": "Name",
|
|
2790
|
+
"menu_connection": "Connection",
|
|
2791
|
+
"menu_dashboard": "Dashboard",
|
|
2792
|
+
"menu_dataset": "Dataset",
|
|
2793
|
+
"menu_editor-chart": "Editor chart",
|
|
2794
|
+
"menu_ql-chart": "QL Chart",
|
|
2795
|
+
"menu_report": "Report",
|
|
2796
|
+
"menu_wizard-chart": "Wizard chart",
|
|
2797
|
+
"no_objects": "Empty",
|
|
2798
|
+
"section_delete-entry": "Are you sure you want to delete \"{{entryName}}\"?",
|
|
2799
|
+
"title_charts": "Charts",
|
|
2800
|
+
"title_connections": "Connections",
|
|
2801
|
+
"title_dashboards": "Dashboards",
|
|
2802
|
+
"title_datasets": "Datasets",
|
|
2803
|
+
"title_reports": "Reports",
|
|
2804
|
+
"toast_duplicate-failed": "An error occurred while duplicating"
|
|
2805
|
+
},
|
|
2806
|
+
"new-workbooks.empty-table": {
|
|
2807
|
+
"button_clear-filters": "Reset filters",
|
|
2808
|
+
"label_empty-scope-all-description": "Start by creating a connection to a data source, then describe the dataset, create a chart, and assemble a dashboard!",
|
|
2809
|
+
"label_not-found-description": "Try adding other conditions to filters",
|
|
2810
|
+
"section_empty-scope-all": "There are no objects in this workbook yet",
|
|
2811
|
+
"section_empty-scope-connection": "There are no connections in this workbook yet",
|
|
2812
|
+
"section_empty-scope-dashboard": "There are no dashboards in this workbook yet",
|
|
2813
|
+
"section_empty-scope-dataset": "There are no datasets in this workbook yet",
|
|
2814
|
+
"section_empty-scope-report": "There are no reports in this workbook yet",
|
|
2815
|
+
"section_empty-scope-widget": "There are no charts in this workbook yet",
|
|
2816
|
+
"section_not-found": "Nothing found"
|
|
2817
|
+
},
|
|
2818
|
+
"new-workbooks.table-filters": {
|
|
2819
|
+
"label_filter-string-placeholder": "Search by name",
|
|
2820
|
+
"label_sort-first-alphabet-asc": "Sort A to Z",
|
|
2821
|
+
"label_sort-first-alphabet-desc": "Sort Z to A",
|
|
2822
|
+
"label_sort-first-new": "Newest first",
|
|
2823
|
+
"label_sort-first-old": "Oldest first",
|
|
2824
|
+
"switch_filter-by-scope-all": "All objects",
|
|
2825
|
+
"switch_filter-by-scope-connection": "Connections",
|
|
2826
|
+
"switch_filter-by-scope-dash": "Dashboards",
|
|
2827
|
+
"switch_filter-by-scope-dataset": "Datasets",
|
|
2828
|
+
"switch_filter-by-scope-widget": "Charts"
|
|
2829
|
+
},
|
|
2830
|
+
"preview": {
|
|
2831
|
+
"label_not-found": "Not found"
|
|
2832
|
+
},
|
|
2833
|
+
"public.dash.error": {
|
|
2834
|
+
"button_retry": "Retry"
|
|
2835
|
+
},
|
|
2836
|
+
"public.dash.footer": {
|
|
2837
|
+
"label_info": "Constructed in {{productName}}"
|
|
2838
|
+
},
|
|
2839
|
+
"revisions.dialog-confirm": {
|
|
2840
|
+
"button_cancel": "Cancel",
|
|
2841
|
+
"button_confirm": "Yes, make actual",
|
|
2842
|
+
"label_text": "A copy of the version you are currently viewing will be created. But you can always return to previous versions.",
|
|
2843
|
+
"label_text-unsaved-lost": "All unsaved changed will be lost.",
|
|
2844
|
+
"label_title": "Make actual?"
|
|
2845
|
+
},
|
|
2846
|
+
"service-settings.create-user.view": {
|
|
2847
|
+
"button_cancel": "Cancel",
|
|
2848
|
+
"button_create": "Add",
|
|
2849
|
+
"label_success-user-creation": "User added successfully",
|
|
2850
|
+
"title_create-user": "Creating a user"
|
|
2851
|
+
},
|
|
2852
|
+
"service-settings.main.view": {
|
|
2853
|
+
"label_header": "Service settings",
|
|
2854
|
+
"section_color-palettes": "Palettes",
|
|
2855
|
+
"section_general": "General",
|
|
2856
|
+
"section_users": "Users"
|
|
2857
|
+
},
|
|
2858
|
+
"service-settings.users-list.view": {
|
|
2859
|
+
"button_add-user": "Add user",
|
|
2860
|
+
"button_load-more": "Load more",
|
|
2861
|
+
"label_field-email": "Email",
|
|
2862
|
+
"label_field-first-name": "Name",
|
|
2863
|
+
"label_field-id": "ID",
|
|
2864
|
+
"label_field-last-name": "Surname",
|
|
2865
|
+
"label_field-login": "Username",
|
|
2866
|
+
"label_field-roles": "Role",
|
|
2867
|
+
"label_menu-change-password": "Change password",
|
|
2868
|
+
"label_menu-change-role": "Assign role",
|
|
2869
|
+
"label_menu-delete": "Delete user",
|
|
2870
|
+
"label_menu-edit-profile": "Edit profile",
|
|
2871
|
+
"label_search-placeholder": "Search",
|
|
2872
|
+
"label_users-empty-message": "Users not found"
|
|
2873
|
+
},
|
|
2874
|
+
"sql": {
|
|
2875
|
+
"button_add-param": "Add param",
|
|
2876
|
+
"button_add-param-value": "Add param value",
|
|
2877
|
+
"button_change-connection": "Change connection",
|
|
2878
|
+
"button_chart-settings": "Chart settings",
|
|
2879
|
+
"button_open-in-monitoring": "Open in Monitoring",
|
|
2880
|
+
"button_save": "Save",
|
|
2881
|
+
"button_save-as": "Save as",
|
|
2882
|
+
"button_save-as-draft": "Save as draft",
|
|
2883
|
+
"button_save-as-new": "Save as new chart",
|
|
2884
|
+
"button_save-as-published": "Save and make actual",
|
|
2885
|
+
"button_to-connection": "Go to connection",
|
|
2886
|
+
"error_failed-to-load-chart": "Failed to load chart",
|
|
2887
|
+
"error_failed-to-load-connection": "Failed to load connection",
|
|
2888
|
+
"error_failed-to-load-default-connection": "Failed to load default connection for Monitoring",
|
|
2889
|
+
"error_failed-to-parse-loaded-chart": "Failed to process loaded chart: shared data is invalid",
|
|
2890
|
+
"error_failed-to-save-chart": "Failed to save chart",
|
|
2891
|
+
"error_select-connection": "Connection must be selected",
|
|
2892
|
+
"hint_available-warning": "Unused columns may distort estimated visualization",
|
|
2893
|
+
"label_add-query": "Add query",
|
|
2894
|
+
"label_applied": "Applied: ",
|
|
2895
|
+
"label_chart-type": "Chart type",
|
|
2896
|
+
"label_connection": "Connection",
|
|
2897
|
+
"label_copy-as-text": "Copy as text",
|
|
2898
|
+
"label_create": "Create",
|
|
2899
|
+
"label_create-ql-chart": "Create QL chart",
|
|
2900
|
+
"label_delete": "Delete",
|
|
2901
|
+
"label_delete-param": "Delete param",
|
|
2902
|
+
"label_delete-param-value": "Delete param value",
|
|
2903
|
+
"label_duplicate": "Duplicate",
|
|
2904
|
+
"label_empty-chart": "The visualization will appear here as soon as you write the SQL query and press Run in the bottom-left corner",
|
|
2905
|
+
"label_failed-connection-text": "Failed to load connection",
|
|
2906
|
+
"label_new-chart-type-text": "Select chart type to start:",
|
|
2907
|
+
"label_new-connection-text": "To start, select a connection",
|
|
2908
|
+
"label_params": "Params",
|
|
2909
|
+
"label_placeholder-default-value": "Default value",
|
|
2910
|
+
"label_placeholder-name": "Name",
|
|
2911
|
+
"label_ql-auto-execution-chart": "Automatically apply changes",
|
|
2912
|
+
"label_ql-info": "Chart info",
|
|
2913
|
+
"label_query": "Query",
|
|
2914
|
+
"label_run": "Run",
|
|
2915
|
+
"label_select-connection": "Select",
|
|
2916
|
+
"label_select-visualization": "Select visualization",
|
|
2917
|
+
"label_visualization-area": "Area chart",
|
|
2918
|
+
"label_visualization-area-100p": "Normalized stacked area chart\n",
|
|
2919
|
+
"label_visualization-bar": "Bar chart",
|
|
2920
|
+
"label_visualization-bar-100p": "Normalized bar chart",
|
|
2921
|
+
"label_visualization-column": "Column chart",
|
|
2922
|
+
"label_visualization-column-100p": "Normalized column chart",
|
|
2923
|
+
"label_visualization-donut": "Donut chart",
|
|
2924
|
+
"label_visualization-flat-table": "Table",
|
|
2925
|
+
"label_visualization-line": "Line chart",
|
|
2926
|
+
"label_visualization-metric": "Indicator",
|
|
2927
|
+
"label_visualization-pie": "Pie chart",
|
|
2928
|
+
"label_visualization-scatter": "Scatter chart",
|
|
2929
|
+
"label_visualization-treemap": "Tree chart",
|
|
2930
|
+
"text_default-name": "New QL-сhart"
|
|
2931
|
+
},
|
|
2932
|
+
"validation": {
|
|
2933
|
+
"label_unknown-error": "Unknown error",
|
|
2934
|
+
"label_validation-slash_error": "Name cannot contain a slash “/”"
|
|
2935
|
+
},
|
|
2936
|
+
"wizard": {
|
|
2937
|
+
"add_field_item": "Field",
|
|
2938
|
+
"add_hierarchy_item": "Hierarchy",
|
|
2939
|
+
"add_parameter_item": "Parameter",
|
|
2940
|
+
"button_access-rights": "Request permissions",
|
|
2941
|
+
"button_add-dataset": "Add dataset",
|
|
2942
|
+
"button_apply": "Apply",
|
|
2943
|
+
"button_apply-filter": "Apply filter",
|
|
2944
|
+
"button_cancel": "Cancel",
|
|
2945
|
+
"button_choose-dataset": "Select dataset",
|
|
2946
|
+
"button_choose-visualization": "Select chart type",
|
|
2947
|
+
"button_clear": "Clear",
|
|
2948
|
+
"button_copy-link": "Copy link",
|
|
2949
|
+
"button_datasets-settings": "Dataset settings",
|
|
2950
|
+
"button_discard": "Discard",
|
|
2951
|
+
"button_duplicate": "Duplicate",
|
|
2952
|
+
"button_edit": "Edit",
|
|
2953
|
+
"button_edit-built-in": "Edit",
|
|
2954
|
+
"button_remove": "Delete",
|
|
2955
|
+
"button_remove-dataset": "Delete dataset",
|
|
2956
|
+
"button_replace-dataset": "Replace dataset",
|
|
2957
|
+
"button_reset": "Reset",
|
|
2958
|
+
"button_retry": "Repeat",
|
|
2959
|
+
"button_save": "Save",
|
|
2960
|
+
"button_save-and-publish": "Save and make actual",
|
|
2961
|
+
"button_save-as": "Save as",
|
|
2962
|
+
"button_save-as-draft": "Save as draft",
|
|
2963
|
+
"button_save-as-editor-script": "Save as Editor script",
|
|
2964
|
+
"button_save-as-new": "Save as new chart",
|
|
2965
|
+
"button_saved": "Saved",
|
|
2966
|
+
"button_select": "Select",
|
|
2967
|
+
"button_select-all": "Select all",
|
|
2968
|
+
"button_to-dataset": "Go to dataset",
|
|
2969
|
+
"button_toggle-fullscreen": "Full screen",
|
|
2970
|
+
"button_turn-into-formula": "Convert to formula",
|
|
2971
|
+
"confirm_chart-save_message": "To export data, save the changes to the chart.",
|
|
2972
|
+
"confirm_chart-save_message_alerts": "To set up alerts, first save the changes to the chart.",
|
|
2973
|
+
"dataset-selector_label": "Dataset:",
|
|
2974
|
+
"field_search": "Search by name or description",
|
|
2975
|
+
"label_2-point": "2 point",
|
|
2976
|
+
"label_3-point": "3 point",
|
|
2977
|
+
"label_absolute": "Absolute",
|
|
2978
|
+
"label_absolute-date": "Choose from calendar",
|
|
2979
|
+
"label_add-link": "Add link",
|
|
2980
|
+
"label_add-value": "Add value",
|
|
2981
|
+
"label_aggregation": "Aggregation",
|
|
2982
|
+
"label_all-lines": "All lines",
|
|
2983
|
+
"label_angle": "Angle",
|
|
2984
|
+
"label_array_float": "Array of fractional numbers",
|
|
2985
|
+
"label_array_int": "Array of integers",
|
|
2986
|
+
"label_array_str": "Array of strings",
|
|
2987
|
+
"label_as-0": "Display as 0",
|
|
2988
|
+
"label_auto": "Auto",
|
|
2989
|
+
"label_autoscale": "Auto scale",
|
|
2990
|
+
"label_avg": "Average",
|
|
2991
|
+
"label_axis-format-by-field": "By the first field on the {{axisName}} axis",
|
|
2992
|
+
"label_axis-format-settings": "Axis format",
|
|
2993
|
+
"label_axis-hide-labels": "Labels",
|
|
2994
|
+
"label_axis-mode": "Display mode",
|
|
2995
|
+
"label_axis-mode-unavailable-forbidden": "Continuous mode is unavailable if the query contains ORDER BY",
|
|
2996
|
+
"label_axis-mode-unavailable-sort-measures": "Continuous mode is unavailable if the sort section contains measures",
|
|
2997
|
+
"label_axis-mode-unavailable-type": "Continuous mode is only available for \"Floating-point number\", \"Integer\", \"Date\", and \"Date and time\" types",
|
|
2998
|
+
"label_axis-title": "Axis title",
|
|
2999
|
+
"label_axis-title-manual-warning": "You are using a split, so the axis title can't be edited",
|
|
3000
|
+
"label_axis-type": "Axis type",
|
|
3001
|
+
"label_axis-visibility": "Axis on the chart",
|
|
3002
|
+
"label_background-color-field-selector": "By field",
|
|
3003
|
+
"label_background-settings": "Column fill color",
|
|
3004
|
+
"label_bars-align": "Align",
|
|
3005
|
+
"label_bars-align-info": "Align works only when all values in the column are positive or negative",
|
|
3006
|
+
"label_bars-align-left": "Left",
|
|
3007
|
+
"label_bars-align-right": "Right",
|
|
3008
|
+
"label_bars-color": "Color",
|
|
3009
|
+
"label_bars-custom-color-error": "Use HEX format",
|
|
3010
|
+
"label_bars-in-totals": "Show in totals",
|
|
3011
|
+
"label_bars-labels": "Show labels",
|
|
3012
|
+
"label_bars-negative-color": "Negative values",
|
|
3013
|
+
"label_bars-positive-color": "Positive values",
|
|
3014
|
+
"label_bars-scale": "Scale",
|
|
3015
|
+
"label_bars-switcher": "Linear indicator",
|
|
3016
|
+
"label_blue": "Blue (shades)",
|
|
3017
|
+
"label_blue-gray-red": "Blue-Gray-Red",
|
|
3018
|
+
"label_blue-yellow-red": "Blue-Yellow-Red",
|
|
3019
|
+
"label_boolean": "Logical",
|
|
3020
|
+
"label_borders": "Borders",
|
|
3021
|
+
"label_center": "Center",
|
|
3022
|
+
"label_chart-settings": "Chart settings",
|
|
3023
|
+
"label_chartkit-menu-open-in-new-tab": "Open in new tab",
|
|
3024
|
+
"label_choose-from-list": "Select a value from the list",
|
|
3025
|
+
"label_choose-lines": "Choose lines",
|
|
3026
|
+
"label_choose-visualization-type": "Chart type",
|
|
3027
|
+
"label_color": "Color",
|
|
3028
|
+
"label_color-mode": "Fill type",
|
|
3029
|
+
"label_colors-overflow": "The maximum number of colors is set",
|
|
3030
|
+
"label_colors-settings": "Color settings",
|
|
3031
|
+
"label_column-freeze": "Pinning",
|
|
3032
|
+
"label_column-freeze-tooltip": "Specify the number of pinned columns when scrolling horizontally",
|
|
3033
|
+
"label_column-width": "Width",
|
|
3034
|
+
"label_combined-chart-axis-format-by-field": "By the first field within layers",
|
|
3035
|
+
"label_connect": "Connect",
|
|
3036
|
+
"label_continuous": "Continuous",
|
|
3037
|
+
"label_count": "Count",
|
|
3038
|
+
"label_countunique": "Count distinct",
|
|
3039
|
+
"label_cyan": "Cyan (shades)",
|
|
3040
|
+
"label_d3-fallback": "Highcharts",
|
|
3041
|
+
"label_dataset-blank": "To get started, select a dataset",
|
|
3042
|
+
"label_datasets": "Datasets",
|
|
3043
|
+
"label_date": "Date",
|
|
3044
|
+
"label_date-format": "Format",
|
|
3045
|
+
"label_date-group": "Grouping",
|
|
3046
|
+
"label_date-group-preaggregated": "Grouping (before aggregation)",
|
|
3047
|
+
"label_date-mode": "Date mode",
|
|
3048
|
+
"label_datetimetz": "Date and time with timezone",
|
|
3049
|
+
"label_day": "Day",
|
|
3050
|
+
"label_dayofweek": "Day of week",
|
|
3051
|
+
"label_default": "Default",
|
|
3052
|
+
"label_default-period": "Default period",
|
|
3053
|
+
"label_delete-all-filters-action": "Delete all filters in section",
|
|
3054
|
+
"label_dialog-column-info-text": "The total width of the table always occupies 100% of the available space, regardless of the specified widths of the individual columns.",
|
|
3055
|
+
"label_dialog-radius": "Point size",
|
|
3056
|
+
"label_dialog-radius-max": "Maximal point size",
|
|
3057
|
+
"label_dialog-radius-min": "Minimal point size",
|
|
3058
|
+
"label_direction": "Direction",
|
|
3059
|
+
"label_disabled": "Disabled",
|
|
3060
|
+
"label_discrete": "Discrete",
|
|
3061
|
+
"label_enabled": "Enabled",
|
|
3062
|
+
"label_enter-manualy": "Enter value manually",
|
|
3063
|
+
"label_enter-number": "Number required",
|
|
3064
|
+
"label_error-connection-no-access-rights": "You don't have access to the connection",
|
|
3065
|
+
"label_error-dataset-no-access-rights": "You don't have access to the dataset or to it's connection",
|
|
3066
|
+
"label_error-dataset-not-found": "Dataset not found",
|
|
3067
|
+
"label_error-dataset-server-error": "Error: failed to fetch dataset",
|
|
3068
|
+
"label_error-dataset-unknown-error": "Error: failed to fetch dataset",
|
|
3069
|
+
"label_error-loading-filter-values": "Error: failed to load filter values",
|
|
3070
|
+
"label_error-remove-field": "Error: you can't delete a field used in the formula",
|
|
3071
|
+
"label_error-widget-no-access": "No access to chart",
|
|
3072
|
+
"label_error-widget-not-found": "Chart not found",
|
|
3073
|
+
"label_error-widget-save": "Error: failed to save chart",
|
|
3074
|
+
"label_error-widget-unknown-error": "An error occurred",
|
|
3075
|
+
"label_feed": "Comments feed",
|
|
3076
|
+
"label_field-has-wrong-type": "Invalid field type",
|
|
3077
|
+
"label_field-invalid": "Incorrect field",
|
|
3078
|
+
"label_field-more-than-one-hierarchy": "You can't apply more than one hierarchy",
|
|
3079
|
+
"label_field-name": "Field name",
|
|
3080
|
+
"label_field-not-exist": "Field not found in dataset",
|
|
3081
|
+
"label_field-not-exist-in-query": "Field not found in query",
|
|
3082
|
+
"label_field-title": "Field name",
|
|
3083
|
+
"label_fields-overflow": "The maximum number of fields is set",
|
|
3084
|
+
"label_fill-color-type": "Fill type",
|
|
3085
|
+
"label_filter-all-values": "All",
|
|
3086
|
+
"label_filter-from-dashboard": "filter from dashboard",
|
|
3087
|
+
"label_float": "Fractional number",
|
|
3088
|
+
"label_genericdatetime": "Date and time",
|
|
3089
|
+
"label_geopoint": "Geopoint",
|
|
3090
|
+
"label_geopolygon": "Geopolygon",
|
|
3091
|
+
"label_golden": "Golden",
|
|
3092
|
+
"label_gradient": "Gradient",
|
|
3093
|
+
"label_gradient-2": "Gradient 2",
|
|
3094
|
+
"label_gradient-3": "Gradient 3",
|
|
3095
|
+
"label_gradient-type": "Gradient type",
|
|
3096
|
+
"label_gray": "Gray (shades)",
|
|
3097
|
+
"label_green": "Green (shades)",
|
|
3098
|
+
"label_green-blue": "Green-Blue",
|
|
3099
|
+
"label_grid": "Grid",
|
|
3100
|
+
"label_grid-step": "Grid step",
|
|
3101
|
+
"label_groupping": "Grouping",
|
|
3102
|
+
"label_header": "Header",
|
|
3103
|
+
"label_hide": "Hide",
|
|
3104
|
+
"label_hint": "Hint",
|
|
3105
|
+
"label_holidays": "Holidays on the chart",
|
|
3106
|
+
"label_horizontal": "Horizontal",
|
|
3107
|
+
"label_hour": "Hour",
|
|
3108
|
+
"label_html": "HTML",
|
|
3109
|
+
"label_ignore": "Ignore",
|
|
3110
|
+
"label_integer": "Integer",
|
|
3111
|
+
"label_invalid-name": "The chart with the specified name already exists",
|
|
3112
|
+
"label_items-available": "Available",
|
|
3113
|
+
"label_items-selected": "Selected",
|
|
3114
|
+
"label_label-hide-mode": "Label",
|
|
3115
|
+
"label_label-mode": "Label value",
|
|
3116
|
+
"label_labels-overflow": "The maximum number of labels is set",
|
|
3117
|
+
"label_labels-position": "Label inside",
|
|
3118
|
+
"label_labels-view": "Labels view",
|
|
3119
|
+
"label_layer-remove-confirmation": "Remove layer?",
|
|
3120
|
+
"label_layer-settings": "Layer settings",
|
|
3121
|
+
"label_layers-overflow": "The maximum number of layers is set",
|
|
3122
|
+
"label_legend": "Legend",
|
|
3123
|
+
"label_limit": "Limit",
|
|
3124
|
+
"label_limit-input-error": "Enter a value from {{min}} to {{max}}",
|
|
3125
|
+
"label_limit-message": "Only first 1000 values shown",
|
|
3126
|
+
"label_linear": "Linear",
|
|
3127
|
+
"label_link-failed": "This dimension is not part of dataset links",
|
|
3128
|
+
"label_links": "Links",
|
|
3129
|
+
"label_links-between-sources": "Links between datasets",
|
|
3130
|
+
"label_logarithmic": "Logarithmic",
|
|
3131
|
+
"label_manual": "Manual",
|
|
3132
|
+
"label_markdown": "Markdown",
|
|
3133
|
+
"label_markup": "Markup",
|
|
3134
|
+
"label_markup-type": "Markup type",
|
|
3135
|
+
"label_markup-type-tooltip": "The field value will be formatted according to the selected markup language",
|
|
3136
|
+
"label_max": "Maximum",
|
|
3137
|
+
"label_message-link-copied": "Link copied",
|
|
3138
|
+
"label_min": "Minimum",
|
|
3139
|
+
"label_minute": "Minute",
|
|
3140
|
+
"label_month": "Month",
|
|
3141
|
+
"label_navigator": "Navigator",
|
|
3142
|
+
"label_new-layer": "Layer",
|
|
3143
|
+
"label_new-widget": "New chart",
|
|
3144
|
+
"label_no": "No",
|
|
3145
|
+
"label_no-colors-setup-for-hierarchy": "Colors setup for the hierarchy is not available",
|
|
3146
|
+
"label_no-colors-setup-for-string-measures": "Colors cannot be chosen for measures with string-type data",
|
|
3147
|
+
"label_no-links": "There are no links between datasets",
|
|
3148
|
+
"label_no-rights-text": "This chart is read-only. Request write permissions or save changes as a new chart",
|
|
3149
|
+
"label_no-rights-title": "No write permissions",
|
|
3150
|
+
"label_no-shapes-setup-for-hierarchy": "Shapes setup for the hierarchy is not available",
|
|
3151
|
+
"label_none": "No",
|
|
3152
|
+
"label_nulls": "Empty values (null)",
|
|
3153
|
+
"label_oceanic": "Oceanic",
|
|
3154
|
+
"label_off": "Off",
|
|
3155
|
+
"label_on": "On",
|
|
3156
|
+
"label_one-color": "One color",
|
|
3157
|
+
"label_orange-blue-green": "Orange-Blue-Green",
|
|
3158
|
+
"label_orange-gray-blue": "Orange-Gray-Blue",
|
|
3159
|
+
"label_orange-violet-blue": "Orange-Violet-Blue",
|
|
3160
|
+
"label_orange-yellow": "Orange-Yellow",
|
|
3161
|
+
"label_order-overflow": "The maximum number of orders is set",
|
|
3162
|
+
"label_original-title": "Dataset field name",
|
|
3163
|
+
"label_overlap": "Labels overlap",
|
|
3164
|
+
"label_overriden-from-dashboard": "overriden from dashboard",
|
|
3165
|
+
"label_pagination": "Pagination",
|
|
3166
|
+
"label_painting-as-0": "Paint as 0",
|
|
3167
|
+
"label_painting-ignore": "Do not paint",
|
|
3168
|
+
"label_palette": "Palette",
|
|
3169
|
+
"label_part": "Date part",
|
|
3170
|
+
"label_percent": "Percentage",
|
|
3171
|
+
"label_pink-gray-green": "Lilac-Gray-Green",
|
|
3172
|
+
"label_pivot-fallback": "Old pivot tables",
|
|
3173
|
+
"label_pivot-inline-sort": "Sort by lines",
|
|
3174
|
+
"label_pivot-measure-sort": "Sorting by indicator affects only the query to the source, but not the pivot table.",
|
|
3175
|
+
"label_pivot-table-title-dialog-column-settings": "Column and row settings",
|
|
3176
|
+
"label_pixels-shortname": "px",
|
|
3177
|
+
"label_polyline-points": "Polyline points",
|
|
3178
|
+
"label_preserve-whitespace": "Preserve spaces and line breaks",
|
|
3179
|
+
"label_preview-dataset-error": "Unable to display chart",
|
|
3180
|
+
"label_preview-dataset-stub": "Drag the dimensions and measures to the appropriate sections to build the visualization",
|
|
3181
|
+
"label_quarter": "Quarter",
|
|
3182
|
+
"label_red": "Red (shades)",
|
|
3183
|
+
"label_red-blue": "Red-Blue",
|
|
3184
|
+
"label_red-orange-green": "Red-Yellow-Green",
|
|
3185
|
+
"label_relative-date": "Set relative date",
|
|
3186
|
+
"label_relative-from": "Start, days ago",
|
|
3187
|
+
"label_relative-to": "End, days ago",
|
|
3188
|
+
"label_rename": "Rename",
|
|
3189
|
+
"label_reversed": "Reversed",
|
|
3190
|
+
"label_save-widget": "Save chart",
|
|
3191
|
+
"label_scale": "Scaling",
|
|
3192
|
+
"label_scale-0-max": "from 0 to max",
|
|
3193
|
+
"label_scale-min-max": "from min to max",
|
|
3194
|
+
"label_second": "Second",
|
|
3195
|
+
"label_segments-overflow": "The maximum number of splits is set",
|
|
3196
|
+
"label_settings": "Settings",
|
|
3197
|
+
"label_shapes-overflow": "The maximum number of shapes is set",
|
|
3198
|
+
"label_shapes-settings": "Shapes settings",
|
|
3199
|
+
"label_short-max": "max",
|
|
3200
|
+
"label_short-min": "min",
|
|
3201
|
+
"label_should-be-less-than-middle": "This value should be less than average",
|
|
3202
|
+
"label_should-be-less-than-right": "This value should be less than max",
|
|
3203
|
+
"label_show": "Show",
|
|
3204
|
+
"label_sort-overflow": "The maximum number of sorts is set",
|
|
3205
|
+
"label_stacking": "Stacking",
|
|
3206
|
+
"label_string": "String",
|
|
3207
|
+
"label_sub-totals-switcher": "Sub-totals",
|
|
3208
|
+
"label_sum": "Sum",
|
|
3209
|
+
"label_thresholds": "Set threshold values",
|
|
3210
|
+
"label_time-interval": "Time interval",
|
|
3211
|
+
"label_title": "Name",
|
|
3212
|
+
"label_title-dialog-column-settings": "Column settings",
|
|
3213
|
+
"label_tooltip": "Tooltip",
|
|
3214
|
+
"label_tooltip-sum": "Sum in tooltips",
|
|
3215
|
+
"label_tooltip-thresholds": "You can manually set threshold values, which will each correspond to a color.",
|
|
3216
|
+
"label_totals": "Totals",
|
|
3217
|
+
"label_traffic-light": "Traffic Light",
|
|
3218
|
+
"label_tree_float": "Tree of fractional numbers",
|
|
3219
|
+
"label_tree_int": "Tree of integers",
|
|
3220
|
+
"label_tree_str": "Tree of strings",
|
|
3221
|
+
"label_trunc": "Rounding",
|
|
3222
|
+
"label_two-color": "Two colors",
|
|
3223
|
+
"label_type": "Type",
|
|
3224
|
+
"label_type-preaggregated": "Type (before aggregation)",
|
|
3225
|
+
"label_use-previous": "Use previous",
|
|
3226
|
+
"label_value": "Value",
|
|
3227
|
+
"label_vertical": "Vertical",
|
|
3228
|
+
"label_violet": "Violet (shades)",
|
|
3229
|
+
"label_violet-blue-green": "Violet-Blue-Green",
|
|
3230
|
+
"label_violet-orange": "Lilac-Red",
|
|
3231
|
+
"label_visualization-area": "Area chart",
|
|
3232
|
+
"label_visualization-area-100p": "Normalized stacked area chart\n",
|
|
3233
|
+
"label_visualization-bar": "Bar chart",
|
|
3234
|
+
"label_visualization-bar-100p": "Normalized bar chart",
|
|
3235
|
+
"label_visualization-column": "Column chart",
|
|
3236
|
+
"label_visualization-column-100p": "Normalized column chart",
|
|
3237
|
+
"label_visualization-combined-chart": "Combined chart",
|
|
3238
|
+
"label_visualization-donut": "Donut chart",
|
|
3239
|
+
"label_visualization-flat-table": "Table",
|
|
3240
|
+
"label_visualization-geolayer": "Map",
|
|
3241
|
+
"label_visualization-geopoint": "Points",
|
|
3242
|
+
"label_visualization-geopoint-with-cluster": "Points with cluster",
|
|
3243
|
+
"label_visualization-geopolygon": "Polygons",
|
|
3244
|
+
"label_visualization-heatmap": "Heatmap",
|
|
3245
|
+
"label_visualization-line": "Line chart",
|
|
3246
|
+
"label_visualization-metric": "Indicator",
|
|
3247
|
+
"label_visualization-pie": "Pie chart",
|
|
3248
|
+
"label_visualization-pivot-table": "Pivot table",
|
|
3249
|
+
"label_visualization-polyline": "Polylines",
|
|
3250
|
+
"label_visualization-scatter": "Scatter chart",
|
|
3251
|
+
"label_visualization-treemap": "Tree chart",
|
|
3252
|
+
"label_visualization-types-all": "All",
|
|
3253
|
+
"label_visualization-types-column": "Bar",
|
|
3254
|
+
"label_visualization-types-line": "Charts",
|
|
3255
|
+
"label_visualization-types-pie": "Pie",
|
|
3256
|
+
"label_visualization-types-table": "Tables",
|
|
3257
|
+
"label_week": "Week",
|
|
3258
|
+
"label_widget-name-copy": "{{name}} - copy",
|
|
3259
|
+
"label_widget-size": "Size",
|
|
3260
|
+
"label_without-group": "Without grouping",
|
|
3261
|
+
"label_wizard-info": "Chart info",
|
|
3262
|
+
"label_year": "Year",
|
|
3263
|
+
"label_yellow": "Yellow (shades)",
|
|
3264
|
+
"label_yellow-green-blue": "Yellow-Green-Blue",
|
|
3265
|
+
"label_yes": "Yes",
|
|
3266
|
+
"label_zoom": "Zoom",
|
|
3267
|
+
"section_available": "Available",
|
|
3268
|
+
"section_categories": "Categories",
|
|
3269
|
+
"section_color": "Color",
|
|
3270
|
+
"section_colors": "Colors",
|
|
3271
|
+
"section_columns": "Columns",
|
|
3272
|
+
"section_common-filters": "Common filters",
|
|
3273
|
+
"section_dimensions": "Dimensions",
|
|
3274
|
+
"section_filters": "Chart filters",
|
|
3275
|
+
"section_filters_from_dashboard": "Dashboard filters",
|
|
3276
|
+
"section_geodata": "Geodata",
|
|
3277
|
+
"section_geopoint": "Geopoints",
|
|
3278
|
+
"section_geopolygon": "Geopolygons",
|
|
3279
|
+
"section_grouping": "Grouping",
|
|
3280
|
+
"section_hierarchy": "Hierarchy",
|
|
3281
|
+
"section_labels": "Labels",
|
|
3282
|
+
"section_layer-filters": "Layer filters",
|
|
3283
|
+
"section_measure": "Measure",
|
|
3284
|
+
"section_measures": "Measures",
|
|
3285
|
+
"section_obligatory-filters": "Obligatory filters",
|
|
3286
|
+
"section_order": "Order",
|
|
3287
|
+
"section_parameters": "Parameters",
|
|
3288
|
+
"section_parameters_from_dashboard": "Dashboard parameters",
|
|
3289
|
+
"section_points": "Points",
|
|
3290
|
+
"section_points_size": "Points size",
|
|
3291
|
+
"section_polyline": "Polyline",
|
|
3292
|
+
"section_rows": "Rows",
|
|
3293
|
+
"section_scatter": "Points",
|
|
3294
|
+
"section_segments": "Split",
|
|
3295
|
+
"section_shapes": "Shapes",
|
|
3296
|
+
"section_size": "Size",
|
|
3297
|
+
"section_sort": "Sorting",
|
|
3298
|
+
"section_tooltips": "Tooltips",
|
|
3299
|
+
"section_x": "X",
|
|
3300
|
+
"section_y": "Y",
|
|
3301
|
+
"section_y2": "Y2",
|
|
3302
|
+
"toast_confirm-remove-item": "Deletion cannot be undone. Are you sure?",
|
|
3303
|
+
"toast_error-action-details-label": "Learn more",
|
|
3304
|
+
"toast_get-publication-status-failed_error-action-details-label": "Learn more",
|
|
3305
|
+
"toast_unsaved": "There are unsaved changes on the page. Are you sure?",
|
|
3306
|
+
"toast_wizard-dataset-validation-failure": "Error: failed to validate dataset",
|
|
3307
|
+
"tooltip_backend-pivot_unavailable": "New pivot tables are not available for multidataset charts",
|
|
3308
|
+
"tooltip_dataset-fetch-failed": "Couldn't load dataset",
|
|
3309
|
+
"tooltip_dataset-fetch-failed-details-label": "Learn more",
|
|
3310
|
+
"tooltip_filter_item": "To apply a filter, remove the same field from the Filters from dashboard section.",
|
|
3311
|
+
"tooltip_filters_from_dashboard": "Filters from the dashboard applied to the chart. These filters will not be saved in the chart.",
|
|
3312
|
+
"tooltip_logarithmic-axis": "A scale with negative values or 0 cannot be logarithmic",
|
|
3313
|
+
"tooltip_no-available-fields": "No suitable fields to add",
|
|
3314
|
+
"tooltip_pagination_unavailable": "Pagination is not available for multidataset charts",
|
|
3315
|
+
"tooltip_parameter-changed-icon": "Parameter value changed",
|
|
3316
|
+
"tooltip_sort_unavailable": "Sorting is not available for multi-dataset charts",
|
|
3317
|
+
"tooltip_table-preview": "Data preview",
|
|
3318
|
+
"tooltip_tree-pagination_unavailable": "Pagination is not available in a tree table",
|
|
3319
|
+
"tooltip_tree-total_unavailable": "Total is not available in a tree table",
|
|
3320
|
+
"tooltip_zero-to-max-scale": "A logarithmic scale cannot contain values of 0 or negative values",
|
|
3321
|
+
"value_geotype-select-geopoint": "Points (Geopoints)",
|
|
3322
|
+
"value_geotype-select-geopoint-with-cluster": "Points with clusters (Geopoints)",
|
|
3323
|
+
"value_geotype-select-geopolygon": "Polygons (Geopolygons)",
|
|
3324
|
+
"value_geotype-select-heatmap": "Heatmap (Geopoints)",
|
|
3325
|
+
"value_geotype-select-polyline": "Polylines (Geopoints)"
|
|
3326
|
+
},
|
|
3327
|
+
"wizard.hierarchy-editor": {
|
|
3328
|
+
"button_cancel": "Cancel",
|
|
3329
|
+
"button_save": "Save",
|
|
3330
|
+
"caption": "Hierarchy settings",
|
|
3331
|
+
"field_already_exists": "A field with the specified name already exists.",
|
|
3332
|
+
"help_tooltip": "Editing the hierarchy. The order of the fields determines fields drill down.",
|
|
3333
|
+
"name-placeholder": "Name",
|
|
3334
|
+
"new_hierarchy": "New hierarchy",
|
|
3335
|
+
"selector_title": "Available"
|
|
3336
|
+
},
|
|
3337
|
+
"wizard.palette": {
|
|
3338
|
+
"label_classic20": "Classic 20",
|
|
3339
|
+
"label_datalens-neo-20": "Neo 20",
|
|
3340
|
+
"label_default20": "Default 20",
|
|
3341
|
+
"label_emerald20": "Emerald 20",
|
|
3342
|
+
"label_golden20": "Golden 20",
|
|
3343
|
+
"label_neutral20": "Neutral 20",
|
|
3344
|
+
"label_oceanic20": "Oceanic 20",
|
|
3345
|
+
"label_traffic-light9": "Traffic Light 9"
|
|
3346
|
+
},
|
|
3347
|
+
"wizard.prepares": {
|
|
3348
|
+
"label_color": "Color: {{value}}",
|
|
3349
|
+
"label_line": "Line: {{value}}",
|
|
3350
|
+
"label_new-layer": "Layer 1",
|
|
3351
|
+
"label_null-sorting-disabled-info": "Sorting for null values is not supported",
|
|
3352
|
+
"label_order": "Order: {{value}}",
|
|
3353
|
+
"label_point": "Point: {{value}}",
|
|
3354
|
+
"label_segment": "Segment: {{value}}",
|
|
3355
|
+
"label_total": "Total",
|
|
3356
|
+
"label_total-value": "Total: {{value}}"
|
|
3357
|
+
}
|
|
3358
|
+
};
|
|
3359
|
+
}));
|