import { type IAccessControlAware, type IDashboard, type IDashboardAttributeFilterConfig, type IDashboardDateFilterConfig, type IDashboardDateFilterConfigItem, type IDashboardDefinition, type IDashboardMeasureValueFilterConfig, type IDashboardTab, type IDashboardWidget, type IFilterContext, type IFilterContextDefinition, type ITempFilterContext, type IdentifierRef, type ObjRef, type ShareStatus, type UriRef } from "@gooddata/sdk-model"; import { type DashboardSelector, type DashboardState } from "../types.js"; import { type DashboardDescriptor } from "./metaState.js"; /** * Selects dashboard's descriptor. * * @internal */ export declare const selectDashboardDescriptor: DashboardSelector; /** * Selects persisted IDashboard object - that is the IDashboard object that was used to initialize the rest * of the dashboard state of the dashboard component during the initial load of the dashboard. * * Note that this may be undefined when the dashboard component works with a dashboard that has not yet * been persisted (typically newly created dashboard being edited). * * @internal */ export declare const selectPersistedDashboard: DashboardSelector; export declare const selectPersistedDashboardTabs: ((state: DashboardState) => IDashboardTab[]) & { clearCache: () => void; resultsCount: () => number; resetResultsCount: () => void; } & { resultFunc: (resultFuncArgs_0: import("./metaState.js").IDashboardMetaState) => IDashboardTab[]; memoizedResultFunc: ((resultFuncArgs_0: import("./metaState.js").IDashboardMetaState) => IDashboardTab[]) & { clearCache: () => void; resultsCount: () => number; resetResultsCount: () => void; }; lastResult: () => IDashboardTab[]; dependencies: [((state: DashboardState) => import("./metaState.js").IDashboardMetaState) & { clearCache: () => void; resultsCount: () => number; resetResultsCount: () => void; } & { resultFunc: (resultFuncArgs_0: DashboardState) => import("./metaState.js").IDashboardMetaState; memoizedResultFunc: ((resultFuncArgs_0: DashboardState) => import("./metaState.js").IDashboardMetaState) & { clearCache: () => void; resultsCount: () => number; resetResultsCount: () => void; }; lastResult: () => import("./metaState.js").IDashboardMetaState; dependencies: [(state: DashboardState) => DashboardState]; recomputations: () => number; resetRecomputations: () => void; dependencyRecomputations: () => number; resetDependencyRecomputations: () => void; } & { memoize: typeof import("@reduxjs/toolkit").weakMapMemoize; argsMemoize: typeof import("@reduxjs/toolkit").weakMapMemoize; }]; recomputations: () => number; resetRecomputations: () => void; dependencyRecomputations: () => number; resetDependencyRecomputations: () => void; } & { memoize: typeof import("@reduxjs/toolkit").weakMapMemoize; argsMemoize: typeof import("@reduxjs/toolkit").weakMapMemoize; }; /** * Returns raw persisted filter contexts keyed by tab identifier. * * @internal */ export declare const selectPersistedDashboardFilterContextsByTab: DashboardSelector>; /** * Returns persisted filter context definitions keyed by tab identifier. * * @internal */ export declare const selectPersistedDashboardFilterContextDefinitionsByTab: DashboardSelector>; /** * Returns persisted attribute filter configs keyed by tab identifier. * * @internal */ export declare const selectPersistedDashboardAttributeFilterConfigsByTab: DashboardSelector>; /** * Returns persisted date filter config overrides keyed by tab identifier. * * @internal */ export declare const selectPersistedDashboardDateFilterConfigByTab: DashboardSelector>; /** * Returns persisted date filter configs keyed by tab identifier. * * @internal */ export declare const selectPersistedDashboardDateFilterConfigsByTab: DashboardSelector>; /** * Returns persisted measure value filter configs keyed by tab identifier. * * @internal */ export declare const selectPersistedDashboardMeasureValueFilterConfigsByTab: DashboardSelector>; /** * Selects persisted filter context for the active tab (legacy selector). */ export declare const selectPersistedDashboardFilterContext: DashboardSelector; /** * Selects persisted date filter config for the active tab (legacy selector). * * @internal */ export declare const selectPersistedDashboardFilterContextDateFilterConfig: DashboardSelector; /** * Selects persisted filter context definition for the active tab (legacy selector). */ export declare const selectPersistedDashboardFilterContextAsFilterContextDefinition: DashboardSelector; /** * Selects ref of the persisted dashboard object that backs and is rendered-by the dashboard component. * * @remarks * Note that this may be undefined when the dashboard component works with a dashboard that has not yet * been persisted (typically newly created dashboard being edited). * * @public */ export declare const selectDashboardRef: DashboardSelector; /** * Selects identifier of the persisted dashboard object that backs and is rendered-by the dashboard component. * * @remarks * Note that this may be undefined when the dashboard component works with a dashboard that has not yet * been persisted (typically newly created dashboard being edited). * * @public */ export declare const selectDashboardId: DashboardSelector; /** * Selects URI of the persisted dashboard object that backs and is rendered-by the dashboard component. * * @remarks * Note that this may be undefined when the dashboard component works with a dashboard that has not yet * been persisted (typically newly created dashboard being edited). * * @public */ export declare const selectDashboardUri: DashboardSelector; /** * Selects idRef of the persisted dashboard object that backs and is rendered-by the dashboard component. * * @remarks * Note that this may be undefined when the dashboard component works with a dashboard that has not yet * been persisted (typically newly created dashboard being edited). * * @public */ export declare const selectDashboardIdRef: DashboardSelector; /** * Selects uriRef of the persisted dashboard object that backs and is rendered-by the dashboard component. * * @remarks * Note that this may be undefined when the dashboard component works with a dashboard that has not yet * been persisted (typically newly created dashboard being edited). * * @public */ export declare const selectDashboardUriRef: DashboardSelector; /** * Selects a boolean indication if dashboard is new * * @internal */ export declare const selectIsNewDashboard: DashboardSelector; /** * Selects a boolean indication if dashboard is dynamically filled, that mean that the dashboard is filled * with widgets and layout dynamically from initial content * * @internal */ export declare const selectIsNewDashboardWithContent: DashboardSelector; /** * Selects current dashboard title. * * @public */ export declare const selectDashboardTitle: DashboardSelector; /** * Selects current dashboard description. * * @public */ export declare const selectDashboardDescription: DashboardSelector; /** * Selects dashboard tags. * * @public */ export declare const selectDashboardTags: DashboardSelector; /** * Selects dashboard share status. * * @alpha */ export declare const selectDashboardShareStatus: DashboardSelector; /** * Returns whether dashboard is private. * * @alpha */ export declare const selectIsDashboardPrivate: DashboardSelector; /** * Selects dashboard lock status. * * @alpha */ export declare const selectDashboardLockStatus: DashboardSelector; /** * Selects complete dashboard share info. * * @alpha */ export declare const selectDashboardShareInfo: DashboardSelector; /** * Selects whether dashboard cross filtering is disabled. * * @public */ export declare const selectDisableDashboardCrossFiltering: DashboardSelector; /** * Selects whether dashboard persisted filters are disabled. * * @alpha */ export declare const selectDisableDashboardPersistentFiltersAcrossTabs: DashboardSelector; /** * Selects a boolean indication if the dashboard has any changes to the persistent filters across tabs compared to the persisted version (if any) * * @internal */ export declare const selectIsDisablePersistentFiltersAcrossTabsChanged: DashboardSelector; /** * Selects whether dashboard kda is disabled. * * @public */ export declare const selectDisableDashboardKda: DashboardSelector; /** * Selects whether user filter reset is disabled. * * @public */ export declare const selectDisableDashboardUserFilterReset: DashboardSelector; /** * Selects whether user filter save is disabled. * * @public */ export declare const selectDisableDashboardUserFilterSave: DashboardSelector; /** * Selects whether filter views are disabled. * * @public */ export declare const selectDisableFilterViews: DashboardSelector; /** * Selects evaluation frequency. * * @public */ export declare const selectEvaluationFrequency: DashboardSelector; /** * Selects a boolean indication if he dashboard has any changes to the dashboard filter compared to the persisted version (if any) * */ export declare const selectIsAttributeFilterConfigsChanged: DashboardSelector; /** * Selects the date dataset to use for filtering metrics in section header rich text. * * @alpha */ export declare const selectSectionHeadersDateDataSet: DashboardSelector; /** * Selects a boolean indication if the dashboard has any changes to the dashboard date filter configs compared to the persisted version (if any) * */ export declare const selectIsDateFilterConfigsChanged: DashboardSelector; /** * Selects a boolean indication if the dashboard has any changes to the measure value filter configs compared to the persisted version (if any) * */ export declare const selectIsMeasureValueFilterConfigsChanged: DashboardSelector; /** * Selects a boolean indication if the dashboard has any changes to the dashboard filter compared to the persisted version (if any) * * @internal */ export declare const selectIsDateFilterChanged: DashboardSelector; export declare const selectIsDateFilterConfigChanged: DashboardSelector; /** * Selects a boolean indication if the dashboard has any changes to the attribute filters compared to the persisted version (if any) * * @internal */ export declare const selectIsAttributeFiltersChanged: DashboardSelector; /** * Selects a boolean indication if the dashboard has any changes to the date filters with dimension compared to the persisted version (if any) * * @internal */ export declare const selectIsOtherFiltersChanged: DashboardSelector; /** * Selects a boolean indication if the dashboard has any changes to any of the filters compared to the persisted version (if any) * * @internal */ export declare const selectIsFiltersChanged: DashboardSelector; /** * Selects a boolean indication if the dashboard has any changes to the cross filtering compared to the persisted version (if any) * * @internal */ export declare const selectIsDisableCrossFilteringChanged: DashboardSelector; /** * Selects a boolean indication if the dashboard has any changes to the user filter reset compared to the persisted version (if any) * * @internal */ export declare const selectIsDisableUserFilterResetChanged: DashboardSelector; /** * Selects a boolean indication if the dashboard has any changes to the cross filtering compared to the persisted version (if any) * * @internal */ export declare const selectIsDisableUserFilterSaveChanged: DashboardSelector; /** * Selects a boolean indication if the dashboard has any changes to the filter views toggle compared to the persisted version (if any) * * @internal */ export declare const selectIsDisableFilterViewsChanged: DashboardSelector; /** * Selects a boolean indication if the dashboard has any changes to the evaluation frequency compared to the persisted version (if any) * * @internal */ export declare const selectEvaluationFrequencyChanged: DashboardSelector; /** * Selects a boolean indication if the dashboard has any changes to the section headers date dataset compared to the persisted version (if any) * * @internal */ export declare const selectIsSectionHeadersDateDataSetChanged: DashboardSelector; /** * Selects a boolean indication if he dashboard has any changes to the title compared to the persisted version (if any) * * @internal */ export declare const selectIsTitleChanged: DashboardSelector; /** * Selects a boolean indication if he dashboard has any changes to the layout compared to the persisted version (if any) * * Note: This uses selectBasicLayoutByTab which filters out custom/plugin widgets to avoid false positives * when comparing layouts, as plugin widgets are client-side extensions that should not trigger dirty state. * * @internal */ export declare const selectIsLayoutChanged: DashboardSelector; /** * Selects a boolean indication if he dashboard has any changes compared to the persisted version (if any) * * @internal */ export declare const selectIsDashboardDirty: DashboardSelector; /** * @internal */ export declare const selectDashboardWorkingDefinition: DashboardSelector>; //# sourceMappingURL=metaSelectors.d.ts.map