diff --git a/.github/workflows/deployment-monitor.yml b/.github/workflows/deployment-monitor.yml deleted file mode 100644 index ee72fce62..000000000 --- a/.github/workflows/deployment-monitor.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Deployment -on: - push: - branches: - - release - -jobs: - deploy: - name: Wait for Deploy - runs-on: ubuntu-latest - steps: - # https://github.com/marketplace/actions/render-github-action - - name: Wait for Render Deployment - uses: bounceapp/render-action@0.6.0 - with: - render-token: ${{ secrets.RENDER_TOKEN }} - github-token: ${{ secrets.GITHUB_TOKEN }} - service-id: srv-cm55msocmk4c73cnddi0 - # retries: 20 - # wait: 16000 - # sleep: 30000 diff --git a/apps/docs/docs/getting-started/overview.mdx b/apps/docs/docs/getting-started/overview.mdx index 1936feafa..42386b848 100644 --- a/apps/docs/docs/getting-started/overview.mdx +++ b/apps/docs/docs/getting-started/overview.mdx @@ -40,7 +40,7 @@ You will be asked to choose an org type which is used to determine the which Sal ### Jetstream IP Addresses -If you need to whitelist IP addresses for your org, Jetstream will use one of the following three ip addresses: +If you need to allow IP addresses for your org, Jetstream will use one of the following three ip addresses: - `3.134.238.10` - `3.129.111.220` diff --git a/apps/landing/pages/oauth-link/index.tsx b/apps/landing/pages/oauth-link/index.tsx index 7a80b0db4..34301bf86 100644 --- a/apps/landing/pages/oauth-link/index.tsx +++ b/apps/landing/pages/oauth-link/index.tsx @@ -46,7 +46,7 @@ const STATUS_MAP: StatusMap = { /** * QUERY PARAMS: * type=auth|salesforce - * clientUrl=whitelisted domain to send back to (e.x. new URL(ENV.JETSTREAM_CLIENT_URL).origin) + * clientUrl=allowed domain to send back to (e.x. new URL(ENV.JETSTREAM_CLIENT_URL).origin) * * If Error: * - error=any truthy string diff --git a/libs/connected/connected-ui/src/lib/utils.ts b/libs/connected/connected-ui/src/lib/utils.ts index f9f49f3fe..922ce5cb4 100644 --- a/libs/connected/connected-ui/src/lib/utils.ts +++ b/libs/connected/connected-ui/src/lib/utils.ts @@ -90,7 +90,7 @@ export const METADATA_LABEL_MAP = { CompactLayout: 'Compact Layouts', ConnectedApp: 'Connected Apps', ContentAsset: 'Content Assets', - CorsWhitelistOrigin: 'Cors Whitelist Origins', + CorsWhitelistOrigin: 'Cors Allowed Origins', CspTrustedSite: 'Csp Trusted Sites', CustomApplication: 'Custom Applications', CustomApplicationComponent: 'Custom Application Components', @@ -212,7 +212,7 @@ export const METADATA_LABEL_MAP = { RecommendationStrategy: 'Recommendation Strategies', RecordActionDeployment: 'Record Action Deployments', RecordType: 'Record Types', - RedirectWhitelistUrl: 'Redirect Whitelist Url', + RedirectWhitelistUrl: 'Redirect Allowed Url', RemoteSiteSetting: 'Remote Site Settings', Report: 'Reports', ReportFolder: 'Report Folders', diff --git a/libs/icon-factory/src/lib/icons/action/AddContact.tsx b/libs/icon-factory/src/lib/icons/action/AddContact.tsx index 1ff635f0c..c7c5b345f 100644 --- a/libs/icon-factory/src/lib/icons/action/AddContact.tsx +++ b/libs/icon-factory/src/lib/icons/action/AddContact.tsx @@ -1,11 +1,8 @@ import * as React from 'react'; function SvgAddContact(props: React.SVGProps) { return ( -
mm/dd/yyyy
= ({ const { formId, ariaDescribedbyText, labelHelpId, helpTextId, errorMessageId } = useFormIds(idPrefix); return ( -
+
{label && ( diff --git a/package.json b/package.json index c29b8bc4e..55575950c 100644 --- a/package.json +++ b/package.json @@ -65,7 +65,7 @@ "db:generate": "prisma generate", "db:migrate": "npx --yes prisma migrate deploy", "db:seed": "chmod +x prisma/seed.sh && npx --yes prisma db seed", - "icons:build": "npm-run-all icons:build:*", + "icons:build": "npm-run-all icons:build:* && npx prettier --loglevel error --write \"libs/icon-factory/src/lib/icons/**/*.{tsx}\"", "icons:build:action": "npx @svgr/cli@5.5.0 --config-file .svgo-config.json -d ./libs/icon-factory/src/lib/icons/action ./node_modules/@salesforce-ux/design-system/assets/icons/action", "icons:build:custom": "npx @svgr/cli@5.5.0 --config-file .svgo-config.json -d ./libs/icon-factory/src/lib/icons/custom ./node_modules/@salesforce-ux/design-system/assets/icons/custom", "icons:build:doctype": "npx @svgr/cli@5.5.0 --config-file .svgo-config.json -d ./libs/icon-factory/src/lib/icons/doctype ./node_modules/@salesforce-ux/design-system/assets/icons/doctype", @@ -115,11 +115,11 @@ "@nx/web": "19.6.5", "@nx/webpack": "19.6.5", "@nx/workspace": "19.6.5", - "@playwright/test": "^1.43.1", + "@playwright/test": "^1.48.1", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.7", "@release-it/bumper": "^6.0.1", "@release-it/conventional-changelog": "^5.0.0", - "@salesforce-ux/design-system": "^2.23.2", + "@salesforce-ux/design-system": "^2.25.1", "@storybook/addon-essentials": "8.2.9", "@storybook/addon-knobs": "^7.0.2", "@storybook/core-server": "8.2.9", diff --git a/yarn.lock b/yarn.lock index 136c2ede3..da01e4815 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6907,12 +6907,12 @@ tiny-glob "^0.2.9" tslib "^2.4.0" -"@playwright/test@^1.43.1": - version "1.43.1" - resolved "https://registry.yarnpkg.com/@playwright/test/-/test-1.43.1.tgz#16728a59eb8ce0f60472f98d8886d6cab0fa3e42" - integrity sha512-HgtQzFgNEEo4TE22K/X7sYTYNqEMMTZmFS8kTq6m8hXj+m1D8TgwgIbumHddJa9h4yl4GkKb8/bgAl2+g7eDgA== +"@playwright/test@^1.48.1": + version "1.48.1" + resolved "https://registry.yarnpkg.com/@playwright/test/-/test-1.48.1.tgz#343e710fcf2e559529e3ec8d7782e09f325b9396" + integrity sha512-s9RtWoxkOLmRJdw3oFvhFbs9OJS0BzrLUc8Hf6l2UdCNd1rqeEyD4BhCJkvzeEoD1FsK4mirsWwGerhVmYKtZg== dependencies: - playwright "1.43.1" + playwright "1.48.1" "@pmmmwh/react-refresh-webpack-plugin@^0.5.7": version "0.5.15" @@ -7358,10 +7358,10 @@ argparse "~1.0.9" string-argv "~0.3.1" -"@salesforce-ux/design-system@^2.23.2": - version "2.23.2" - resolved "https://registry.yarnpkg.com/@salesforce-ux/design-system/-/design-system-2.23.2.tgz#22634fa3b78fc592a5fa2ae9ac773354e0e9fbe1" - integrity sha512-Mw6xvAC7K+66dBvqY9Uk7euUrwIEaT1J7gLfKC0VLajepAWZKVfOI+Oovc39RivO5K2zYDFD8LYNAO3wfzD1AA== +"@salesforce-ux/design-system@^2.25.1": + version "2.25.1" + resolved "https://registry.yarnpkg.com/@salesforce-ux/design-system/-/design-system-2.25.1.tgz#d3a0ff4d921e5797cec45acb1046a1693c300521" + integrity sha512-/JYek+By+FgX6vq7K1I7K1yIXxtMvsCcxa1lkxgYxCMXn0ax3EEgMQriIZCOR6zIY3wsiaBu88T4pXRzn6Eolw== "@sideway/address@^4.1.3": version "4.1.4" @@ -20183,17 +20183,17 @@ pkg-types@^1.0.3: mlly "^1.2.0" pathe "^1.1.0" -playwright-core@1.43.1: - version "1.43.1" - resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.43.1.tgz#0eafef9994c69c02a1a3825a4343e56c99c03b02" - integrity sha512-EI36Mto2Vrx6VF7rm708qSnesVQKbxEWvPrfA1IPY6HgczBplDx7ENtx+K2n4kJ41sLLkuGfmb0ZLSSXlDhqPg== +playwright-core@1.48.1: + version "1.48.1" + resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.48.1.tgz#5fe28fb9a9326dae88d4608c35e819163cceeb23" + integrity sha512-Yw/t4VAFX/bBr1OzwCuOMZkY1Cnb4z/doAFSwf4huqAGWmf9eMNjmK7NiOljCdLmxeRYcGPPmcDgU0zOlzP0YA== -playwright@1.43.1: - version "1.43.1" - resolved "https://registry.yarnpkg.com/playwright/-/playwright-1.43.1.tgz#8ad08984ac66c9ef3d0db035be54dd7ec9f1c7d9" - integrity sha512-V7SoH0ai2kNt1Md9E3Gwas5B9m8KR2GVvwZnAI6Pg0m3sh7UvgiYhRrhsziCmqMJNouPckiOhk8T+9bSAK0VIA== +playwright@1.48.1: + version "1.48.1" + resolved "https://registry.yarnpkg.com/playwright/-/playwright-1.48.1.tgz#2a920cfbec4572c84789e757d8b044baaed49435" + integrity sha512-j8CiHW/V6HxmbntOfyB4+T/uk08tBy6ph0MpBXwuoofkSnLmlfdYNNkFTYD6ofzzlSqLA1fwH4vwvVFvJgLN0w== dependencies: - playwright-core "1.43.1" + playwright-core "1.48.1" optionalDependencies: fsevents "2.3.2"