-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* global.d.ts and index.d.ts no longer necessary * Update to tsconfig "lib" to allow use of es2021 (replaceAll, etc.) * US-566715 : gbLoggedIn export replaced with new sdkIsLoggedIn method * Change required to work with newer auth.js (that supports upcoming authCode flow updates for better error handling) * Latest updates to branch for internal 8.23.12 pre-release testing * Fix update for dx-component-builder-sdk and add path to jest.config.js * Add test:functional script (for tests to be added next week) * Update to use latest 8.8 typedefs * Update packageversion and to expect SDK-8.23.0 ConstJS files * Update package.json to proper 8.23 packages * Updated to use latest tgz files * Update to use latest 23.1.10 tgzs * Update constellation-comp-config/tsconfig to enable es2021 constructs * Mods related to latest authManager tokenStorage updates (#380) Co-authored-by: serav <[email protected]> * Update tsconfig with typeRoots * Update to latest versions of r-s-c and dxcb tgzs * Point to updated tgzs for @pega/react-sdk-* * Update tsconfigs to work with new typedefs * update version and typedefs version * Update to use 20231012 version of react-sdk-components/overrides * Update to expect latest R-S-C tgzs * Update versions of @pega/react-sdk-* tgzs * Initial draft updated README * Update to 20231020 tgzs * Remove test:functional * Update to use latest published DXCB-SDK package * 20231101 updates to package.json * Update query test to match what's in react-sdk-components * Add tinymce and update tgz names * TinyMCE library package added (#394) * Update to use newest dx-component-builder-sdk for 23.1 * Update to use 20231106 version of tgzs * 23.1.10-Alpha updates to Storybook * Add _internal-test-functional to package.json * Use published versions of @pega/react-sdk-* * More updates to README * Update to latest published dx-component-builder-sdk version * Update KeyReleaseUpdates.md * Update README.md * Fix MediaCo tests failure * Update expected version for dx-component-builder-sdk * new package lock * Update package-lock * Revert package-lock to avoid problems (needs more testing) --------- Co-authored-by: serav <[email protected]> Co-authored-by: Vinod Seraphin <[email protected]> Co-authored-by: tumms2021389 <[email protected]> Co-authored-by: Niall Riddell <[email protected]> Co-authored-by: Vishal <[email protected]> Co-authored-by: gagnp <[email protected]>
- Loading branch information
1 parent
924a7e2
commit 4924858
Showing
19 changed files
with
726 additions
and
582 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"include": [ | ||
"../src/components/custom-constellation/**/**/*.ts", | ||
"../src/components/custom-constellation/**/**/*.tsx", | ||
"../src/components/custom-constellation/**/**/*.js", | ||
"../src/components/custom-constellation/**/**/*.jsx", | ||
"../src/components/override-sdk/**/**/*.ts", | ||
"../src/components/override-sdk/**/**/*.tsx", | ||
"../src/components/override-sdk/**/**/*.js", | ||
"../src/components/override-sdk/**/**/*.jsx"], | ||
"exclude": [ | ||
"node_modules", | ||
"../src/**/*.stories.ts", | ||
"../src/**/*.stories.tsx", | ||
"../src/**/*.stories.js", | ||
"../src/**/*.stories.jsx" | ||
], | ||
"compilerOptions": { | ||
"noEmit": false, | ||
"composite": true, | ||
"outDir": "../lib", | ||
"rootDir": "../src", | ||
"allowSyntheticDefaultImports": true, | ||
// "skipLibCheck" must be true in order to not see errors in the @pega/pcore-pconnect-typedefs files themselves | ||
"skipLibCheck": true, | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"compilerOptions": { | ||
"outDir": "./dist/", | ||
"experimentalDecorators": true, | ||
"strict": true, | ||
"sourceMap": true, | ||
"module": "es2020", | ||
"target": "es2020", | ||
"lib": [ "es2021", "dom" ], | ||
"moduleResolution": "node", | ||
"jsx": "react", | ||
"allowJs": true, | ||
"noImplicitAny": false, | ||
"allowSyntheticDefaultImports": true, | ||
"esModuleInterop": true, | ||
|
||
// Need to specify typeRoots to find the types and types to constrain | ||
// where to look in @pega (to only get pcore-pconnect-typedefs) | ||
// NOTE: need to point to relative path to node_modules (../) | ||
"typeRoots": ["../node_modules/@types", "../node_modules/@pega"], | ||
"types": [ "jest", "@testing-library/jest-dom", "pcore-pconnect-typedefs" ], | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.