Corrects the naming of global variables related to Storybook testing and actions by removing extra underscores. This ensures consistent and correct global variable declarations across core and manager typings files.
This commit updates the package.json and package generation script to:
- Add internal package exports alongside public exports
- Ensure backward compatibility for existing references
- Prepare for potential API changes in future Storybook versions
The changes include adding `/internal/` prefixed exports for various modules while maintaining existing public exports.
This commit adds new global variable declarations for Storybook testing and actions in the typings files, and updates the globals runtime to use globalThis instead of global
This commit removes deprecated action-related module exports from the globals map, including:
- Removing 'storybook/actions/preview', 'storybook/actions/manager', and 'storybook/actions/decorator' exports
- Reorganizing the order of module exports
- Adding a deprecated TODO comment for 'storybook/internal/preview-api'
This commit updates the globals and exports for Storybook modules, including:
- Removing deprecated action-related exports
- Adding deprecated internal module mappings
- Reorganizing the order of module exports and globals
- Preparing for future module consolidation and cleanup
This commit adjusts import paths for actions and preview modules across multiple files, including:
- Updating the import path for definePreview in preview and test modules
- Modifying the import path for action annotations in core-annotations
- Removing some unused exports from the manager globals
- Adjusting the mapping of 'storybook/actions' in the prep script
This commit updates import paths for manager-api and theming modules across multiple manager components, replacing 'storybook/internal/manager-api' and 'storybook/internal/theming' with 'storybook/manager-api' and 'storybook/theming' respectively.