Constellation's flexible architecture empowers advanced users (professional front-end developers with ReactJS and web technology expertise) to extend the platform. You can achieve this by programmatically combining core Constellation presentational components and leveraging the Constellation DX API to build custom components, known as "Constellation DX components."
This gallery provides a collection of ready-to-use and customizable component. Explore them directly or delve into the source code for deeper understanding. Use this resource to gain inspiration, best practices, and a solid foundation for implementing custom components.
These components have been tested on Pega '23.1, '24.1, '24.2 and '25.1 and might not run older other versions of the Pega Platform
- Version 1.x and branch release/1.x.x should be used for Pega '23
- Version 2.x and branch release/2.0 should be used for Pega '24.1
- Version 3.x and branch release/3.0 should be used for Pega '24.2
- Version 4.x and branch master should be used for Pega '25.1
Older versions of the Pega Platform have not been tested and are not supported.
A complete demonstration of these Constellation DX components is available at pegasystems.github.io/constellation-ui-gallery
Pre-build versions of these components is available as a RAP file that you can import into your Pega application - see github.com/pegasystems/constellation-ui-gallery/releases
To build and compile the application - use the following commands:
Install npm from nodejs.org
You should have the following versions installed: System node version 24.x and npm version 10.x or higher if you are using master - for release branch, use node 20.0
If you already have VS Code and Docker installed, you can click here to get started. Clicking these links will cause VS Code to automatically install the Dev Containers extension if needed, clone the source code into a container volume, and spin up a dev container for use.
For more details on building Constellation DX components, see docs.pega.com
Note: Make sure to use git clone [email protected]:pegasystems/constellation-ui-gallery.git to download the source code of this repository instead of using the download option. If you download the code, you will not be able to publish the components and you will see the error 'Git needs to be installed' even if you have the git executable installed. This error is generated because you are missing the .git folder. If you face this issue, you can type git init to create the missing folder.
npm installnpm run startMake sure to install the recommended VS Code extensions. Before checking code, make sure that no error are reported:
npm run lintTo fix some of the issues:
npm run fixFor unit test results, you can run:
npm run testFor unit test coverage, you can run:
npm run coverageThe coverage report index.html will be in the 'coverage' folder
End to end testing is done by loading each stories using playwright as well as running some accessibility testing on these stories. The results of accessibility is similar to the panel in storybook.
To execute the end to end test locally, you need to first build the storybook as static:
npm run build-storybookInstall Playwright (only needed once)
npx playwright installServe the site though an http server on port 6006
serve -port 6006 storybook-staticIn a separate terminal, run the suite of tests
npm run test-storybooknpm run buildAllComponentsInstall the 'keys' folder provided by the Constellation DX Component builder package and edit the tasks.config.json file with your rulesetName, rulesetVersion, server URL, clientID, user and password
npm run authenticateOnce the authentication is completed - you can publish by running
npm run publishAllIf you are having issues deploying the changes, review the documentation docs.pega.com constellation DX component CLI references