diff --git a/packages/calcite-components/.storybook/main.ts b/packages/calcite-components/.storybook/main.ts index 2344adab9eb..f349f699fa5 100644 --- a/packages/calcite-components/.storybook/main.ts +++ b/packages/calcite-components/.storybook/main.ts @@ -23,4 +23,42 @@ module.exports = { ], }; }, + managerHead: (head: string): string => { + if (process.env.STORYBOOK_SCREENSHOT_TEST_BUILD) { + return head; + } + + return ` + + + + + + + This storybook is on the current @next version and is meant for internal, testing purposes only. + + Please refer to the + + Calcite Components documentation site + + to browse and interact with components. + + + + + + + ${head} + `; + }, };