UNPKG

@mikezimm/fps-library-v2

Version:

Library of reusable typescript/javascript functions, interfaces and constants

30 lines (28 loc) 1.2 kB
/** * CodeAnalizerComment: Updated 1 imports on 2024-09-22 14:49:52 * Update:: import { IWebpartBannerProps } to '@mikezimm/fps-core-v7/lib/banner/mainReact/IWebpartBannerProps;' */ /** * CodeAnalizerComment: Updated 1 imports on 2024-09-21 23:07:24 * Update:: import { IFPSFilterButtonWPProps } to '@mikezimm/fps-core-v7/lib/components/atoms/FilterButtons/interfaces/IFPSFilterButtonWPProps;' */ import { getHelpListPerformance } from "./listview/ListPerformance"; import { getHelpStringFunctions } from "./listview/StringFunctions"; import { getHelpStats } from "./listview/Stats"; import { getHelpCommands } from "./listview/Commands"; import { getHelpUsers } from "./listview/Users"; import { getHelpRefiner } from "./listview/Refiners"; import { getHelpViews } from "./listview/Views"; export function DrilldownHelp(bannerProps, buttons) { const pages = [ getHelpListPerformance(), getHelpRefiner(buttons), getHelpStringFunctions(), getHelpViews(bannerProps), getHelpStats(bannerProps), getHelpCommands(bannerProps), getHelpUsers(), ]; return pages; } //# sourceMappingURL=Drilldown.js.map