Skip to content

Commit f7d7ddc

Browse files
authored
Merge branch 'master' into workflow-node20
2 parents d52a577 + 47ef2a3 commit f7d7ddc

File tree

336 files changed

+16891
-16369
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

336 files changed

+16891
-16369
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,12 @@ node_modules
1313
tests/coverage
1414
tests/playwright-report
1515
test-reports
16+
monocart-report
1617

1718
**/tsconfig.*.tsbuildinfo
19+
20+
// ignore Security.md and License files in packages
21+
packages/react-sdk-components/LICENSE
22+
packages/react-sdk-components/SECURITY.md
23+
packages/react-sdk-overrides/LICENSE
24+
packages/react-sdk-overrides/SECURITY.md

.prettierignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
**/.git
2+
**/.github
3+
**/.vscode
4+
**/.svn
5+
**/.hg
6+
**/*.md
7+
**/assets

.prettierrc.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// Prettier config options: https://prettier.io/docs/en/options.html
2+
// Shared front-end config: https://git.pega.io/projects/FE/repos/configs/browse/packages/prettier-config/index.json
3+
4+
const pegaPrettierConfig = require('@pega/prettier-config');
5+
6+
module.exports = {
7+
...pegaPrettierConfig,
8+
printWidth: 150
9+
};

.vscode/settings.json

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,32 +10,30 @@
1010

1111
"editor.insertSpaces": true,
1212
"editor.tabSize": 2,
13-
"editor.formatOnSave": false,
13+
"editor.formatOnSave": true,
1414
"editor.defaultFormatter": "esbenp.prettier-vscode",
15-
"editor.codeActionsOnSave": [
16-
/*"source.fixAll.eslint"*/
17-
],
15+
"editor.codeActionsOnSave": ["source.fixAll.eslint"],
1816

1917
"[javascript]": {
20-
"editor.formatOnSave": false
18+
"editor.formatOnSave": true
2119
},
2220
"[javascriptreact]": {
23-
"editor.formatOnSave": false
21+
"editor.formatOnSave": true
2422
},
2523
"[typescript]": {
26-
"editor.formatOnSave": false
24+
"editor.formatOnSave": true
2725
},
2826
"[typescriptreact]": {
29-
"editor.formatOnSave": false
27+
"editor.formatOnSave": true
3028
},
3129
"[json]": {
32-
"editor.formatOnSave": false
30+
"editor.formatOnSave": true
3331
},
3432
"[jsonc]": {
35-
"editor.formatOnSave": false
33+
"editor.formatOnSave": true
3634
},
3735
"[html]": {
38-
"editor.formatOnSave": false
36+
"editor.formatOnSave": true
3937
},
4038
"[markdown]": {
4139
"editor.formatOnSave": false
@@ -50,9 +48,6 @@
5048

5149
"eslint.enable": true,
5250
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
53-
54-
"jest.pathToJest": "npm test --",
55-
56-
"json.schemas": [
57-
]
51+
"eslint.workingDirectories": [{ "pattern": "." }],
52+
"prettier.configPath": ".prettierrc.js"
5853
}

SECURITY.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Reporting Security Issues
2+
3+
Pegasystems takes security seriously. We appreciate your efforts to responsibly disclose your findings, and will make every effort to acknowledge your contributions.
4+
5+
To report a security issue, [email us](mailto:[email protected];[email protected]) and include the word "SECURITY" in the subject line.
6+
7+
The Pega team will send a response indicating the next steps in handling your report. We may ask for additional information or guidance.
8+
9+
## Learning More About Security
10+
To learn more about securing a Pega application or our security capabilities, please see the [security article](https://community.pega.com/knowledgebase/capabilities/security) on Pega Community and the [Pega Trust Center](https://www.pega.com/products/cloud/pega-trust-center).

assets/css/sdkStyles.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ body {
66
margin: 0px;
77
}
88

9+
*, ::before, ::after {
10+
box-sizing: border-box;
11+
margin: 0px;
12+
padding: 0px;
13+
}
14+
915
#app-nopega {
1016
margin: 8px;
1117
}

assets/icons/document-xls.svg

Lines changed: 4 additions & 0 deletions
Loading

assets/icons/document-xls.svg.br

830 Bytes
Binary file not shown.

assets/icons/document-xls.svg.gz

915 Bytes
Binary file not shown.

assets/img/cablechat.jpg

43.6 KB
Loading

0 commit comments

Comments
 (0)